Equivalent Representations of Trigonometric Functions
Why this matters
Imagine you're a programmer designing the animation for a character in a new video game. You've coded a cool jumping arc using a sine function. But now, the lead designer wants the character to do a flip at the peak of the jump. That flip is a different motion, probably described by a cosine function. How do you combine these two motions into one smooth animation?
You can't just add them together. You need a way to translate one type of trigonometric motion into the other's language. This is where equivalent representations come in. They are like a Rosetta Stone for trigonometry, letting you rewrite sin(x) in terms of cos(x), or break down a complex angle like cos(75°) into simpler pieces you already know. In this lesson, we'll master these translations to simplify expressions and solve equations that look impossible at first glance.
Concept overview
flowchart TD
A[Start: Given Trig Expression or Equation] --> B{What's the problem?};
B --> C{Mixed functions like sin and cos²?};
C --> D[Use Pythagorean Identity: sin²x + cos²x = 1];
B --> E{Angle is a sum/difference like A+B or 75°?};
E --> F[Use Sum/Difference Identity: sin(A+B) or cos(A-B)];
B --> G{Angle is a multiple like 2x?};
G --> H[Use Double-Angle Identity: sin(2x) or cos(2x)];
D --> I[Simplify Algebraically];
F --> I;
H --> I;
I --> J{Is it an equation to solve?};
J -- Yes --> K[Solve for the variable x];
J -- No --> L[End: Simplified Expression];
K --> M[End: Solution Set for x];
Core explanation
Hey everyone, it's Saavi. Let's talk about one of the most powerful ideas in all of trigonometry: identities. An identity is just an equation that is true for all possible values of the variable. It’s a statement of fact, like saying 1 dollar is always equal to 4 quarters. We use these facts to swap out parts of an equation, making it simpler to work with.
The Cornerstone: The Pythagorean Identity
Everything starts with the unit circle. Remember that for any angle θ, the point on the unit circle is (cos θ, sin θ).
Imagine a right triangle inside that circle. The horizontal side has length cos θ, the vertical side has length sin θ, and because it's a unit circle, the hypotenuse (the radius) is always 1.
Now, let's apply the good old Pythagorean Theorem: a² + b² = c².
For our triangle, that's (cos θ)² + (sin θ)² = 1².
Cleaning this up gives us the single most important identity in trigonometry:
sin²θ + cos²θ = 1
A quick note on notation: sin²θ is the standard way to write (sin θ)². This is to avoid confusion with sin(θ²), which is a totally different thing.
This identity is your Swiss Army knife. It lets you swap sines for cosines and vice-versa. If you know sin θ, you can find cos θ without ever knowing the angle θ itself.
Other Forms of the Pythagorean Identity
What happens if we take our main identity, sin²θ + cos²θ = 1, and divide every single term by cos²θ?
(sin²θ / cos²θ) + (cos²θ / cos²θ) = 1 / cos²θ
Remembering our quotient and reciprocal identities (tan θ = sin θ / cos θ and sec θ = 1 / cos θ), this simplifies to:
tan²θ + 1 = sec²θ
This is our second Pythagorean identity. It's incredibly useful when you're dealing with tangents and secants.
We can do the same thing by dividing the original identity by sin²θ to get the third form:
1 + cot²θ = csc²θ
You don't need to memorize the derivations every time, but you do need to know these three identities by heart. They are fundamental.
Combining and Separating Angles: Sum and Difference Identities
What if you need to find the sine or cosine of an angle that isn't one of our "nice" ones like 30°, 45°, or 60°? For example, how would you find the exact value of cos(75°) without a calculator?
You can't just add cos(30°) + cos(45°). That's not how functions work! This is where most students slip up. They try to distribute the cos or sin like it's a number. But sin(A + B) is NOT sin(A) + sin(B).
Instead, we use the sum and difference identities. These are the official formulas for finding the trig function of a combined angle.
Sum Identities:
sin(α + β) = sin α cos β + cos α sin βcos(α + β) = cos α cos β – sin α sin β
Notice the pattern. The sine formula is a "mix" (sin-cos, cos-sin) and it keeps the same sign. The cosine formula is "pure" (cos-cos, sin-sin) but it flips the sign.
Difference Identities:
How do we get the formula for sin(α - β)? We just think of it as sin(α + (-β)).
-
sin(α - β) = sin α cos(-β) + cos α sin(-β)Sincecos(-β) = cos β(even function) andsin(-β) = -sin β(odd function), this becomes:sin(α - β) = sin α cos β - cos α sin β -
Doing the same for cosine:
cos(α - β) = cos α cos β + sin α sin β
From Sums to Doubles
A "double angle" like 2θ is just θ + θ. We can use the sum identities to find a formula for it.
Let's try it for sine:
sin(2θ) = sin(θ + θ) = sin θ cos θ + cos θ sin θ
sin(2θ) = 2 sin θ cos θ
This is the double-angle identity for sine. You can derive the one for cosine the same way, and it's a great way to see how these identities are all connected.
Why Bother? Solving Equations
Okay, that's a lot of formulas. But what's the point?
The point is to take messy equations and make them clean. When you're asked to solve a trigonometric equation, your goal is usually to get everything in terms of a single trig function. These identities are the tools you use to do that.
Imagine you have an equation like cos(2x) - sin(x) = 0. You have two different trig functions (cos and sin) and two different arguments (2x and x). It's a mess. But if you use an identity to replace cos(2x) with something that only involves sin(x), the equation suddenly becomes a simple quadratic that you already know how to solve.
Choosing the right identity is a skill, and it's a skill you build by practicing. Think of it like a puzzle. You have a jumble of pieces, and you're looking for the right identity to make them fit together.
Worked examples
Let's put these identities into practice. The goal here isn't just to get the right answer, but to understand the strategy behind choosing the right tool for the job.
Using the Pythagorean Identity to Solve an Equation
Problem: Find all solutions for 2cos²(x) + 3sin(x) - 3 = 0 on the interval [0, 2π).
Solution Walkthrough:
- 1Analyze the ProblemRight away, you should notice a problem. The equation has both
cos²(x)andsin(x). We can't solve it easily when it's mixed like this. Our goal is to rewrite the equation using only one trigonometric function. - 2Choose the Right ToolWe have a
cos²(x). This should immediately make you think of the Pythagorean identity:sin²(x) + cos²(x) = 1. We can rearrange this to solve forcos²(x):cos²(x) = 1 - sin²(x) - 3Substitute and SimplifyNow, we replace
cos²(x)in our original equation with1 - sin²(x).2(1 - sin²(x)) + 3sin(x) - 3 = 0Distribute the 2:
2 - 2sin²(x) + 3sin(x) - 3 = 0Combine the constant terms and reorder to make it look like a standard quadratic:
-2sin²(x) + 3sin(x) - 1 = 0Let's multiply by -1 to make the leading term positive. It's just easier to look at.
2sin²(x) - 3sin(x) + 1 = 0 - 4Solve the QuadraticThis is where students sometimes get nervous, but don't be! This is just a quadratic equation. To make it clearer, you can temporarily substitute a variable, say
u = sin(x).2u² - 3u + 1 = 0This factors nicely:
(2u - 1)(u - 1) = 0So,
u = 1/2oru = 1. - 5Substitute Back and Find xNow, we replace
uwithsin(x)again.- Case 1:
sin(x) = 1. On the interval[0, 2π), this happens atx = π/2. - Case 2:
sin(x) = 1/2. On the interval[0, 2π), this happens in Quadrant I and Quadrant II. The solutions arex = π/6andx = 5π/6.
- Case 1:
Final Answer: The solutions are x = π/6, x = π/2, and x = 5π/6.
Using a Difference Identity to Find an Exact Value
Problem: Find the exact value of cos(15°).
Solution Walkthrough:
- 1Analyze the Problem15° is not one of our standard unit circle angles. We can't just look it up. The key word here is "exact value," which means no decimals from a calculator. This is a huge clue that we need to use an identity.
- 2Choose the Right ToolWe need to express 15° as a sum or difference of angles we do know. The most obvious choice is
45° - 30°. Both 45° and 30° are standard angles. This means we need the cosine difference identity:cos(α - β) = cos α cos β + sin α sin β - 3Substitute and EvaluateLet
α = 45°andβ = 30°.cos(15°) = cos(45° - 30°) = cos(45°)cos(30°) + sin(45°)sin(30°)Now, we just plug in the known values from the unit circle:
cos(45°) = √2 / 2cos(30°) = √3 / 2sin(45°) = √2 / 2sin(30°) = 1 / 2
cos(15°) = (√2 / 2)(√3 / 2) + (√2 / 2)(1 / 2) - 4Simplify
cos(15°) = (√6 / 4) + (√2 / 4)cos(15°) = (√6 + √2) / 4
Final Answer: The exact value is (√6 + √2) / 4.
Try it yourself
Ready to try a couple on your own? Remember to identify the type of problem first, then choose your identity.
-
Solve for
xon the interval[0, 2π):sin(x) - cos(2x) = 0Hint: You have two different functions (
sin,cos) and two different arguments (x,2x). Your first step must be to use an identity to fix this. The double-angle identity forcos(2x)has three versions. Which one will leave you with an equation that only containssin(x)?* -
Find the exact value of
sin(105°)without a calculator.Hint: How can you express 105° using two of the "famous" angles from the unit circle (like 30°, 45°, 60°, 90°)? Is it a sum or a difference? Once you figure that out, apply the correct identity.*
Good luck! Take your time and show your steps.
Practice — 8 questions
In simple terms, this topic is about rewriting trigonometric expressions in different but equivalent ways—like using synonyms—to make solving complex problems much easier.
sin²θ + cos²θ = 1
- 3.12.A: Rewrite trigonometric expressions in equivalent forms with the Pythagorean identity.
- 3.12.B: Rewrite trigonometric expressions in equivalent forms with sine and cosine sum identities.
- 3.12.C: Solve equations using equivalent analytic representations of trigonometric functions.
- 3.12.A.1
- The Pythagorean Theorem can be applied to right triangles with points on the unit circle at coordinates (cos θ, sin θ), resulting in the Pythagorean identity: sin²θ + cos²θ = 1.
- 3.12.A.2
- The Pythagorean identity can be algebraically manipulated into other forms involving trigonometric functions, such as tan²θ = sec²θ – 1, and can be used to establish other trigonometric relationships, such as arcsin x = arccos(√(1 - x²)), with appropriate domain restrictions.
- 3.12.B.1
- The sum identity for sine is sin(α + β) = sin α cos β + cos α sin β.
- 3.12.B.2
- The sum identity for cosine is cos(α + β) = cos α cos β – sin α sin β.
- 3.12.B.3
- The sum identities for sine and cosine can also be used as difference and double-angle identities.
- 3.12.B.4
- Properties of trigonometric functions, known trigonometric identities, and other algebraic properties can be used to verify additional trigonometric identities.
- 3.12.C.1
- A specific equivalent form involving trigonometric expressions can make information more accessible.
- 3.12.C.2
- Equivalent trigonometric forms may be useful in solving trigonometric equations and inequalities.
flowchart TD
A[Start: Given Trig Expression or Equation] --> B{What's the problem?};
B --> C{Mixed functions like sin and cos²?};
C --> D[Use Pythagorean Identity: sin²x + cos²x = 1];
B --> E{Angle is a sum/difference like A+B or 75°?};
E --> F[Use Sum/Difference Identity: sin(A+B) or cos(A-B)];
B --> G{Angle is a multiple like 2x?};
G --> H[Use Double-Angle Identity: sin(2x) or cos(2x)];
D --> I[Simplify Algebraically];
F --> I;
H --> I;
I --> J{Is it an equation to solve?};
J -- Yes --> K[Solve for the variable x];
J -- No --> L[End: Simplified Expression];
K --> M[End: Solution Set for x];
Read what Saavi narrates
(gentle, warm music fades in and out)
Hey everyone, it's Saavi from Shrutam.
Have you ever played a video game and marveled at how smooth the character's movements are? Imagine you're the programmer for that game. You've coded a perfect jump using a sine function. But now, the boss wants the character to do a flip at the top of the jump, a motion you've described with cosine. How do you blend those two ideas into one seamless animation?
You can't just add them. You need to speak both of their languages. That's what we're doing today. We're learning how to translate trigonometric functions into different, but equivalent, forms.
Think of these trig identities as master keys. Instead of fumbling with a hundred different locks, you have a few powerful tools that can open almost any door. We're going to focus on two of these keys: the Pythagorean identity, and the sum and difference identities. They'll let you take messy, complicated equations and make them simple.
Let's try one. Imagine the AP Exam asks you to find the exact value of the cosine of fifteen degrees. Now, fifteen degrees isn't one of our nice, standard angles on the unit circle. This is a huge clue that we need an identity.
The trick is to see that fifteen degrees is just forty-five degrees minus thirty degrees. And we know everything about those two angles! So we can use the cosine difference formula.
The formula is cosine of alpha minus beta equals... cosine alpha times cosine beta... PLUS... sine alpha times sine beta. Remember, the cosine identity flips the sign.
So, we plug in our angles. Cosine of forty-five is the square root of two over two. Cosine of thirty is the square root of three over two. Sine of forty-five is also root two over two, and sine of thirty is one-half.
When you multiply and add all that up, you get the square root of six plus the square root of two, all divided by four. And that's your exact answer. No calculator needed.
Now, a really common mistake I see every year is students trying to take a shortcut. They'll see cosine of forty-five minus thirty, and they'll just write cosine of forty-five minus cosine of thirty. You cannot distribute a trig function like that! It's a function, not a number. Using the proper identity is the only way.
These tools might feel like a lot to memorize at first, but the more you use them, the more they'll feel like second nature. They turn puzzles into problems you can solve. You've got this.
(gentle, warm music fades in)
`sin` is a function, not a variable you can distribute. The function `sin(x)` operates on the *entire* input `(A+B)`. The correct formula is the sum identity: `sin(A+B) = sinAcosB + cosAsinB`.
When you see `sin` or `cos` of a sum or difference, immediately think "sum/difference identity." Never distribute a trig function.
The equation `y² = k` has two solutions: `y = √k` and `y = -√k`. You lose half of your potential answers.
Always write `cosx = ±√3 / 2` and then find the angles in all the appropriate quadrants that satisfy both the positive and negative cases.
The signs are critical. `cos(A+B)` uses a minus sign in its formula, while `cos(A-B)` uses a plus. Getting them backward will give you the wrong answer every time.
Use a mnemonic. For cosine, the operation in the formula is the *opposite* of the one in the angle (`cos(A**+**B)` has a **-**). For sine, the operation is the *same* (`sin(A**+**B)` has a **+**).
`sin²x` means `(sin x)²` — you find the sine of the angle, then you square the result. `sin(x²)` means you square the angle first, then you find the sine of that new, larger angle. They are completely different operations.
Be deliberate with your notation. When you see `sin²x`, immediately think `(sin x)²` in your head.
The goal of a verification is to show that one side can be transformed *into* the other. If you manipulate both, you're assuming they are equal from the start, which is what you're trying to prove.
Pick one side (usually the more complicated one) and work on it exclusively until it looks exactly like the other side.