Definite Integrals with Substitution

Key Questions

  • This is a classic case if what's called u-substitution. Meaning that you have to find a function ( u) and it's derivative (du) in the expression. Both the function and it's derivative may be hidden behind coefficients and confusing notation.

    In this case, I might start by using exponents to rewrite the integral without fractions.

    #int_0^2(10x)/sqrt(3-x^2)dx=int_0^2(3-x^2)^(-1/2)(10x)dx#

    Now, I'm looking for a function and it's derivative. Here's where I notice that I have a second degree polynomial ( #3-x^2#) inside the exponent part, and I have a first degree polynomial (#10x#) elsewhere in the integral. In general a polynomial that starts with an x^2 will have a derivative that starts with an x. So:

    If I decide that

    #u=3-x^2#

    then

    #du=-2xdx#

    but I don't have a #-2x# anywhere on the integral. I do have a #10x#.

    I'm allowed to manipulate coefficients in an integral (manipulating variables is trickier, and sometimes not possible). So I need to manipulate the #10# in front of the x into being a #-2# in front of an x.

    We start with:

    #int_0^2(3-x^2)^(-1/2)(10x)dx#

    We can pull a coefficient factor out of the integral entirely. We don't have to, but I find it makes for a more clear picture.

    #10int_0^2(3-x^2)^(-1/2)(x)dx#

    Now we would really like to put a #-2# in front of the x, so that we can match the #-2x# above. And we can put in in there. As long as we put it's reciprocal out in front to balance things out.

    #10(1/(-2))int_0^2(3-x^2)^(-1/2)(-2x)dx#

    =#-5int_0^2(3-x^2)^(-1/2)(-2x)dx#

    Now we have our u and our du. But there's one other thing we need to be aware of.

    This is a definite integral, and the 0 and the 2 represent x values, not u values. But we have a way to convert them,

    #u=3-x^2#

    So for #x=0#, we get #u=3-0^2#, or #u=3#.

    For #x=2#, we get #u=3-2^2#, or #u=-1#.

    Now we substitute all our x's for u's.

    #-5int_0^2(3-x^2)^(-1/2)(-2x)dx=-5int_3^(-1)u^(-1/2)du#

    #=-5(u^(1/2))/(1/2)|_3^(-1)=-10u^(1/2)|_3^(-1)#

    #=-10sqrt(-1)-(-10sqrt(3))#

    #=-10i+10sqrt(3)#, or

    #10(sqrt(3)-i)#

    Hope this helps.

  • Since dx has been placed twice, I'm going to assume that the equation should read #int_e^(e^4)dx/(x*sqrt(ln(x)))#. In this case, a good way to find the integral is by substitution, letting #u = ln(x)#.

    To integrate something by substitution (also known as the change-of-variable rule), we need to select a function #u# so that its derivative also forms part of the original equation. (For example, when we try to antidifferentiate #tan(x)# we can say that #tan(x) = sin(x)/cos(x)# and select #u = cos(x)#. The derivative of #u# is also within the original equation.)

    To find the integral of your function, we do the following:

    1. Let #u = ln(x)#, then #(du)/dx = 1/x# - this is a standard derivative.
    2. Substitute these two new functions into the equation:
      #int_e^(e^4)dx/(x*sqrt(ln(x))) = int_e^(e^4)1/(x*u)dx = int_e^(e^4)1/u*(du)/dxdx#
    3. Find new terminals - this is a crucial step, because we're changing the variable!
      #"When "x = e, u = ln(e) = 1 " and when "x=e^4, u = ln(e^4)=4#
    4. Substitute these new terminals in, and "cancel out" the two #dx# terms:
      #int_e^(e^4)1/u*(du)/dxdx = int_1^4(du)/u = int_1^4u^(-1)du#
    5. Integrate normally. The answer you get for this "new" integral will be exactly the same answer as the original integral.
  • The only thing different from indefinite integral is that you will have to convert the original lower and upper limits into the new ones.

    Let us evaluate the definite integral below.

    #int_0^2 2xe^{x^2+1} dx#

    Let #u=x^2+1#.
    #Rightarrow {du}/{dx}=2x Rightarrow du=2x du#

    When #x=0#, #u=(0)^2+1=1#
    When #x=2#, #u=(2)^2+1=5#

    If x goes from 0 to 2, then u goes from 1 to 5.

    By Substitution,

    #int_0^2 2xe^{x^2+1} dx=int_1^5 e^u du=[e^u]_1^5=e^5-e#

Questions