Integration by Parts

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

Integration by Parts for Definite Integrals

Definition: Integration by Parts

If U=f(x) is a differentiable function and V=g(x) is a integrable function and continuity conditions on [a,b] are met, then dU=f(x) and dV=g(x). Thus,

abUdV=(UV)|ababVdU

Example 07: Evaluate 02xexdx

Solution 07:

02xexdx=(xex)|0202exdx

(xex)|02ex|02=(2e20)(e2e0)=e2+1

NOTE:

Practice 13

Integrate the following:

  1. 01x2e2xdx​​

  2. 0πxcos(x)dx​​​​

  3. 11e6xsin(e2x)dx​​

  4. 1ex(ln(x))2

  5. 01xexdx

Use Technology to Verify Definite Integrals

Mathematica

NOTE: Mathematica is used here to verify definite integrals. You must show that you understand the Calculus concept of the definite 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. The Mathematica syntax for sin1(x) is ArcSin[x], ex is Ex, sec2(x) is Sec[x]2​​, π is Pi, etc.

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

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

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

    2. {x,0,2}, where x​​ is the variable used in the integrand, 0 is the lower limit of integration, 2 is the upper limit of integration.

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

  6. 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,0,2)​​, where x​​​ is the variable used in the integrand, 0 is the lower limit of integration, 2 is the upper limit of integration.

  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)​​, π is pi, 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. 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: Thursday, 12 August 2021 - 15:46 (EDT) Last Modified: Saturday, 04 June 2022 - 19:39 (EDT)