Inverse Trigonometric Functions
Why this matters
Imagine you're helping design a new skate park in your town. The star attraction will be a massive ramp. The city code says for safety, the ramp can't be steeper than a certain angle. You know the ramp needs to rise 8 feet vertically over a 15-foot horizontal distance.
You can easily find the length of the ramp's surface using the Pythagorean theorem, but how do you find the angle of inclination? You know the "opposite" and "adjacent" sides, so you know the tangent of the angle is 8/15. But what's the angle itself?
Regular trig functions like sine, cosine, and tangent take an angle and give you a ratio. We need to go backward. We have the ratio, and we need to find the angle. That's exactly what inverse trigonometric functions are for. They are the "undo" button for our standard trig functions.
Concept overview
flowchart TD
A[Start with y = sin(x)] --> B{Is it one-to-one?};
B -- No, fails Horizontal Line Test --> C[Restrict domain to [-pi/2, pi/2]];
C --> D[Now the function is one-to-one];
D --> E[Swap x and y to find the inverse];
E --> F[x = sin(y)];
F --> G[Solve for y: y = arcsin(x)];
G --> H[Final Inverse Function];
H --> I[Domain: [-1, 1]];
H --> J[Range: [-pi/2, pi/2]];
Core explanation
Hey everyone, it's Saavi. Let's dive into one of my favorite topics: inverse trigonometric functions. It sounds complicated, but the core idea is really about working backward.
Why Do We Need an "Inverse"?
Remember what an inverse function does. If a function f(x) takes an input x and gives you an output y, its inverse f⁻¹(y) takes that y and gives you back the original x. It's like a round trip. For example, if f(x) = 2x, then f(3) = 6. The inverse function, f⁻¹(x) = x/2, takes that 6 and gets you right back to 3.
Graphically, you find an inverse by reflecting the function's graph over the line y = x. But there's a catch: a function only has an inverse if it's one-to-one. This means that every output y comes from exactly one input x. We can check this with the Horizontal Line Test: if you can draw a horizontal line that hits the graph more than once, the function is not one-to-one.
Now, let's look at our friend y = sin(x). If you graph the full sine wave, it goes up and down forever. A horizontal line at, say, y = 0.5 will hit the graph in infinitely many places.
This is a problem. If we ask, "What angle has a sine of 0.5?", the answers are π/6, 5π/6, 13π/6, and so on. We can't have a function that gives infinite answers for one input.
The Solution: Restricting the Domain
To solve this, we make a deal. We agree to only look at a small, specific piece of the sine graph that does pass the Horizontal Line Test. For the sine function, the globally accepted "slice" is the interval from x = –π/2 to x = π/2.
Why this piece?
- It's one-to-one on this interval.
- It covers every possible output value of sine, from -1 to 1.
- It's centered around the origin, capturing the "simplest" positive and negative angles.
By restricting the domain of y = sin(x) to [–π/2, π/2], we create a function that is now invertible.
Meet Arcsine: The Inverse Sine Function
The inverse of our newly restricted sine function is called arcsine, written as y = arcsin(x) or y = sin⁻¹(x).
So what does y = arcsin(x) mean?
- The input
xis a ratio (a number between -1 and 1). - The output
yis an angle.
When you see arcsin(1/2), you should think: "What angle, specifically between –π/2 and π/2, has a sine of 1/2?" The only answer is π/6.
Here’s how the properties flip:
| Function | Domain | Range |
|---|---|---|
y = sin(x) (restricted) |
[–π/2, π/2] |
[–1, 1] |
y = arcsin(x) |
[–1, 1] |
[–π/2, π/2] |
Arccosine and Arctangent
We follow the exact same logic for cosine and tangent.
Arccosine (arccos or cos⁻¹)
The cosine function y = cos(x) also fails the Horizontal Line Test. If we used the same [–π/2, π/2] restriction, we'd only get positive output values, which isn't good enough. To capture every possible output from -1 to 1 exactly once, we restrict the domain of cosine to [0, π].
So, for y = arccos(x):
- The input
xis a ratio between -1 and 1. - The output
yis an angle between0andπ.
| Function | Domain | Range |
|---|---|---|
y = cos(x) (restricted) |
[0, π] |
[–1, 1] |
y = arccos(x) |
[–1, 1] |
[0, π] |
When you see arccos(-1/2), you ask: "What angle, specifically between 0 and π, has a cosine of -1/2?" The answer is 2π/3.
Arctangent (arctan or tan⁻¹)
The tangent function y = tan(x) has vertical asymptotes. A single branch of the tangent graph, between x = –π/2 and x = π/2, covers all possible output values from -∞ to +∞. So we restrict the domain to the open interval (–π/2, π/2).
For y = arctan(x):
- The input
xcan be any real number. - The output
yis an angle between–π/2andπ/2(but not including the endpoints).
| Function | Domain | Range |
|---|---|---|
y = tan(x) (restricted) |
(–π/2, π/2) |
(–∞, ∞) |
y = arctan(x) |
(–∞, ∞) |
(–π/2, π/2) |
Think of it like a vending machine. sin(π/6) is like pressing button C4 and getting a soda. arcsin(0.5) is like finding a soda and asking, "Which button did this come from?" The machine is programmed to only give you one answer: C4. Not the other buttons that also give soda. For inverse trig functions, that single answer always comes from the restricted range.
Worked examples
Let's walk through a few problems together. The key is to always ask yourself the right question, keeping the restricted range in mind.
Example 1: Evaluating arcsin(√3 / 2)
Problem: Find the exact value of arcsin(√3 / 2).
Step 1: Translate the question.
The expression arcsin(√3 / 2) is asking: "What angle, θ, has a sine of √3 / 2?"
Step 2: Recall the restricted range for arcsin.
This is the most important step. The output of an arcsin function must be in the interval [–π/2, π/2]. This corresponds to Quadrant I and Quadrant IV on the unit circle.
Step 3: Identify the angle from the unit circle.
We know from the unit circle that sin(θ) = √3 / 2 at two common angles: θ = π/3 and θ = 2π/3.
Step 4: Select the angle that is in the correct range.
Now we check our two candidates against the required range of [–π/2, π/2].
- Is
π/3in the range? Yes, it is. - Is
2π/3in the range? No, it's larger thanπ/2.
So, the only valid answer is π/3.
Final Answer: arcsin(√3 / 2) = π/3.
Example 2: Evaluating arccos(-√2 / 2)
Problem: Find the exact value of arccos(-√2 / 2).
Step 1: Translate the question.
This means: "What angle, θ, has a cosine of -√2 / 2?"
Step 2: Recall the restricted range for arccos.
The output of an arccos function must be in the interval [0, π]. This corresponds to Quadrant I and Quadrant II.
This is a common trap! Students often want to use the same range as arcsin, but for arccosine, the range is different. It doesn't include any negative angles.
Step 3: Identify the angle from the unit circle.
We're looking for an angle where the x-coordinate on the unit circle is -√2 / 2. This happens in Quadrants II and III. The angles are θ = 3π/4 and θ = 5π/4.
Step 4: Select the angle that is in the correct range.
Let's check our candidates against the required range of [0, π].
- Is
3π/4in the range? Yes, it is. - Is
5π/4in the range? No, it's larger thanπ.
The only correct choice is 3π/4.
Final Answer: arccos(-√2 / 2) = 3π/4.
Try it yourself
Time to try a couple on your own. Remember the process: translate the question, check the range, then find the angle.
-
Find the exact value of
arccos(0).- Hint: The question is, "What angle, between 0 and π, has a cosine of 0?" Think about the coordinates
(x, y)on the unit circle. Cosine corresponds to the x-coordinate. Where is the x-coordinate zero?
- Hint: The question is, "What angle, between 0 and π, has a cosine of 0?" Think about the coordinates
-
Find the exact value of
arctan(-1).- Hint: This is asking, "What angle, between -π/2 and π/2, has a tangent of -1?" Remember that
tan(θ) = sin(θ)/cos(θ). For the tangent to be -1, the sine and cosine must be opposites. Which angle in Quadrant IV fits this description?
- Hint: This is asking, "What angle, between -π/2 and π/2, has a tangent of -1?" Remember that
Practice — 8 questions
In simple terms, inverse trigonometric functions let you find an angle when all you know is the ratio of a triangle's sides, like finding the exact tilt of a ramp from its height and length.
- 3.9.A: Construct analytical and graphical representations of the inverse of the sine, cosine, and tangent functions over a restricted domain.
- 3.9.A.1
- For inverse trigonometric functions, the input and output values are switched from their corresponding trigonometric functions, so the output value of an inverse trigonometric function is often interpreted as an angle measure and the input is a value in the range of the corresponding trigonometric function.
- 3.9.A.2
- The inverse trigonometric functions are called arcsine, arccosine, and arctangent (also represented as sin⁻¹x, cos⁻¹x, and tan⁻¹x). Because the corresponding trigonometric functions are periodic, they are only invertible if they have restricted domains.
- 3.9.A.3
- In order to define their respective inverse functions, the domain of the sine function is restricted to [–π/2, π/2], the cosine function to [0, π], and the tangent function to (–π/2, π/2).
flowchart TD
A[Start with y = sin(x)] --> B{Is it one-to-one?};
B -- No, fails Horizontal Line Test --> C[Restrict domain to [-pi/2, pi/2]];
C --> D[Now the function is one-to-one];
D --> E[Swap x and y to find the inverse];
E --> F[x = sin(y)];
F --> G[Solve for y: y = arcsin(x)];
G --> H[Final Inverse Function];
H --> I[Domain: [-1, 1]];
H --> J[Range: [-pi/2, pi/2]];
Read what Saavi narrates
Hey everyone, it's Saavi. Let's talk about working backward with trigonometry.
Imagine you're helping design a new skate park. You know a ramp needs to rise 8 feet vertically over a 15-foot horizontal run. You know the tangent of the angle is 8 over 15... but what's the angle itself? Regular trig functions take an angle and give you a ratio. We need to do the reverse.
That's where inverse trigonometric functions come in. Up to now, you've used an angle to find a ratio. Now, we'll start with a ratio and use it to find the one specific angle that produces it, within a very specific, carefully defined range.
Let's try one. Say we need to evaluate arcsin of one-half.
First, translate the question. This is asking: "What angle has a sine of one-half?"
But here's the critical part. We need the angle that is specifically between negative pi-over-2 and positive pi-over-2. That's the restricted range for arcsine.
So, we think about our unit circle. Where is the y-coordinate equal to one-half? That happens at pi-over-6 and at 5-pi-over-6.
Now we check which of those is in our required range. Pi-over-6 works. But 5-pi-over-6 is too big. So, our one and only answer is pi-over-6.
Now, one of the biggest mistakes I see every year is confusing the notation. When you see sine with a little negative one, as in sin-inverse-of-x, it is so tempting to think it means one divided by sine of x. It does not. That little negative one means "inverse function," not "reciprocal." One over sine of x is cosecant. Sin-inverse-of-x is arcsin of x. It's asking for an angle. To avoid this trap, I really recommend thinking "arcsin" every time you see that notation.
You've got this. The key is just remembering those restricted ranges and thinking of it as a puzzle: you have the answer, and you need to find the one right question that produced it. Keep practicing, and it will become second nature.
The `⁻¹` notation here means "inverse function," not a reciprocal exponent. `1/sin(x)` is the cosecant function, `csc(x)`, which is a completely different concept.
When you see `sin⁻¹(x)`, immediately think "arcsin." This helps break the mental habit of seeing the `-1` as an exponent. Remember, `arcsin(x)` asks for an angle, while `csc(x)` gives you a ratio.
While `sin(11π/6)` does equal `-1/2`, the range of `arcsin` is strictly `[–π/2, π/2]`. The function is defined to only return one value.
Always use the coterminal angle that falls within the required range. For negative sine values, use the corresponding negative angle in Quadrant IV. So, `arcsin(-1/2)` must be `-π/6`.
The range of `arccos` is `[0, π]`. It never produces a negative angle. `cos(-π/3)` is `+1/2`, not `-1/2`.
Memorize the three distinct ranges. For `arccos` of a negative value, your answer must be a Quadrant II angle. The correct answer is `arccos(-1/2) = 2π/3`.
The inputs and outputs are swapped. The input to `arcsin` and `arccos` must be a ratio between -1 and 1. Since `π` is about 3.14, it's outside the domain of `arcsin`.
Look at the value inside the parentheses first. If it's for `arcsin` or `arccos` and is outside `[-1, 1]`, the expression is undefined. The input is a ratio; the output is the angle.