Skip to content
MasterMath

Inverse Trig Calculator

Find the angle from its sine, cosine or tangent — and see the second angle that shares the same ratio, which calculators never show you.

The angle is

—

The angle is—
In radians—
Another angle with the same ratio—
Range of the function—

How this was worked out

    The formula

    θ = arcsin(x), arccos(x) or arctan(x)

    Where it comes from

    The inverse functions undo the trigonometric ones, but they cannot undo them completely: infinitely many angles share the same sine, so each inverse is restricted to a range where it returns exactly one answer. That restriction is a convention, not a property of the maths.

    How to work it out by hand

    1. Check the value is in range: sine and cosine only accept −1 to 1
    2. Apply the inverse function
    3. The result is the principal value, in the function's own range
    4. Add 360° repeatedly, or use the symmetry, to get the others

    What is worth knowing

    The restricted range is where most mistakes come from. Arcsine returns −90° to 90°, arccosine 0° to 180°, and arctangent −90° to 90°. So if you know the sine is 0.5, your calculator says 30° — but 150° also has a sine of 0.5, and in a triangle problem it may well be the answer you want. This is exactly the ambiguous case in the law of sines. Arctangent has a related trap: it cannot tell which quadrant you are in, which is why programming languages provide atan2 with two arguments instead of one.

    Frequently asked questions

    Why does my calculator give only one angle?

    Because the inverse functions are restricted to a range where they return a single value. Other angles share the same ratio.

    What is the range of each function?

    Arcsine and arctangent return −90° to 90°; arccosine returns 0° to 180°.

    Why does arcsin(2) give an error?

    Because no angle has a sine of 2. Sine and cosine never leave the range −1 to 1.

    What is atan2 for?

    It takes the two coordinates separately, so it can work out the correct quadrant. Plain arctangent cannot.