ASIN() returns the arc sine (inverse sine) of a number in radians. The arc sine is the angle whose sine is the specified number. The input value must be between -1 and 1, inclusive. If the input is invalid (outside this range), the function returns zero.
ASIN(number)
ASIN() returns a numeric value in radians between -π/2 and π/2 (approximately -1.5708 to 1.5708)
ASIN(0) = 0
ASIN(SIN(1)) = 1
ASIN(SIN(PI())) = 0
ASIN(SIN(PI()/2)) = 1.5708 (π/2 radians)
ASIN(1) = 1.5708 (π/2 radians)
ASIN(-1) = -1.5708 (-π/2 radians)