
The Excel ASIN function returns the arcsin of a number.
Get the angle of a triangle.
Angle in Radians
=ASIN (number)
ARCSIN expects an input between -1 and 1, where the input is a ratio of the opposite-side over the hypotenuse of a right triangle.
θ = ASIN(opposite/adjacent) // Where θ is the angle
ARCSIN( ratio) is the inverse of SIN(angle)
= angle = ARCSIN( SIN(angle))
To convert from radians to degrees multiply by 180/pi() or use the DEGREES function.
= angle * 180/PI()
= DEGREES( angle)

The Excel ASIN function returns the arcsin of a number.
Get the angle of a triangle.
Angle in Radians
=ASIN (number)
ARCSIN expects an input between -1 and 1, where the input is a ratio of the opposite-side over the hypotenuse of a right triangle.
θ = ASIN(opposite/adjacent) // Where θ is the angle
ARCSIN( ratio) is the inverse of SIN(angle)
= angle = ARCSIN( SIN(angle))
To convert from radians to degrees multiply by 180/pi() or use the DEGREES function.
= angle * 180/PI()
= DEGREES( angle)