When applying substitution to a definite integral $\int_a^b f(g(x))g'(x)\,dx$, you have two choices:
Method 2 is typically more efficient because you never need to back-substitute—you evaluate directly in terms of $u$.
| Property | Value |
|---|---|
| Section | Stewart 4.5 |
| Course | MATH162 |
| Difficulty | Intermediate |
| Time | ~15 minutes |
Theorem: If $g'$ is continuous on $[a, b]$ and $f$ is continuous on the range of $u = g(x)$, then
$$\boxed{\int_a^b f(g(x))g'(x)\,dx = \int_{g(a)}^{g(b)} f(u)\,du}$$
When $u = g(x)$:
The limits transform along with the integrand. You're essentially moving from the "$x$-world" to the "$u$-world" completely.
Method 1: Evaluate Indefinite First
∫₀⁴ √(2x+1) dx → Find ∫√(2x+1) dx = ⅓(2x+1)^(3/2) + C
→ Evaluate: [⅓(2x+1)^(3/2)]₀⁴
→ = ⅓(9)^(3/2) - ⅓(1)^(3/2) = 9 - ⅓ = 26/3
Method 2: Change Limits (Preferred)
∫₀⁴ √(2x+1) dx, let u = 2x+1, du = 2dx
When x=0: u=1 When x=4: u=9
→ ∫₁⁹ √u · ½ du = ½ · ⅔u^(3/2)|₁⁹
→ = ⅓(27 - 1) = 26/3 ✓ No back-substitution needed!
Step 1: Choose $u = g(x)$ and find $du$.
Step 2: Change the limits:
Step 3: Substitute everything (integrand AND limits).
Step 4: Evaluate the integral in $u$. Do NOT back-substitute.
After changing to $u$, the integral is entirely in the "$u$-world":
$$\int_1^9 \sqrt{u}\,du$$
The limits 1 and 9 are $u$-values, not $x$-values. You evaluate directly: $$\left[\frac{2}{3}u^{3/2}\right]_1^9 = \frac{2}{3}(27) - \frac{2}{3}(1) = \frac{52}{3}$$
Do not substitute $u = 2x + 1$ back in at this stage.
Evaluate $\int_0^4 \sqrt{2x + 1}\,dx$.
Step 1: Let $u = 2x + 1$, so $du = 2\,dx$, meaning $dx = \frac{1}{2}du$.
Step 2: Change limits:
Step 3-4: Substitute and evaluate: $$\int_0^4 \sqrt{2x + 1}\,dx = \int_1^9 \sqrt{u} \cdot \frac{1}{2}\,du = \frac{1}{2}\int_1^9 u^{1/2}\,du$$
$$= \frac{1}{2} \cdot \frac{2}{3}\left[u^{3/2}\right]_1^9 = \frac{1}{3}(9^{3/2} - 1^{3/2}) = \frac{1}{3}(27 - 1) = \frac{26}{3}$$
Evaluate $\int_1^2 \frac{dx}{(3 - 5x)^2}$.
Step 1: Let $u = 3 - 5x$, so $du = -5\,dx$, meaning $dx = -\frac{1}{5}du$.
Step 2: Change limits:
Step 3-4: Substitute and evaluate: $$\int_1^2 \frac{dx}{(3 - 5x)^2} = \int_{-2}^{-7} \frac{1}{u^2} \cdot \left(-\frac{1}{5}\right)\,du = -\frac{1}{5}\int_{-2}^{-7} u^{-2}\,du$$
$$= -\frac{1}{5}\left[-u^{-1}\right]_{-2}^{-7} = -\frac{1}{5}\left(-\frac{1}{-7} - \left(-\frac{1}{-2}\right)\right)$$
$$= -\frac{1}{5}\left(\frac{1}{7} - \frac{1}{2}\right) = -\frac{1}{5} \cdot \left(-\frac{5}{14}\right) = \frac{1}{14}$$
Note: The limits went from $-2$ to $-7$ (decreasing), which is fine! The negative from the $du$ adjustment corrects the direction.
Evaluate $\int_0^{\pi/2} \sin^3 x \cos x\,dx$.
Using Method 2:
Let $u = \sin x$, so $du = \cos x\,dx$.
Change limits:
$$\int_0^{\pi/2} \sin^3 x \cos x\,dx = \int_0^1 u^3\,du = \left[\frac{u^4}{4}\right]_0^1 = \frac{1}{4}$$
Clean and simple! No back-substitution, no messy expressions.
Evaluate each integral by changing the limits:
Evaluate $\displaystyle\int_0^1 x^2(1 + 2x^3)^5\,dx$.
Evaluate $\displaystyle\int_0^{\pi/4} \tan^3\theta \sec^2\theta\,d\theta$.
Evaluate $\displaystyle\int_1^4 \frac{dx}{\sqrt{x}(1 + \sqrt{x})^2}$.
Evaluate $\displaystyle\int_0^2 x\sqrt{4 - x^2}\,dx$ using:
Which method was easier?
When evaluating $\int_0^1 2x e^{x^2}\,dx$ with $u = x^2$, a student writes:
$$\int_0^1 2x e^{x^2}\,dx = \int_0^1 e^u\,du$$
What is wrong with this setup?
The Substitution Rule for Definite Integrals says: $$\int_a^b f(g(x))g'(x)\,dx = \int_{g(a)}^{g(b)} f(u)\,du$$
Use the Fundamental Theorem of Calculus to prove this identity.
Hint: If $F' = f$, what is $\frac{d}{dx}[F(g(x))]$?
The GPS Coordinate Change Analogy:
Imagine driving from City A to City B on a road. You can measure your position in miles from A, or in kilometers. If you switch to kilometers mid-trip, you need to convert both your start AND end positions.
Similarly, when switching from "$x$-coordinates" to "$u$-coordinates," you must convert both limits of integration. The integral represents the same "journey" — just measured in different units.
Looking back:
Looking ahead:
| Previous | Up | Next |
|---|---|---|
| u-Substitution (Indefinite) | Skills Index | Symmetric Function Integrals |
Last updated: 2026-01-22