Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Arcsin(X) = Atn(X / Sqr(-X * X + 1))
Arccos(X) = Atn(-X / Sqr(-X * X + 1)) + 2 * Atn(1)
Public Function Pi() As Double
Pi = 4 * Atn(1#)
End Function
Public Function ArcSin(ByVal x As Double) As Double
ArcSin = Atn(x / Sqr(-x * x + 1))
End Function
Public Function ArcCos(ByVal x As Double) As Double
ArcCos = ArcSin(x) + Pi / 2
End Function