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

Trigonometric Integrals

Reminder

So far, I have suggested that you should follow the following general steps when integrating a function:

  1. Use FTC-I, if possible;

  2. Rewrite, then use FTC-I, if possible;

  3. Use u-sub; you may still need to rewrite the integral until all x-variables are converted into u-variables.

Practice 13

Evaluate the following integrals.

  1. π/6π/4sec4(x)tan3(x)dx

  2. π/6π/3sec3(x)tan3(x)dx

  3. π/4π/3sec4(x)tan2(x)dx

  4. 0π/4tan2(x)dx

  5. π/4π/4sec2(x)dx

  6. 03π/4sin4(x)cos5(x)dx

  7. π/3πsin4(x)cos2(x)dx

  8. π/4π/2sin5(x)cos(x)dx

  9. 0πsin3(x)cos3(x)dx

  10. ππcos2(x)dx

Use Technology to Verify Definite Integrals

Mathematica

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

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

  6. Mathematica does not show +C for antiderivatives. You will need to remember to include +C in your answers.

  7. Mathematica may return a result in a different, but equivalent, form than your answer. In these cases, use FTC-I to check your work.

Python

NOTE: Python is used here to verify indefinite integrals. On all Assessments, you must show that you understand the Calculus concept of evaluating 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 cos2(x)​​​ is cos(x)**2​​​; 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: ​​

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, 16 August 2022 - 21:51 (EDT)