Quick Answer

ASIN Function

Returns the angle (in radians) whose sine is the supplied number.

✓ Excel✓ Google SheetsExcel All versions

Syntax

ASIN
(number)

Parameters

ParameterDescriptionRequired
numberThe sine of the angle you want, which must be a real number between -1 and 1 inclusive.Required

Basic Example

Find the angle whose sine is 1

=ASIN(1)
Result1.570796327

The arcsine of 1 is π/2 radians (90°), the angle whose sine equals 1.

Advanced Examples

Example 1: Convert the result to degrees

Need the angle in degrees.

Wrap ASIN in DEGREES.

=DEGREES(ASIN(0.5))
Result: 30
ASIN(0.5) returns π/6 radians (about 0.524), and DEGREES converts that to 30°.

Example 2: Angle from a sine ratio

Given opposite/hypotenuse = 0.7071.

Use the ratio directly.

=DEGREES(ASIN(0.707106781))
Result: 45
ASIN(0.7071) is the angle whose sine is 0.7071, which is 45°.

How ASIN Works

ASIN is the inverse of SIN. For an input x in [-1, 1] it returns the unique angle θ in [-π/2, π/2] (radians) such that sin(θ) = x.

1
Pick the cell
Select the cell where you want the angle.
2
Enter the formula
Type =ASIN(number) where number is between -1 and 1.
3
Press Enter
The angle in radians appears; use DEGREES for degrees.

Important Notes & Limitations

  • The argument must be between -1 and 1; otherwise the function returns #NUM!.

  • The result is in radians; apply DEGREES for degree output.

  • ASIN returns only the principal value, limited to the [-π/2, π/2] range.

Common Errors & Fixes

#NUM!The argument is outside the -1 to 1 range.

Fix: Provide a valid sine value between -1 and 1.

#VALUE!The argument is non-numeric text.

Fix: Supply a numeric value or a numeric cell reference.

Download Practice File

Practice ASIN with Real Data

Download a sample CSV file with pre-populated data and practice exercises for the ASIN function. Works in both Excel and Google Sheets.

Works in Google SheetsCompatible with ExcelIncludes exercises

File format: CSV (comma-separated values) - opens in Excel, Google Sheets, and all spreadsheet apps

Frequently Asked Questions

Why is my ASIN result negative?
Negative inputs produce negative angles because ASIN's range is -π/2 to π/2.
Does ASIN return degrees?
No, it returns radians. Use DEGREES or multiply by 180/PI().
How is ASIN different from SIN?
SIN gives the sine of an angle; ASIN reverses it, returning the angle from a sine value.