CALCULUS 1 • INTEGRATION: ACCUMULATION & FTC

Integration by Substitution — Integrating Using Substitution

Learn how to reverse the chain rule and unlock a powerful technique for evaluating complex integrals.

Historical Context & Motivation

Once you learn the basic rules of integration — the power rule, the constant multiple rule, and the sum rule — you quickly discover that many real-world integrals don't fit those neat patterns. An expression like ∫2x · cos(x²) dx can't be solved by any single basic rule. Mathematicians needed a systematic method to unravel these composite functions and reduce them to simpler forms. The technique they developed — integration by substitution — is essentially the reverse of the chain rule for derivatives, and it stands as one of the most frequently used tools in all of calculus.

1660s
Newton & Leibniz Develop Calculus
Isaac Newton and Gottfried Wilhelm Leibniz independently formulated the fundamental ideas of calculus. Leibniz's notation (dx, dy) proved especially useful for expressing substitution-based techniques.
1680s
Leibniz Introduces the Differential
Leibniz formalized the concept of differentials — the infinitesimally small changes dx and du — which made the algebraic manipulation at the heart of substitution possible.
1700s
Euler Systematizes Integration Methods
Leonhard Euler and the Bernoulli family catalogued families of integrals, using substitution as a core strategy for transforming complicated integrands into recognizable forms.
1800s
Riemann Formalizes the Integral
Bernhard Riemann placed integration on a rigorous foundation with the Riemann sum definition, giving substitution a solid theoretical justification via the change-of-variable theorem.

The central question substitution answers is deceptively simple: How do you integrate a function that is built from an outer function composed with an inner function, multiplied by the derivative of that inner function? This is exactly what the chain rule produces when you differentiate, and substitution lets you "undo" that process.

Core Principles & Definitions

Integration by substitution rests on a few foundational ideas. Understanding each one will help you see why the technique works and when to apply it. At its heart, substitution transforms a difficult integral into a simpler one by introducing a new variable, typically called u, that replaces a complicated piece of the integrand.

1

The Chain Rule in Reverse

The chain rule says d/dx[F(g(x))] = F′(g(x)) · g′(x). Substitution reverses this: if you see f(g(x)) · g′(x), you can integrate it as F(g(x)) + C.
2

Choosing u

Select u to be the "inner function" — the part nested inside another function. A good choice of u is one whose derivative, du/dx, also appears (or nearly appears) in the integrand.
3

Computing du

Once you choose u = g(x), differentiate to find du = g′(x) dx. This expression lets you replace both the inner function and the dx term in one clean swap.
4

Rewrite, Integrate, Back-Substitute

Replace every x-expression with u and du, evaluate the simpler integral in terms of u, then substitute back to express your answer in terms of the original variable x.
KEY TAKEAWAY
Think of substitution like translating a sentence into a simpler language. Imagine you have a paragraph written in a mix of English and French. By temporarily converting the French words into English (letting u replace the complicated piece), you can read and understand the whole thing more easily. Once you've grasped the meaning (found the antiderivative), you translate back to the original language (replace u with g(x)).

Visual Explanation

The following diagram illustrates the substitution workflow. Starting from a complex integral in terms of x, you choose u, compute du, rewrite everything in terms of u, integrate, and finally substitute back.

The five-step substitution workflow: identify the composite pattern, choose u, rewrite in terms of u, integrate, and back-substitute to return to the original variable.

Notice how the diagram shows a one-way pipeline. Each step feeds into the next, and the process always ends with back-substitution so your final answer is in terms of the original variable x. The example along the bottom traces a concrete integral through every stage, making the abstract steps tangible.

Mathematical Framework

The formal statement of integration by substitution comes directly from the chain rule. If F is an antiderivative of f (meaning F′ = f), and g is a differentiable function, then the chain rule gives us d/dx[F(g(x))] = f(g(x)) · g′(x). Reading this equation "backwards" produces the substitution formula for indefinite integrals.

