What is Integration by Substitution?

1 Answer
Oct 1, 2014

Integration by substitution - also known as the "change-of-variable rule" - is a technique used to find integrals of some slightly trickier functions than standard integrals. It is useful for working with functions that fall into the class of some function multiplied by its derivative.

Say we wish to find the integral

#int_1^3ln(x)/xdx#
We know that #ln(x)/x = ln(x)*1/x#
and we also know that the derivative of #ln(x)# is #1/x#
What we can do now is change our variable from x to u. We let u equal the undifferentiated function - in this case, #ln(x)#.

#"Let "u = ln(x)#
#=> (du)/dx = 1/x#

We can substitute both of these new functions into the original equation.

#int_1^3ln(x)/xdx#
#= int_1^3ln(x)*1/xdx#
#= int_1^3u*(du)/dxdx#

We're not quite there yet! When we change the variable, we also need to change the terminals of the integral.

#"When "x=1, ln(x) = 0#
#"When "x=3, ln(x) = ln(3)#
Note that I leave #ln(3)# in exact form.

The next step requires a little bit of "false multiplication". We all know that if we multiply a fraction by its denominator, the denominator disappears - for example:
#2/3 * 3 = 2#
#6/13 * 13 = 6#
#a/b * b = a#
The same is true with #(du)/dx*dx#. When (and ONLY when) we have changed our terminals, we can substitute in the new terminals and do this bit of multiplication:

#int_1^3u*(du)/dxdx#

#=int_0^ln(3)u*du#

This is now an integral we can work with. The answer will be correct only if you have correctly changed the terminals.

The process is very similar for finding antiderivatives (or indefinite integrals). The only difference is that we have no terminals to work with, so instead of changing the terminals in the middle, we substitute the original variable at the end. Let's say we have our original integral without terminals:

#"Let "u = ln(x)#
#=> (du)/dx = 1/x#
#=>intln(x)/xdx#
#=intu*(du)/dxdx#
#=intu*du#
#=(u^2)/2 + c, c in RR#
Now we can substitute #u=ln(x)# back into the equation:
#intln(x)/xdx#
#=(ln(x))^2/2+c, c in RR#.