Compositions with Trig Functions

Two Ways to Combine Them

Once you have both a trig function and its inverse, you can chain them together. The order matters, and the two orders behave very differently.

  • trig of inverse: like sin(arcsinx)\sin(\arcsin x)
  • inverse of trig: like arcsin(sinθ)\arcsin(\sin\theta)

One of these always cancels cleanly. The other has a trap in it.


The Clean Direction: trig of inverse

Feed a value into an inverse, then into the matching trig function, and you get the value straight back:

sin(arcsinx)=xcos(arccosx)=xtan(arctanx)=x\sin(\arcsin x) = x \qquad \cos(\arccos x) = x \qquad \tan(\arctan x) = x

The inverse hands the outer function exactly the angle it needs, so nothing is lost.

The only rule is that xx must be a legal input for the inverse. sin(arcsin2)\sin(\arcsin 2) is meaningless, because arcsin2\arcsin 2 does not exist (22 is outside [1,1][-1, 1]).


The Trap: inverse of trig

Now the other order. You might expect arcsin(sinθ)=θ\arcsin(\sin\theta) = \theta always. It does not.

The gray point is the real angle θ\theta, sweeping all the way around. The green point is arcsin(sinθ)\arcsin(\sin\theta), which can only ever answer with an angle in the right half of the circle. When θ\theta wanders into the left half, the answer folds back to the angle there with the same height.

arcsin(sinθ)=θ\arcsin(\sin\theta) = \theta only when θ\theta is already in [90°,90°][-90°, 90°].


Seeing the Fold in Numbers

Take θ=150°\theta = 150°.

  • sin150°=12\sin 150° = \frac{1}{2}
  • arcsin12=30°\arcsin\frac{1}{2} = 30°

So arcsin(sin150°)=30°\arcsin(\sin 150°) = 30°, not 150°150°.

Both 30°30° and 150°150° have a sine of 12\frac{1}{2}, but only 30°30° lives in the principal range. The inverse always returns the principal angle that shares the value, which equals θ\theta only when θ\theta was already in range.


Mixed Compositions: a Right Triangle

The most useful case mixes different functions, like sin(arccosx)\sin(\arccos x). There is no direct cancel here, but a right triangle turns it into simple algebra.

Let θ=arccosx\theta = \arccos x, so cosθ=x\cos\theta = x. Since cosine is adjacenthypotenuse\frac{\text{adjacent}}{\text{hypotenuse}}, build a triangle with adjacent =x= x and hypotenuse =1= 1. The Pythagorean theorem fills in the last side:

opposite=1x2\text{opposite} = \sqrt{1 - x^2}

Now just read off the sine:

sin(arccosx)=1x2\sin(\arccos x) = \sqrt{1 - x^2}


The Common Ones

The same triangle trick gives a whole family of clean algebraic results:

CompositionEquals
sin(arccosx)\sin(\arccos x)1x2\sqrt{1 - x^2}
cos(arcsinx)\cos(\arcsin x)1x2\sqrt{1 - x^2}
tan(arcsinx)\tan(\arcsin x)x1x2\dfrac{x}{\sqrt{1 - x^2}}
sec(arctanx)\sec(\arctan x)1+x2\sqrt{1 + x^2}

These matter because they replace a tangled trig expression with a plain formula. That swap is used constantly in calculus.


Example

Find cos(arcsin35)\cos(\arcsin\frac{3}{5}).

Let θ=arcsin35\theta = \arcsin\frac{3}{5}, so sinθ=35=oppositehypotenuse\sin\theta = \frac{3}{5} = \frac{\text{opposite}}{\text{hypotenuse}}.

That is the famous 33-44-55 triangle: opposite 33, hypotenuse 55, so adjacent =4= 4.

cosθ=adjacenthypotenuse=45\cos\theta = \frac{\text{adjacent}}{\text{hypotenuse}} = \frac{4}{5}

So cos(arcsin35)=45\cos(\arcsin\frac{3}{5}) = \frac{4}{5}.