SUBSTITUTION RULE (INDEFINITE)
∫ f(g(x)) · g′(x) dx = ∫ f(u) du = F(u) + C = F(g(x)) + C
where u = g(x) is the inner function, du = g′(x) dx is its differential, and F is any antiderivative of f.

For definite integrals, you have two options. You can either back-substitute to x and use the original limits, or — more efficiently — you can change the limits of integration when you substitute. If the original integral runs from x = a to x = b, then after setting u = g(x), the new limits become u = g(a) to u = g(b).

SUBSTITUTION RULE (DEFINITE)
∫ₐᵇ f(g(x)) · g′(x) dx = ∫_{g(a)}^{g(b)} f(u) du
The limits change from x-values to u-values: lower limit becomes g(a) and upper limit becomes g(b). With changed limits, no back-substitution is needed.

A practical detail that trips up many students: sometimes the derivative g′(x) doesn't appear exactly in the integrand, but a constant multiple of it does. For instance, you might see 6x² instead of 3x². In that case you can factor out the constant and adjust accordingly, because constants slide freely in and out of integrals.

CONSTANT ADJUSTMENT
∫ f(g(x)) · k · g′(x) dx = k · ∫ f(u) du
where k is any nonzero constant. You may also multiply and divide by a constant to create the exact du you need.

Common Substitution Patterns

While the technique is always the same — pick u, find du, rewrite, integrate, back-substitute — certain patterns show up so frequently that recognizing them on sight will save you time. The diagram below groups the most common substitution families, and the table that follows provides specific examples.

Five major substitution pattern families. In each box, the integral form, the substitution choice, and the result are shown. The recognition tip at the bottom is the single most important guideline for choosing u.
Common substitution examples with their u-choices, differentials, and results
IntegralChoose uduResult
∫ (3x + 1)⁵ · 3 dxu = 3x + 1du = 3 dx(3x + 1)⁶ / 6 + C
∫ cos(5x) · 5 dxu = 5xdu = 5 dxsin(5x) + C
∫ e^(2x) · 2 dxu = 2xdu = 2 dxe^(2x) + C
∫ (2x) / (x² + 1) dxu = x² + 1du = 2x dxln|x² + 1| + C
∫ x · √(x² + 4) dxu = x² + 4du = 2x dx(1/3)(x² + 4)^(3/2) + C

Worked Example

Let's work through a complete example from start to finish, showing every algebraic step so you can see the technique in action.

Evaluate ∫ 3x² · cos(x³) dx
1
Step 1 — Identify the Composite StructureThe integrand is 3x² · cos(x³). Here, cos is the outer function and x³ is the inner function. Notice that 3x² is exactly the derivative of x³. This is a clear sign that substitution will work perfectly.
2
Step 2 — Choose u and Compute duLet u = x³. Then du/dx = 3x², so du = 3x² dx. This is exactly the remaining factor in the integrand — a perfect match.
u = x³, du = 3x² dx
3
Step 3 — Rewrite the Integral in Terms of uReplace x³ with u and 3x² dx with du. The integral becomes ∫ cos(u) du. All traces of x are gone — the integral is now entirely in terms of u.
∫ cos(u) du
4
Step 4 — Integrate in Terms of uThe antiderivative of cos(u) is sin(u). Don't forget the constant of integration.
sin(u) + C
5
Step 5 — Back-SubstituteReplace u with x³ to express the answer in terms of the original variable.
sin(x³) + C
6
Step 6 — Verify by DifferentiatingCheck: d/dx[sin(x³)] = cos(x³) · 3x² = 3x² · cos(x³). This matches the original integrand, confirming our answer is correct.
💡 Pro Tip: Always Verify
You can check any antiderivative by differentiating your answer. If you get back the original integrand, you know you're right. This is one of the best self-checking tools in all of calculus.

Tips, Strengths & Common Pitfalls

Substitution is an incredibly versatile technique, but students frequently stumble on a handful of predictable mistakes. Knowing these pitfalls in advance can save you from errors on homework and exams.

