~3 min read • Updated Mar 19, 2026
Introduction
Substitution is a fundamental technique in integration that transforms a complicated integral into a simpler one by changing the variable. It is essentially the reverse application of the chain rule in differentiation.
1. Basic Substitution (u‑substitution)
This method is used when the integrand contains a composite function. General rule:
If u = g(x), then:
du = g'(x) dx
∫ f(g(x)) g'(x) dx = ∫ f(u) du
Example
∫ 2x cos(x²) dx
Let u = x²
du = 2x dx
∫ cos(u) du = sin(u) + C = sin(x²) + C
2. Back‑Substitution
After integrating with respect to u, you must substitute back to express the final answer in terms of x. This step is essential for indefinite integrals.
3. Substitution for Radical Expressions
Trigonometric substitution is ideal for integrals involving square roots of quadratic expressions.
Standard Forms
- √(a² − x²) → x = a sin(θ)
- √(a² + x²) → x = a tan(θ)
- √(x² − a²) → x = a sec(θ)
Example
∫ √(a² − x²) dx
x = a sin(θ)
dx = a cos(θ) dθ
√(a² − x²) = a cos(θ)
→ ∫ a² cos²(θ) dθ
4. Hyperbolic Substitution
Hyperbolic functions can simplify integrals involving radicals, especially when trigonometric substitution becomes cumbersome.
Useful Forms
- x = a sinh(t) → √(x² + a²) = a cosh(t)
- x = a cosh(t) → √(x² − a²) = a sinh(t)
5. Substitution in Rational Functions
When the integrand is a rational function, substitution can simplify the numerator or denominator.
Example
∫ x / (x² + 1) dx
Let u = x² + 1
du = 2x dx
→ (1/2) ∫ du/u = (1/2) ln|u| + C
6. Substitution in Exponential Integrals
If the integrand contains e^(g(x)), choosing u = g(x) usually simplifies the integral.
Example
∫ x e^(x²) dx
u = x²
du = 2x dx
→ (1/2) ∫ e^u du = (1/2) e^u + C
7. Substitution in Trigonometric Integrals
For products of trigonometric functions, substitution helps reduce the integrand to a simpler form.
Common Choices
- u = sin(x)
- u = cos(x)
- u = tan(x)
Example
∫ sin(x) cos(x) dx
Let u = sin(x)
du = cos(x) dx
→ ∫ u du = u²/2 + C = sin²(x)/2 + C
8. Substitution in Definite Integrals
When performing substitution in definite integrals, the limits must also be transformed.
Example
∫01 x √(x² + 1) dx
u = x² + 1
du = 2x dx
New limits:
x = 0 → u = 1
x = 1 → u = 2
→ (1/2) ∫12 √u du
9. Key Tips for Choosing the Right Substitution
- If the integrand is composite → choose u as the inner function
- If there is a radical → use trigonometric or hyperbolic substitution
- If the integrand is a rational function → choose u as the denominator
- If the integrand contains e^(g(x)) or ln(g(x)) → choose u = g(x)
- If the integrand is a product of trig functions → choose u as one trig function
Conclusion
Substitution is one of the most versatile and powerful tools in integration. With practice and pattern recognition, choosing the right substitution becomes intuitive and transforms complex integrals into manageable ones.
Written & researched by Dr. Shahin Siami