Navigation

Back to Blog
Getting Started

Setting the Wrong Boundaries: Why Definite Integral Substitution Goes Wrong

7 min read
A kitchen table at dusk in a Vancouver apartment, its surface scattered with open and closed math notebooks, some with worn covers curling up at the corners and loose pages marked by the imprints of heavy erasing. Two printed homework sheets, dog-eared and partially overlapped, show unreadable lines and boxed answers, shielded by the spread fingers of a student's hand pressing down beside a calculator. The only student present is seen from behind, leaning forward with elbows braced and head out of frame, in the glow from an overhanging pendant lamp that spills warm light onto the paper chaos, while the edges of the room slip into shadow. Shot from the far end of the table at a low angle with a 50mm lens wide open, rendering the text on all pages and screens a blur of grayscale lines too soft to resolve.

Keeping the x-bounds after substituting u into a definite integral causes you to evaluate the antiderivative at the wrong numbers—those bounds are no longer tied to your new variable. If you write u = x^2 + 1 and keep 1 to 2 as limits in terms of x, your answer will not match the true area. Suppose you substitute u = x^2 + 1 from x = 1 to x = 2: evaluating at u = 1 and u = 2 is a misstep that breaks the connection to the graph you started with.

Wrong: Working Through Definite Integral Substitution Without Changing Bounds

Suppose you're solving:

x=1x=22xx2+1dx\int_{x=1}^{x=2} 2x\sqrt{x^2 + 1}\,dx

You recognize this as an ideal candidate for u-substitution. Here's what a strong student might write, aiming to be careful:

Let u=x2+1u = x^2 + 1 so that du=2xdxdu = 2x\,dx. Substitute all parts:

x=1x=22xx2+1dx=x=1x=2udu\int_{x=1}^{x=2} 2x\sqrt{x^2 + 1}\,dx = \int_{x=1}^{x=2} \sqrt{u}\,du

Now integrate:

=x=1x=2u1/2du=23u3/2u=1u=2=23[(2)3/2(1)3/2]= \int_{x=1}^{x=2} u^{1/2} du = \left. \frac{2}{3} u^{3/2} \right|_{u=1}^{u=2} = \frac{2}{3}[(2)^{3/2} - (1)^{3/2}]

Calculate numerically:

  • 23/2=222.8282^{3/2} = 2 \cdot \sqrt{2} \approx 2.828
  • 13/2=11^{3/2} = 1

So:

23(2.8281)23(1.828)1.218\frac{2}{3} (2.828 - 1) \approx \frac{2}{3} (1.828) \approx 1.218

But here's the problem: those bounds (u=1 and u=2) do not match the x bounds. The definite integral result is now numerically wrong.

The Line Where It Breaks: The Bounds Are Now for the Wrong Variable

The substitution step was correct. The error appears in this crucial line:

x=1x=22xx2+1dx=x=1x=2udu\int_{x=1}^{x=2} 2x\sqrt{x^2 + 1}\,dx = \int_{x=1}^{x=2} \sqrt{u}\,du

If you use the same numbers (1 and 2) as limits for the u-integral, they no longer correspond to the original interval on the x-axis. The limits in a definite integral must always match the variable of integration, as required by the Fundamental Theorem of Calculus: abf(x)dx\int_{a}^{b} f(x) dx is the net area as x goes from a to b. When you change variables, the endpoints must be in the new variable's units.

It's tempting to keep the original numbers because the substitution replaces everything else so cleanly. This is why the mistake feels so easy to make: nothing looks off until you check the result against the graph or the answer key.

Right: Changing the Limits to Match the New Variable

Instead, after letting u=x2+1u = x^2 + 1, you must change the bounds:

  • When x=1x = 1, u=12+1=2u = 1^2 + 1 = 2
  • When x=2x = 2, u=22+1=5u = 2^2 + 1 = 5

So:

x=1x=22xx2+1dx=u=2u=5udu\int_{x=1}^{x=2} 2x\sqrt{x^2 + 1}\,dx = \int_{u=2}^{u=5} \sqrt{u}\,du

Now integrate:

=23u3/2u=2u=5=23[(5)3/2(2)3/2]= \left. \frac{2}{3} u^{3/2} \right|_{u=2}^{u=5} = \frac{2}{3}[(5)^{3/2} - (2)^{3/2}]

Calculate:

  • 53/2=5511.1805^{3/2} = 5 \cdot \sqrt{5} \approx 11.180
  • 23/2=222.8282^{3/2} = 2 \cdot \sqrt{2} \approx 2.828

So:

23(11.1802.828)=23(8.352)5.568\frac{2}{3}(11.180 - 2.828) = \frac{2}{3}(8.352) \approx 5.568

This is the true value of the definite integral. The earlier answer (about 1.218) is nowhere close. The limits matter.

The u-bounds must come from plugging each x-bound into your substitution.

What Rule Justifies Changing the Bounds?

