ASIN
Get the arcsine (inverse sine) of a number and return the angle in radians with ASIN.
Spreadsheet editor
Spreadsheet editor
Syntax
=ASIN(number)
Returns: Number Arguments
| Argument | Required | Description |
|---|---|---|
| number | Yes | The sine value for which you want the arcsine. Must be between -1 and 1. |
About
Use ASIN when you know a sine ratio and need the original angle. This comes up in physics problems, engineering calculations, and geometry tasks. For example, if a sensor reading gives you a sine value of 0.5, =ASIN(0.5) returns about 0.5236 radians (30 degrees). To see the result in degrees, wrap it with the DEGREES function.
For the inverse of other trig functions, use ACOS for cosine or ATAN for tangent. If you need the forward operation instead, SIN converts an angle to its sine value.
Examples
Boundary values from -1 to 1
Spreadsheet editor
Handling out-of-range inputs with IFERROR
Spreadsheet editor
Calculating roof pitch angles
Spreadsheet editor
Watch out for
Input outside the -1 to 1 range
ASIN(2) returns a #NUM! error because 2 is not a valid sine value. Sine values only exist between -1 and 1.
→ Check that your input falls within -1 to 1 before passing it to ASIN. If you are dividing two lengths to get a ratio, make sure the denominator is the longer side.
Forgetting the result is in radians
ASIN(0.5) returns 0.5236, which looks odd if you expected 30 degrees.
→ Wrap the formula with DEGREES to convert: =DEGREES(ASIN(0.5)) returns 30.
Confusing ASIN with ASINH
Using ASINH by mistake gives the inverse hyperbolic sine, which is a different calculation and accepts inputs outside -1 to 1.
→ Use ASIN for standard trigonometric arcsine. ASINH is the hyperbolic version, used in different engineering contexts.