import sympy as sp
x = sp.symbols("x")
sp.simplify(1 - sp.sin(x) ** 2)\(\displaystyle \cos^{2}{\left(x \right)}\)
A trigonometric identity is an equation that is true for every angle where both sides are defined. Identities let us rewrite expressions, simplify formulas, and prepare for calculus. They are not just things to memorize; they come from the unit circle and from definitions.
After this lesson you should be able to:
An equation such as
sin^2(x) + cos^2(x) = 1
is an identity because it is true for all angles x. An equation such as sin(x)=1/2 is not an identity; it is true only for certain angles.
On the unit circle, the point is (cos(x), sin(x)). Since the radius is 1:
cos^2(x) + sin^2(x) = 1
Usually this is written:
sin^2(x) + cos^2(x) = 1
Rearranged forms are also useful:
sin^2(x) = 1 - cos^2(x)
cos^2(x) = 1 - sin^2(x)
Tangent is sine divided by cosine:
tan(x) = sin(x) / cos(x)
This is defined only when cos(x) != 0.
The reciprocal trig functions are:
csc(x) = 1 / sin(x)
sec(x) = 1 / cos(x)
cot(x) = 1 / tan(x) = cos(x) / sin(x)
They are undefined when their denominators are zero.
To verify an identity, transform one side until it matches the other side. A safe strategy is:
sin^2(x)+cos^2(x)=1 when possible.Simplify:
1 - sin^2(x)
Using the Pythagorean identity:
sin^2(x) + cos^2(x) = 1
Subtract sin^2(x) from both sides:
cos^2(x) = 1 - sin^2(x)
So:
1 - sin^2(x) = cos^2(x)
Verify:
tan(x)cos(x) = sin(x)
Start with the left side:
tan(x)cos(x)
= (sin(x)/cos(x))cos(x)
= sin(x)
This matches the right side, for angles where cos(x) != 0.
sin(x) or cos(x) without considering when it is zero.sin^2(x) means (sin(x))^2.sin^2(x)+cos^2(x)=?tan(x) using sine and cosine.sec(x) using cosine.1 - cos^2(x).cot(x)sin(x)=cos(x).1.sin(x)/cos(x).1/cos(x).sin^2(x).cot(x)sin(x) = (cos(x)/sin(x))sin(x)=cos(x) where sin(x) != 0.Identity work is algebra with trig building blocks. Rewrite first; simplify second.
Guess first. Is sin(x)=0 an identity?
Guided exercise.
No. It is true at some angles, such as 0 and pi, but not all angles. sin^2(x)+cos^2(x)=1 is true for all angles.
Checkpoint. Is tan(x)=sin(x)/cos(x) an identity? State any restriction.
Guess first. What can replace 1 - sin^2(x)?
Guided exercise.
From sin^2(x)+cos^2(x)=1:
1 - sin^2(x) = cos^2(x)
Checkpoint. Replace 1 - cos^2(x) with a simpler expression.
Guess first. Why is rewriting tangent often helpful?
Guided exercise.
Rewrite:
tan(x)/sec(x)
= (sin(x)/cos(x)) / (1/cos(x))
= sin(x)
Checkpoint. Rewrite sec(x)cos(x) and simplify.
Guess first. Should you start with the simpler side or the more complicated side?
Guided exercise.
Start with the more complicated side. To verify sec(x)-cos(x)=sin(x)tan(x), start left:
sec(x)-cos(x)
= 1/cos(x) - cos(x)
= (1 - cos^2(x))/cos(x)
= sin^2(x)/cos(x)
= sin(x)tan(x)
Checkpoint. Verify sin(x)cot(x)=cos(x).
tan(x)=sin(x)/cos(x) where cos(x) != 0.sin^2(x).sec(x)cos(x)=(1/cos(x))cos(x)=1, where cos(x) != 0.sin(x)cot(x)=sin(x)(cos(x)/sin(x))=cos(x), where sin(x) != 0.Use SymPy to simplify and verify identities.
\(\displaystyle \cos^{2}{\left(x \right)}\)
Check whether two sides simplify to zero.