How this instrument works
Inverse cosine, written acos(x) or cos⁻¹(x), answers 'which angle has a cosine of x?' It reverses ordinary cosine, and since plain cosine never outputs anything outside −1 to 1, inverse cosine is only defined for inputs within that same band — anything further out asks for an angle that doesn't exist.
The convention here differs from inverse sine's in one important way: inverse cosine's principal value range runs from 0° to 180°, not the −90°-to-90° window inverse sine uses. This choice keeps acos well-defined and single-valued across a full half-turn, matching the range cosine itself sweeps through as an angle runs from 0° to 180°.
A useful shortcut worth knowing: asin(x) and acos(x) always sum to exactly 90° for the same input x, since sine and cosine are complementary — sin(θ) = cos(90°−θ). Knowing one inverse trig value at a given input immediately gives the other by simple subtraction, without a second lookup.
- Enter a value between −1 and 1 into the x field.
- Read acos(x): the sheet returns the corresponding angle, between 0° and 180°.
- Values outside −1 to 1 have no real answer and will be flagged, since no angle's cosine ever reaches beyond that range.
Worked example — acos(0.6)
acos(0.6) works out to approximately 53.13° — a different angle than asin(0.6) gives (roughly 36.87°), confirming sine and cosine trace distinct paths even for an identical starting ratio. Checking: cos(53.13°) does return to 0.6.
acos(1) reaches exactly 0°, the starting reference point where cosine itself equals 1. And acos(0) lands on exactly 90°, the halfway point of cosine's principal-value range — beyond that, cosine has already turned negative and continues toward −1 at 180°.
Questions
What does inverse cosine mean?
It answers 'which angle produces this cosine value?' — the reverse of ordinary cosine. acos(x) = θ means cos(θ) = x, restricted to a single well-defined angle between 0° and 180°.
Why is the input restricted to between −1 and 1?
Because the underlying function can never output a value outside that range — its full range is bounded between −1 and 1. There's no real angle whose cosine equals, say, 2, since that ratio never reaches that far.
Why does inverse cosine return a different angle range than inverse sine?
Inverse cosine's principal value runs 0° to 180°, while inverse sine's runs −90° to 90° — different conventions chosen so each function stays single-valued across the full range its underlying trig function actually sweeps through.
Is there a shortcut between inverse sine and inverse cosine?
Yes — asin(x) and acos(x) always sum to exactly 90° for the same x, since sine and cosine are complementary functions. Knowing one immediately gives the other through simple subtraction.
Where does inverse cosine get used practically?
Anywhere the adjacent-over-hypotenuse ratio (the CAH step in SOH-CAH-TOA) is known but the angle itself isn't — recovering that angle from a right triangle's sides, or, more generally, finding the angle between two vectors from their dot product, both lean on this function directly.