Compute inverse sine for input in [−1, 1] with result in degrees or radians.
Common values
| x | arcsin(x) in degrees | arcsin(x) in radians |
|---|---|---|
| −1 | −90° | −π/2 |
| −√3/2 ≈ −0.8660 | −60° | −π/3 |
| −√2/2 ≈ −0.7071 | −45° | −π/4 |
| −0.5 | −30° | −π/6 |
| 0 | 0° | 0 |
| 0.5 | 30° | π/6 |
| √2/2 ≈ 0.7071 | 45° | π/4 |
| √3/2 ≈ 0.8660 | 60° | π/3 |
| 1 | 90° | π/2 |
Definition and properties
The arcsine function, written arcsin(x) or sin⁻¹(x), is the inverse of the sine function. Given a value x in the interval [−1, 1], arcsin(x) returns the unique angle θ in [−π/2, π/2] (equivalently [−90°, 90°]) such that sin(θ) = x. Because the sine function is periodic and repeats every 360°, the inverse needs a restricted range to produce a single-valued output — that restricted range is called the principal value. Arcsine is an odd function: arcsin(−x) = −arcsin(x). Its complementary identity arcsin(x) + arccos(x) = π/2 holds for all x in the domain. Derivative: d/dx arcsin(x) = 1/√(1 − x²).
Frequently asked questions
What is arcsin and how does it differ from sin?
Sine takes an angle and returns a ratio between −1 and 1 (the opposite side over the hypotenuse in a right triangle). Arcsine does the opposite: you give it a ratio, and it returns the angle. For example, sin(30°) = 0.5, so arcsin(0.5) = 30°. In calculator notation arcsin is often labeled sin⁻¹ — this is not an exponent, it denotes the inverse function.
Why must x be between −1 and 1?
The sine of any real angle is always between −1 and 1 inclusive — that is its entire range. So only values in [−1, 1] correspond to a real angle. If x is outside this interval (for example x = 2 or x = −1.5), there is no real angle whose sine equals x, and the answer is undefined in real numbers. To compute arcsin for |x| > 1 you need complex numbers, which is outside the scope of this calculator.
Why does arcsin return only values between −90° and 90°?
Because sin(θ) repeats every 360° and is symmetric, infinitely many angles share the same sine value. To make arcsin a proper function (one output per input), mathematicians restrict its output to the principal branch [−π/2, π/2], i.e. [−90°, 90°]. If you need every angle whose sine equals x, use θ = arcsin(x) + 360°·k and θ = 180° − arcsin(x) + 360°·k for integer k.
What is arcsin used for in practice?
Arcsine shows up whenever you know a ratio and need the angle. Common uses:
- Right-triangle trigonometry: angle = arcsin(opposite / hypotenuse). A ramp 3 m long rising 1.5 m has angle arcsin(1.5/3) = 30°.
- Physics: Snell's law for refraction, angle of incidence problems, projectile launch angles.
- Surveying and navigation: elevation, bearing, and latitude calculations.
- Engineering and signal processing: phase angles in AC circuits and oscillations.
- Statistics: the arcsine variance-stabilizing transformation for proportions.
How do I convert the result between degrees and radians?
Use the toggle above to switch instantly. Manually: radians = degrees × π/180, and degrees = radians × 180/π. Quick reference: 180° = π rad ≈ 3.14159, 90° = π/2 rad ≈ 1.57080, 60° = π/3 rad ≈ 1.04720, 45° = π/4 rad ≈ 0.78540, 30° = π/6 rad ≈ 0.52360. Radians are the standard in calculus, physics, and programming (JavaScript's Math.asin returns radians).
What is the relation between arcsin and arccos?
They are complementary: arcsin(x) + arccos(x) = π/2 = 90° for every x in [−1, 1]. So if arcsin(0.5) = 30°, then arccos(0.5) = 60°. This mirrors the fact that in a right triangle the two non-right angles sum to 90°. Arcsine is an odd function (symmetric about the origin), while arccosine is neither odd nor even.
Inverse sine (arcsin, sin⁻¹) returns the angle whose sine equals a given value. Enter any real number x between −1 and 1 and this tool returns arcsin(x) to eight decimal places, with a one-click toggle between degrees and radians. Quick presets cover the standard reference values: arcsin(0) = 0, arcsin(0.5) = 30° (π/6), arcsin(√2/2) ≈ 0.7071 gives 45° (π/4), arcsin(√3/2) ≈ 0.8660 gives 60° (π/3), arcsin(1) = 90° (π/2), arcsin(−1) = −90° (−π/2). Inputs outside [−1, 1] return Undefined because no real angle has a sine above 1 or below −1. The principal value range is [−90°, 90°] or [−π/2, π/2]. Useful for right-triangle geometry, Snell’s law, projectile angles, surveying, and any situation where a ratio is known and the angle is needed.