2009-09-24, 12:20 AM
(This post was last modified: 2009-09-24, 01:05 AM by KajitiSouls.)
Russt Wrote:http://www.wolframalpha.com/input/?i=arcsin+2
Apparently sin(pi/2 +- i*ln(2+sqrt3)) = 2.
Where the heck did you get that from? o.O
This is the form I'm most familiar with... I'll see what I can dig up on it.
![[Image: arcsin2.gif]](http://img36.imageshack.us/img36/9383/arcsin2.gif)
First, we start with what the derivative of arcsin of x is.
Code:
y = arcsin(x)
sin(y) = x
y'cos(y) = 1 <---derivation step
y' = 1/cos(y)
y' = 1/cos(arcsin(x))
y' = 1/sqrt(1-x^2)
General integration formula:
arcsin(a*x) = ʃ(1/sqrt(1-a^2*x^2) * dx)Code:
ʃ(1/sqrt(1-a^2*x^2) * dx) = ʃ(1/(sqrt(1-a*x)*sqrt(1+a*x)))
Integration by partsOkay, now I'm not motivated anymore >_>

