Free for students · Ad-free · WCAG 2.1 AA Compliant · Accessibility

Inverse Trigonometric Functions

Lesson ~11 min read 8 MCQs

In simple terms: 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.

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.

A right triangle showing opposite, adjacent, and hypotenuse, with angle theta.

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]];
A flowchart showing the process to create the arcsin function. It begins with the sine function, notes it fails the Horizontal Line Test, and shows the step of restricting the domain to make it one-to-one. It then illustrates swapping x and y to derive the inverse function, y = arcsin(x), and lists its final domain and range.

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.

The full sine wave fails the Horizontal Line Test, showing it's not one-to-one.

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?

  1. It's one-to-one on this interval.
  2. It covers every possible output value of sine, from -1 to 1.
  3. 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).

The restricted sine function and its inverse, arcsine, reflected over y=x.

So what does y = arcsin(x) mean?

  • The input x is a ratio (a number between -1 and 1).
  • The output y is 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 x is a ratio between -1 and 1.
  • The output y is an angle between 0 and π.
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 x can be any real number.
  • The output y is an angle between –π/2 and π/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 π/3 in the range? Yes, it is.
  • Is 2π/3 in 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π/4 in the range? Yes, it is.
  • Is 5π/4 in the range? No, it's larger than π.

The only correct choice is 3π/4.

Final Answer: arccos(-√2 / 2) = 3π/4.

The restricted domain for y = cos(x) and its inverse, arccos(x).

Try it yourself

Time to try a couple on your own. Remember the process: translate the question, check the range, then find the angle.

  1. 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?
  2. 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?
The restricted domain for y = tan(x) and its inverse, arctan(x).