ID EN
#Trigonometry

ASIN

Excel Functions

Return the inverse sine of a value in radians.

Syntax

EXCEL
=ASIN(number)

Arguments

Parameter Description
number The value to get the inverse sine of. The number must be between -1 and 1 inclusive.

Return Value

Angle in Radians

Details

The ASIN function, also called arc-sine, returns the inverse sine of a value. The input number must be between -1 and 1, inclusive. Geometrically, given the ratio of a triangle's opposite side over its hypotenuse, the function returns the angle of the triangle. For example, given a ratio of 0.5 the function returns the angle of 0.524 radians. To convert the result from radians to degrees, multiply the result by 180/PI() or use the DEGREES function. For example, to convert the result of ASIN(0.5) to degrees, you can use either formula below: The graph of ASIN visualizes the output of the function from -1 to 1. ASIN is the inverse of SIN. However, because SIN is a periodic function, the output of ASIN is limited to the range from -π/2 to π/2. Graph courtesy of wumbo.net

Examples

Example 1

The ASIN function, also called arc-sine, returns the inverse sine of a value. The input number must be between -1 and 1, inclusive. Geometrically, giv

EXCEL
=ASIN(0.5) // Returns 0.524 radians
Convert Result to Degrees

To convert the result from radians to degrees, multiply the result by 180/PI() or use the DEGREES function. For example, to convert the result of ASIN

EXCEL
=ASIN(0.5)*180/PI() // Returns 30 degrees
=DEGREES(ASIN(0.5)) // Returns 30 degrees

See Also

SIN ACOS ATAN