This step follows directly from the Fundamental Theorem of Calculus: the definite integral abf(x)dx\int_{a}^{b} f(x) dx computes the net area under the curve from x = a to x = b. When you substitute u = g(x), du = g'(x) dx, the interval you integrate over in u must be u = g(a) to u = g(b) because your new variable measures something different along the axis.

You can only keep the original x-limits if, after integrating in u, you back-substitute for x before evaluating. Mixing u with x-limits (or vice versa) is an error.

Why This Error Is So Tempting—But So Costly

If you have practiced indefinite integrals, you’re used to plugging x back in at the end. That trick works because you never use the bounds until after you’ve returned to x. But with definite integrals, when you swap to u, you’re literally swapping the tape measure. The two endpoints must stay consistent with your new variable.

This is not a mindless bookkeeping rule: the numbers themselves change meaning. A bound of 2 in x-space is a bound of 5 in u-space when u = x^2 + 1.

The invisible-bounds trap: It feels natural to just copy the limits down after substitution, but they mean something entirely different in the new variable. This is the main way definite integrals with substitution go off the rails.

The Exception: When Indefinite Integral and Definite Integral Answers Match by Accident

Suppose you have:

x=0x=13(x+1)2dx\int_{x=0}^{x=1} 3(x+1)^2 dx

Let u=x+1u = x + 1, so du=dxdu = dx. When x=0,u=1x = 0, u = 1; when x=1,u=2x = 1, u = 2.

Substitute:

x=0x=13(x+1)2dx=u=1u=23u2du\int_{x=0}^{x=1} 3(x+1)^2 dx = \int_{u=1}^{u=2} 3u^2 du

But look what happens if you accidentally keep the original x-bounds as u-bounds:

u=0u=13u2du\int_{u=0}^{u=1} 3u^2 du

Integrate:

  • Correct: u3u=1u=2=81=7\left. u^3 \right|_{u=1}^{u=2} = 8 - 1 = 7
  • Wrong: u3u=0u=1=10=1\left. u^3 \right|_{u=0}^{u=1} = 1 - 0 = 1

So the error is still visible. However, if your substitution were u = x, both bounds would match—so re-indexing blindly “works” but only in trivial cases. Except when your substitution function is the identity (u = x), this mistake burns you.

A Case With Negative Bounds: The Error Bites Harder

Try:

x=2x=1(x+2)dx\int_{x=-2}^{x=1} (x+2) dx

Let u=x+2u = x + 2, so when x = -2, u = 0; when x = 1, u = 3. The correct setup is:

u=0u=3udu=12u203=920=4.5\int_{u=0}^{u=3} u du = \left. \frac{1}{2}u^2 \right|_{0}^{3} = \frac{9}{2} - 0 = 4.5

If you forget and use u = -2 to u = 1:

u=2u=1udu=12u221=0.52=1.5\int_{u=-2}^{u=1} u du = \left. \frac{1}{2}u^2 \right|_{-2}^{1} = 0.5 - 2 = -1.5

Completely wrong. Check in the original x-coordinates:

x=2x=1(x+2)dx=x=2x=1xdx+x=2x=12dx=12x221+2x21=(0.52)+(2(4))=(1.5)+6=4.5\int_{x=-2}^{x=1} (x+2) dx = \int_{x=-2}^{x=1} x dx + \int_{x=-2}^{x=1} 2 dx = \left. \frac{1}{2} x^2 \right|_{-2}^{1} + \left. 2x \right|_{-2}^{1} = (0.5 - 2) + (2 - (-4)) = (-1.5) + 6 = 4.5

Only changing the bounds matches the true value.

One for Practice—Set Your Own Bounds

Evaluate:

x=0x=36x(x2+1)2dx\int_{x=0}^{x=3} 6x (x^2 + 1)^2 dx

Try:

  • Correct substitution: u = x^2 + 1
  • Change both limits and variable
  • Integrate and evaluate

Correct answer:

u=1u=103u2du=[u3]110=10001=999\int_{u=1}^{u=10} 3u^2 du = [u^3]_{1}^{10} = 1000 - 1 = 999

If you kept the x-limits (0 and 3) in u, you’d end up with [u3]03=270=27[u^3]_0^3 = 27 - 0 = 27, which is wildly off. Units and intervals matter.

If you find yourself hesitating on this step, you are not alone—this is the single easiest way to sabotage a correct substitution. Fast check: ask yourself if the bounds match the new variable. If not, recalculate before evaluating.

Lean on this check as long as you need it. If you want feedback on your process, Learn4Less tutors can spot these boundary mismatches faster than any calculator, but you do not need a tutor to master this step if you make it part of your mental checklist.

Summary

Keeping the x-bounds after substituting u into a definite integral causes you to evaluate the antiderivative at the wrong numbers—those bounds are no longer tied to your new variable.

Need Help With Your Math Course?

Our experienced tutors specialize in first-year university math. Get personalized support to boost your confidence and improve your grades.

Related Posts

Keep reading with closely related study tips and math learning guides.