PDA

View Full Version : integral of arcsin x


agro
Feb22-04, 12:52 AM
I find it really hard to solve
\int\arcsin{x}\;dx
I tried using integration by part with these values:

\begin{array}{rl}
u=\arcsin{x},&dv=dx\\
du=\frac{1}{\sqrt{1-x^2}}\;dx,&v=x\\
\end{array}

Which yields

\begin{equationarray}
\int\arcsin{x}\;dx&=&x\arcsin{x}-\int\frac{x}{\sqrt{1-x^2}}\;dx
\end{equationarray}

After that I tried various substitutions/integration by parts but didn't get any simpler form... Can anyone help my desperate self :) (maybe hints...)

Thanks a lot beforehand...

Hurkyl
Feb22-04, 01:02 AM
What substitutions did you try? There are at least two substitutions that work well here; one just screams "try me", and another is one of the techniques I think you've learned by now that is specifically for solving integrals that look like that...

cookiemonster
Feb22-04, 01:03 AM
Try the substitution 1 - x^2 .

Edit: Heh, guess I gave it away.

cookiemonster

faust9
Feb22-04, 03:10 AM
Given: y=\arcsin x

Take the sin of both sides of the equation yielding: \sin y=x

Use implicit differentiation: (\sin y)\frac{d}{dx}=(x)\frac{d}{dx}

to get: (\cos y)dy=dx

Stick the above into this: \int\arcsin{x}\;dx

Substitute y, and (sin y)dy into your original equation: \int y\cos y\;dy

Integrate by parts: y\sin y+\cos y+C

Substitute x and arcsin x back into equation and replace cos y with the sqrt of 1- sin^2 y: x\arcsin x+\sqrt{1-sin^2y}+C

Substitute x for sin y: x\arcsin x+\sqrt{1-x^2}+C

Thus: \int\arcsin{x}\;dx=x\arcsin x+\sqrt{1-x^2}+C

You do pretty much the same as above for the other inverse trig functions. Hope this helped.

You where going down the right path the way you chose to do it also. if you let u=1-x^2 then du would equal? Which could then be substituted back in to get the same answer as above...

agro
Feb22-04, 07:22 AM
Ouch, I should've been able to see that (the u = 1-x^2 substitution) :). Btw your method is very interesting faust9.

Thanks all :)