Trigonometric Integrals

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

Definite Trigonometric Integrals

Example 03: Evaluate π/6π/4sin2(x)cos5(x)dx

Solution 03:

Try u-Substitution:

The limits of integration must be converted to u-values:

So,

1/22/2u2cos54(x)ducos(x)=1/22/2u2cos4(x)du=1/22/2u2(cos2(x))2du

1/22/2u2(cos2(x))2du=1/22/2u2(1sin2(x))2du=1/22/2u2(1u2)2du

Since we converted all x-values and functions to u-values and functions, u-Substitution is a valid method for this integral.

Since there is no product rule or chain rule for antiderivatives, use algebra to rewrite:

1/22/2u2(1u2)2du=1/22/2u2(12u2+u4)du=1/22/2(u22u4+u6)du

Integrate using Power Rule for Antiderivatives:

1/22/2(u22u4+u6)du=(u332u55+u77)1/22/2

(22)332(22)55+(22)77((12)332(12)55+(12)77)

Investigation 11

Evaluate the following definite integrals.

  1. 0π4sec2(x)tan4(x)dx

  2. 0π6sin2(x)cos2(x)dx

  3. 0πsin3(x)cos2(x)dx

  4. 0π3sec(x)dx

  5. π6π3sec3(x)tan(x)dx

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 integrals.

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 cos2(x) is Cos[x]2​, etc.

  3. Integrate[ ] for definite integrals has two arguments:

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

    2. {x,0,Pi/4}, where x​ is the variable used in the integrand, a=0 is the lower limit of integration, b=π/4 is the upper limit of integration.

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

  5. 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 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 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. The Python syntax for cos2(x)​​​ is cos(x)**2​​​; etc.

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

  6. 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, 1 September 2020 04:06 EDT Last Modified: Tuesday, 16 August 2022 - 21:49 (EDT)