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

Practice

Practice 21

Show ALL work. Integrate the following:

  1. 1xln(x)dx

  2. x32xdx

  3. x3x2dx

  4. x33x2dx

  5. exsin(ex)dx

  6. cos(x)esin(x)dx

  7. 1ax+bdx

  8. 1(ax+b)2dx

  9. xx2+4dx

  10. x(x2+4)3dx

  11. x3(x2+4)2dx

  12. sec2(x)tan(x)dx

  13. sin2(x)cos(x)dx

  14. cos(x)1+sin(x)dx

  15. x1x2dx

  16. x3(x2+1)10dx

  17. x2(x3+1)10dx

  18. 1sin1(x)1x2dx

  19. sin1(x)1x2dx

  20. 1(ax+b)2dx

  21. exe2x+1dx

  22. exex+1dx

  23. ex+1exdx

  24. e2xe2x+1dx

  25. e2xex+1dx

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 II 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 indefinite 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], sin2(x) is Sin[x]2, 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 II 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 indefinite 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: Tuesday, 25 August 2020 05:33 EDT Last Modified: Tuesday, 21 December 2021 - 15:26 (EST)