Trigonometric IntegralsExpected Educational ResultsBloom’s TaxonomyTrigonometric IntegralsHalf- and Double-Angle FormulasUse Technology to Rewrite Using AlgebraInvestigation 09Use Technology to Verify AntiderivativesCC BY-NC-SA 4.0
Author: John J Weber III, PhD Corresponding Textbook Sections:
Section 7.2 – Trigonometric Integrals
Objective 04–01: I can evaluate an indefinite trigonometric integral.
Objective 04–02: I can evaluate a definite trigonometric integral using FTC-II.
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.

From Pre-Calculus, we know:
Example 02: Evaluate
Solution 02:
We discussed in a previous page that
We will also need to rewrite:
Use algebra to rewrite:
Thus,
which is now integrable using
NOTE: You may use Mathematica to rewrite integrals in which sine and cosine are both to even powers without showing any associated work.
Mathematica
1(* Find expression equivalent to cos(x)^2 *)2TrigReduce[Cos[x]^2]Warnings:
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.
The Mathematica syntax for
Remember, correct Mathematica code will be all black except for variables.
To execute code (including comment codes), press and hold the SHIFT key and press the ENTER key.
Python
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.
All code is included above with comment codes that explain the executable code.
The Python syntax for
Python requires
To execute code, press the “View the result” button:

Use the trigonometric identities to evaluate the following integrals.
Use Mathematica or Python to first rewrite these expressions.
Mathematica
NOTE: Mathematica is used here to verify antiderivatives. You must show that you understand the Calculus concept of the antiderivative.
xxxxxxxxxx21(* Example from Investigation 08-3: Integrate sin(x)^2 cos(x)^2 *)2Integrate[Sin[x]^2*Cos[x]^2, x]Warnings:
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.
The Mathematica syntax for
Integrate[ ] for indefinite integrals has two arguments:
The integrand, i.e., function of the definite integral;
Remember, correct Mathematica code will be all black except for variables.
To execute code (including comment codes), press and hold the SHIFT key and press the ENTER key.
Mathematica does not show
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 definite integrals. On all Assessments, you must show that you understand the Calculus concept of using
Warnings:
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.
All code is included above with comment codes that explain the executable code.
integrate( ) for indefinite integrals has two arguments:
The integrand, i.e., function of the definite integral;
You only need to change the function in the integrate( ) command.
The Python syntax for
Python requires
Python does not return the antiderivative with
To execute code, press the “View the result” button:
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 03:43 EDT Last Modified: Tuesday, 16 August 2022 - 21:19 (EDT)