trigonometry

Inverse Trigonometric Functions

Inverse trig functions (arcsin, arccos, arctan) recover the angle from a trig ratio. arcsin(y) = x means sin(x) = y, with restricted output range.

Inverse trigonometric functions recover the angle from a trig ratio. The three primary ones:

  • arcsin(y)=x\arcsin(y) = x means sin(x)=y\sin(x) = y, with x[π/2,π/2]x \in [-\pi/2, \pi/2].
  • arccos(y)=x\arccos(y) = x means cos(x)=y\cos(x) = y, with x[0,π]x \in [0, \pi].
  • arctan(y)=x\arctan(y) = x means tan(x)=y\tan(x) = y, with x(π/2,π/2)x \in (-\pi/2, \pi/2).

The restricted output range is necessary because sin\sin, cos\cos, tan\tan are not one-to-one — many angles share the same trig ratio. By restricting the codomain, we force a unique inverse.

Notation: sin1(x)\sin^{-1}(x) is the same as arcsin(x)\arcsin(x) — but not the same as 1/sin(x)1/\sin(x) (which is cscx\csc x). This notational ambiguity is a common student mistake.

Inverse trig functions appear when solving triangle problems (find the angle when sides are known), in calculus (their derivatives are tidy: ddxarctanx=11+x2\frac{d}{dx}\arctan x = \frac{1}{1+x^2}), and in physics (computing angles from coordinates via arctan2\arctan2).

Related resources