Substitution Rule

Author: John J Weber III, PhD Corresponding Textbook Sections:

Expected Educational Results

Bloom’s Taxonomy

A modern version of Bloom’s Taxonomy is included here to recognize various different levels of understanding and to encourage you to work towards higher-order understanding (those at the top of the pyramid). All Objectives, Investigations, Activities, etc. are color-coded with the level of understanding.

Bloom’s Taxonomy for different levels of understanding
Figure 1.1: Bloom's Taxonomy

Special Case for Substitution Methods

Investigation 09

Consider the integral x(x+3)10dx.

  1. Explain how is this integral different from the integrals in Investigation 03 in ACT_02c_Substitution_Rule.html?

  2. Explain why u=x+3 is required.

Example 05: Consider the integral x(x+3)10dx.

Answer 05:

Let u=x+3. Then du=dx and

x(x+3)10dx=xu10du.

Investigation 10

Explain why xu10du is not integrable as written.

Answer 05 (continued):

Rewrite u=x+3 as x=u3 and substitute:

xu10du=(u3)u10du

Investigation 11

Explain why (u3)u10du IS integrable as written

Answer 05 (continued):

Simplify the integral by expanding using the Distributive Property:

(u3)u10du=(u113u10)du

Integrate in terms of u using Power Rule for Antiderivatives:

(u113u10)du=u12123u1111+C

NOTE: +C is needed for all steps that have an antiderivative.

Use u=x+3 to substitute answer back into terms of x:

u12123u1111+C=(x+3)12123(x+3)1111+C

NOTE: There is NO need to rewrite the antiderivative into another form.

Verify the answer using:

Investigation 12

Consider the integral x51x2dx.

  1. Explain how is this integral different from the integrals in Investigation 03 in ACT_02c_Substitution_Rule.html?

  2. Explain why u=1x2 is required.

Example 06: Consider the integral x51x2dx.

Answer 06:

Let u=1x2. Then du=2xdxdx=du2x and

x51x2dx=x5udu2x

Use algebra to simplify:

x5x4udu2x=12x4udu

Investigation 13

Explain why 12x4udu is not integrable as written.

Answer 06 (continued):

Rewrite u=1x2 as x2=1u and substitute:

12x4udu=12(x2)2udu=12(1u)2udu.

Investigation 14

Explain why 12(1u)2udu IS integrable as written.

Answer 06 (continued):

Simplify the integral by expanding the numerator using the Distributive Property:

12(1u)2udu=1212u+u2udu

Simplify the integral using the Distributive Property:

12(1u2uu+u2u)du

Simplify the rational expressions using a Property of Exponential Expressions:

12(1u2uu+u2u)du=12(u1/22u1/2+u3/2)du

Integrate in terms of u using Power Rule for Antiderivatives:

12(u1/22u1/2+u3/2)du=12(u1/21/22u3/23/2+u5/25/2)+C

NOTE: +C is needed for all steps that have an antiderivative.

NOTE: +C can be included inside the parentheses or not – both ways to include +C are equivalent.

Use u=1x2 to substitute answer back into terms of x:

12(u1/21/22u3/23/2+u5/25/2)+C=12((1x2)1/21/22(1x2)3/23/2+(1x2)5/25/2)+C

NOTE: There is NO need to rewrite the antiderivative into another form.

Verify the answer using:

Use Technology to Verify Indefinite Integrals

Mathematica

NOTE: Mathematica is used here to verify indefinite integrals. On all Assessments, you must show that you understand the Calculus I concept of using u​-Substitution to evaluate an indefinite integral.

Warnings:

  1. Be very careful with the syntax. Syntax is the set of rules on how to write computer code. Every software program has its own unique syntax. Some basic Mathematica syntax is located at: https://www.jjw3.com/Common_Mathematica_Code.html.

  2. Integrate[ ] for indefinite integrals has two arguments:

    1. The integrand, i.e., function of the definite integral;

    2. x​, where x​ is the variable used in the integrand.

  3. The Mathematica syntax for ex​​ is Ex​​; cos(x)​​ is Cos[x]​​, ln(x)​​ is Log[x]​​, tan1(x)​​ is ArcTan[x]​​, etc.

  4. Remember to use parens (​ and )​​ to group multiple terms or factors in the numerator or denominator of a rational expression.

  5. Remember, correct Mathematica code will be all black except for variables.

  6. Mathematica does not return the antiderivative with +C​. You need to use +C for all steps that are antiderivatives.

  7. To execute code (including comment codes), press and hold the SHIFT key and press the ENTER key.

Python

NOTE: Python is used here to verify indefinite integrals. On all Assessments, you must show that you understand the Calculus I concept of using u-Substitution to evaluate an indefinite integral.

Warnings:

  1. Be very careful with the syntax. Syntax is the set of rules on how to write computer code. Every software program has its own unique syntax. Some basic Python syntax is located at: https://www.jjw3.com/Common_Python_Code.html.

  2. All code is included above with comment codes that explain the executable code.

  3. integrate( ) for indefinite integrals has two arguments:

    1. The integrand, i.e., function of the definite integral;

    2. x​, where x​​ is the variable used in the integrand.

  4. You only need to change the function in the integrate( ) command.

  5. The Python syntax for ex​​ is exp(x)​​; cos2(x)​​ is cos(x)**2​​; x4​​ is x**4​​, ln(x)​​ is log(x)​​, tan1(x)​​ is atan(x)​​, etc.

  6. Python requires for explicit multiplication; ​ for exponents.

  7. Remember to use parens ( and )​ to group multiple terms in the numerator or denominator of a rational expression.

  8. Python does not return the antiderivative with +C. You need to use +C for all steps that are antiderivatives.

  9. To execute code, press the “View the result” button:

Investigation 15

Integrate the following:

  1. x1xdx

  2. x1+xdx

  3. x2(1x)12dx

  4. x3x21dx

  5. x81+x3dx

Investigation 16

Explain why the above method is not valid for the following integrals:

  1. x21x2dx

  2. x41+x3dx

  3. x2(1x2)12dx

  4. x2x21dx

  5. x61+x3dx

Homework

At this time, you should be able to complete the following assignments:

CC BY-NC-SA 4.0

This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License [http://creativecommons.org/licenses/by-nc-sa/4.0/].

Created: Tuesday, 25 August 2020 07:18 EDT Last Modified: Thursday, 8 June 2023 – 12:22 (EDT)