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

Using the Substitution Rule for Definite Integrals

Procedure for the Substitution Rule for Definite Integrals

  1. Identify u and du. Explain.

  2. Rewrite integrand in terms of u.

  3. Rewrite limits of integration in terms of u-values. This is required as part of Definition of u-Substitution.

  4. Complete the procedure of integrating and use FTC-2 to find the net area.

Example 09: Evaluate: 0π4xsin(x2)dx.

Answer 09:

  1. The “inside” function is x2, so

    Let u=x2; and

    du=2xdxdx=du2x.

  2. Convert the limits of integration:

When x=0, u=02=0.

When x=π4, u=π42=π4.

So,

0π4xsin(x2)dx=0π4xsin(u)du2x=120π4sin(u)du

120π4sin(u)du=12[cos(u)]0π4=12[cos(π4)(cos(0))]

Investigation 22

Explain why you do not need to rewrite integral back into terms of the x-variable.

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 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 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:

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, 24 January 2022 - 07:29 (EST) Last Modified: Tuesday, 16 August 2022 - 12:11 (EDT)