0

Sometimes when Integrating I end up with taking:

$$\sin \left(\tan ^{-1}\left(\frac{x}{2}\right)\right)$$, or other similar combinations however thats when I use the computer to extract:

$$\frac{x}{2 \sqrt{\frac{x^2}{4}+1}}$$

However, I want to find out how this is done and if there are any tricks I could use to evaluate similar expressions.

Git Gud
  • 31,356
ALEXANDER
  • 2,099

3 Answers3

5

Let $\theta=\tan^{-1}\left(\frac x2\right)$. So, $\tan\theta=\frac x2$. So, draw a right triangle with the opposite side labelled $x$ and the adjacent side labelled $2$. Applying the Pythagorean Theorem, will give that the hypoteneuse is $\sqrt{x^2+4}$. Since $\sin=\frac{\rm{opp}}{\rm{hyp}}$, you should have it.

1

In this particular case, for $-\dfrac{\pi}{2}< \theta < \dfrac{\pi}{2}$, $$ \tan^{-1}(\dfrac{x}{2}){}={}\theta\implies \tan\left(\theta\right){}={}\dfrac{x}{2}\,. $$

And, since,

$$ \tan(\theta){}={}\dfrac{\sin(\theta)}{\cos(\theta)}{}={}\dfrac{\sin(\theta)}{\sqrt{1-\sin^2\left(\theta\right)}}\,, $$ we must have $$ \sin\left(\tan^{-1}(\dfrac{x}{2})\right){}={}\sin\left(\theta\right){}={}\dfrac{x}{2\sqrt{1{}+{}\dfrac{x^2}{4}}}\,. $$

ki3i
  • 5,092
0

Here is how I would do it in an exam: Draw out a right triangle, and assign values to the three sides and to the angle.

Here, what's the angle of the right triangle? The inverse trig function will tell you. $\theta = \tan^{-1} (\frac x 2)$ should be the angle.

The inverse trig function $\tan^{-1}$ also tells you something about the triangle: what are the side lengths? We re-express the equation as $\tan \theta = \frac x 2 $. Since $\tan$ is the ratio of opposite/adjacent, we assign the opposite to be x and adjacent to be 2. Now we also see hypotenuse $r = \sqrt { x^2 + 2^2 } $.

Back to the original expression, $\sin \left( \tan^{-1} (\frac x 2) \right)$ is actually $\sin \theta$ in the triangle. And $\sin \theta$ is opposite / hypotenuse, and we know what the values are: $\sin \theta = \frac{x}{\sqrt{x^2 + 2^2}}$.

Factoring so that $2^2$ becomes $1$: $\sin \theta = \frac{x}{2 \sqrt{\frac{x^2}{4} + 1}}$

Here is my potato-quality diagram: https://www.dropbox.com/s/zzv8npbyk3h73tb/2015-01-01%2017.58.17.jpg?dl=0

Ming-Tang
  • 357