The Substitution Rule

In first quarter calculus you learned numerous methods for computing derivatives of functions. For example, the power rule asserts that

$\displaystyle (x^a)' = a \cdot x^{a-1}.
$

We can turn this into a way to compute certain integrals:

$\displaystyle \int x^a dx = \frac{1}{a+1} x^{a+1}$   if $a&ne#neq;-1$$\displaystyle .
$

Just as with the power rule, many other rules and results that you already know yield techniques for integration. In general integration is potentially much trickier than differentiation, because it is often not obvious which technique to use, or even how to use it. Integration is a more exciting than differentiation!

Recall the chain rule, which asserts that

$\displaystyle \frac{d}{dx} f(g(x)) = f'(g(x)) g'(x).
$

We turn this into a technique for integration as follows:

Proposition 2.3.1 (Substitution Rule)   Let $ u=g(x)$, we have

$\displaystyle \int f(g(x)) g'(x) dx = \int f(u) du,
$

assuming that $ g(x)$ is a function that is differentiable and whose range is an interval on which $ f$ is continuous.

Proof. Since $ f$ is continuous on the range of $ g$, Theorem 2.1.5 (the fundamental theorem of Calculus) implies that there is a function $ F$ such that $ F'= f$. Then

$\displaystyle \int f(g(x)) g'(x) dx$ $\displaystyle = \int F'(g(x)) g'(x) dx$    
  $\displaystyle = \int \left(\frac{d}{dx} F(g(x))\right) dx$    
  $\displaystyle = F(g(x)) + C$    
  $\displaystyle = F(u) + C = \int F'(u) du = \int f(u) du.$    

$ \qedsymbol$

If $ u=g(x)$ then $ du = g'(x) dx$, and the substitution rule simply says if you let $ u=g(x)$ formally in the integral everywhere, what you naturally would hope to be true based on the notation actually is true. The substitution rule illustrates how the notation Leibniz invented for Calculus is incredibly brilliant. It is said that Leibniz would often spend days just trying to find the right notation for a concept. He succeeded.

As with all of Calculus, the best way to start to get your head around a new concept is to see severally clearly worked out examples. (And the best way to actually be able to use the new idea is to do lots of problems yourself!) In this section we present examples that illustrate how to apply the substituion rule to compute indefinite integrals.

Example 2.3.2  

$\displaystyle \int x^2(x^3 + 5)^9 dx
$

Let $ u=x^3 +5$. Then $ du = 3x^2 dx$, hence $ dx = du/(3x^2)$. Now substitute it all in:

$\displaystyle \int x^2 (x^3 + 5)^9 dx = \int \frac{1}{3} u^9 = \frac{1}{30} u^{10} = \frac{1}{30}(x^3 + 5)^{10}.
$

There's no point in expanding this out: ``only simplify for a purpose!''

Example 2.3.3  

$\displaystyle \int \frac{e^x}{1+e^x} dx
$

Substitute $ u=1+e^x$. Then $ du = e^x dx$, and the integral above becomes

$\displaystyle \int \frac{du}{u} = \ln\vert u\vert = \ln\vert 1+e^x\vert = \ln(1+e^x).
$

Note that the absolute values are not needed, since $ 1+e^x>0$ for all $ x$.

Example 2.3.4  

$\displaystyle \int \frac{x^2}{\sqrt{1-x}} dx
$

Keeping in mind the power rule, we make the substitution $ u = 1-x$. Then $ du = -dx$. Noting that $ x=1-u$ by solving for $ x$ in $ u = 1-x$, we see that the above integral becomes

$\displaystyle \int - \frac{(1-u)^2}{\sqrt{u}} du$ $\displaystyle = -\int \frac{1 - 2u + u^2}{u^{1/2}} du$    
  $\displaystyle = -\int u^{-1/2} - 2u^{1/2} + u^{3/2} du$    
  $\displaystyle = -\left(2u^{1/2} - \frac{4}{3} u^{3/2} + \frac{2}{5} u^{5/2}\right)$    
  $\displaystyle = -2(1-x)^{1/2} + \frac{4}{3}(1-x)^{3/2} - \frac{2}{5} (1-x)^{5/2}.$    

William Stein 2006-03-15