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

Substitution Rule

Procedure for Substitution Rule for Indefinite Integrals

NOTE: When using the Substitution Rule, you must completely convert all x​-variables to u​-variable(s). Show the following work:

  1. Substitute u and dx​ into the indefinite integral.

  2. Appropriately cancel factors.

  3. For each converted integral, integrate with respect to u​​​​.

  4. Substitute result back into terms of x.

  5. Verify answer:

    1. Use FTC-I; or

    2. Use technology.

Example 04: Evaluate: csc1(x)xx21dx​​​​​​​

Solution 04:

NOTE: csc1(x) is not a composition of two functions. csc1(x) is the inverse cosecant function.

Let u=csc1(x)​​​​​ not because csc1(x)​​​​​ is an “inside” function​​.

Then the differential for the above let statement is: du=1xx21dx​​​​.

Rewrite the differential as dx=xx21du​​​.

  1. Substitute u and dx into the indefinite integral: csc1(x)xx21dxuxx21(xx21du)

  2. Appropriately cancel factors: uxx21(xx21du)uxx21(xx21du)udu​​​​​​ NOTE: There is only a single variable in the simplified indefinite integral above.

  3. Integrate with respect to u: udu=u22+C​​

  4. Substitute result back into terms of x​. u22+C=csc1(x)22+C

  5. Verify answer: ddx[12csc1(x)2+C]=12(2)csc1(x)ddx(csc1(x)) 12(2)csc1(x)(1xx21)=csc1(x)xx21 The derivative function is equivalent to the function in the integrand of the indefinite integral. NOTE: ddxC=0 and Chain Rule for Derivatives is required to differentiate csc1(x)2=(csc1(x))2.

Use Technology to Verify Definite Integrals

Mathematica

NOTE: Mathematica is used here to verify definite 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 definite 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 08

Evaluate the following indefinite integrals:

  1. tan1(x)1+x2dx

  2. sin1(x)1x2dx

  3. ln(x)xdx

  4. tan(x)sec2(x)dx

  5. sin(x)cos(x)dx

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: Monday, 9 August 2021 18:16 EDT Last Modified: Thursday, 8 June 2023 – 11:34 (EDT)