Strengths and common pitfalls of u-substitution
StrengthCommon PitfallHow to Avoid It
Works on a huge variety of integrals involving composite functionsChoosing the wrong expression for u (e.g., picking the outer function instead of the inner one)Ask: "What's inside the other function?" That inner piece is almost always u.
Reduces complex integrals to simple, recognizable formsForgetting to convert every part of the integrand to u (leftover x terms)After substituting, scan the integral — if any x remains, you need to express it in terms of u or reconsider your choice.
Handles constant multiples flexiblyPulling a variable (not a constant) out of the integral signOnly constants can move in and out of ∫. Variables must stay inside.
Can change limits on definite integrals for efficiencyUsing x-limits after switching to u, or vice versaEither change limits to u-values right away, or back-substitute before evaluating at the original x-limits.
Self-checking: differentiate the result to verifyForgetting the constant of integration C (indefinite integrals)Always write + C for indefinite integrals. Definite integrals don't need it.
KEY TAKEAWAY
Choosing u is like choosing which door to open in a hallway: there might be several options, but only one leads to a simpler room. If your first choice of u doesn't simplify the integral, try a different inner function. With practice, pattern recognition becomes second nature — you'll start seeing the right substitution almost instantly.

Connection to Advanced Techniques

Substitution is the first of several powerful integration techniques you'll encounter. Once you're comfortable with it, the natural next steps are integration by parts, trigonometric substitution, and partial fractions. Each technique handles a different type of integral that substitution alone can't crack.

Comparing u-substitution with integration by parts
FeatureU-SubstitutionIntegration by Parts
Reverses which derivative rule?Chain RuleProduct Rule
Best forComposite functions: f(g(x)) · g′(x)Products of unrelated functions: x · eˣ, x · ln(x)
Key formula∫ f(g(x)) g′(x) dx = F(g(x)) + C∫ u dv = uv − ∫ v du
Typical difficultyEasier — single variable changeModerate — may require multiple applications
Taught inCalculus 1Calculus 1 or Calculus 2

Even as you learn more advanced methods, substitution never goes away. In fact, you'll often use substitution as a preliminary step within integration by parts or trigonometric substitution. Mastering it now builds a foundation for everything that follows in integral calculus and beyond — including multivariable calculus, differential equations, and physics applications.

Practice Problems

PROBLEM 1CONCEPTUAL
Explain in your own words why integration by substitution is called the "reverse of the chain rule." What role does the inner function play, and why must its derivative appear in the integrand?
PROBLEM 2BASIC CALCULATION
Evaluate ∫ 4x · (x² + 3)⁵ dx using substitution.
PROBLEM 3INTERMEDIATE
Evaluate ∫ sin(x) · cos³(x) dx. (Hint: think about which function's derivative is also present.)
PROBLEM 4APPLIED
A particle moves along a line with velocity v(t) = 6t² · e^(t³) meters per second. Find the displacement of the particle from t = 0 to t = 1 by evaluating the definite integral ∫₀¹ 6t² · e^(t³) dt.
PROBLEM 5CRITICAL THINKING
Consider the integral ∫ x² · √(x + 1) dx. A student tries u = x + 1 but gets stuck because x² remains after substituting. Show how to complete the substitution by expressing x in terms of u, and evaluate the integral.

Lesson Summary

Integration by substitution is the reverse of the chain rule. When you spot an integrand of the form f(g(x)) · g′(x), you set u = g(x) and du = g′(x) dx, rewrite the integral as ∫ f(u) du, integrate using basic rules, and then back-substitute to express the result in terms of x. For definite integrals, you can convert the limits of integration from x-values to u-values to avoid back-substitution entirely.

The five most common patterns include powers of an inner function, trig functions of an inner function, exponentials, logarithmic (1/u) forms, and radicals. Always choose u to be the inner function whose derivative appears elsewhere in the integrand, adjust for constant multiples as needed, and verify your answer by differentiating. Mastering substitution prepares you for more advanced techniques like integration by parts and trigonometric substitution.

Varsity Tutors • Calculus 1 • Integration by Substitution — Integrating Using Substitution