Example 1
- x = 0.5
30.000000
What is arcsin(0.5)? School writes 30°. The calculator keeps six zeros.
Type an x from −1 to 1. Arcsin asks for the angle whose sine is x. arcsin(0.5) comes out 30.000000°. arcsin(1) = 90°. arcsin(0) = 0°.
The result is in degrees, not radians. x outside [−1, 1] has no real sine. This implementation then returns 0, not an error message.
Enter data and click Calculate.
Arcsine undoes sine. You want an angle θ such that sin θ = x. For x = 0.5 school writes 30°. The calculator calls Math.asin and multiplies by 180/π, so 0.5 gives 30.000000, leftover from π in six decimals.
The principal branch of arcsin runs from −90° to 90°. x = 1 gives 90°. x = 0 gives 0°. x = −0.5 gives −30°. A minus in x is an angle below the axis, not an error.
The field is x. It must sit in [−1, 1], because that is where a real sine lives. Typed 2 or −1.2 has no angle. The calculator does not leave a blank: it returns 0. That is the same zero as arcsin(0), so check the range before you trust a zero.
Arccosine takes the same x and returns an angle from 0° to 180°. Arctangent has no wall at ±1. Sine from an angle is on the neighbouring page, the other way.
The header units switch does not multiply anything here. 0.5 stays 30.000000 whatever the label says. This is an angle from a ratio, not a centimetre.
arcsin(0.5) = 30.000000°. arcsin(1) = 90°. arcsin(0) = 0°. arcsin(√2/2) is close to 45°. The inverse sine is in degrees, not radians.
θ° = Math.asin(x) × 180 / π, when −1 ≤ x ≤ 1; otherwise 0
Arcsin undoes sine. The result is in degrees. arcsin(0.5) = 30.000000°. arcsin(1) = 90°. x outside [−1, 1] returns 0.
30.000000
What is arcsin(0.5)? School writes 30°. The calculator keeps six zeros.
90
What is arcsin(1)? 90°. The largest angle on the principal branch.
0
What is arcsin(0)? 0°. Not the same zero as typed 2.
In a notebook, 30°. The result is 30.000000, because 180/π is not clean.
The angle whose sine is x. Written arcsin(x) or sin⁻¹(x), not 1/sin.
90° and 0°. The principal branch ends at ±90°.
A real sine never reaches 2. The calculator returns 0, not a blank. Check |x| ≤ 1.
No. The calculator multiplies by 180/π and returns degrees.
Yes, when |x| ≤ 1. arcsin(−0.5) = −30°. The minus is the turn.
Another angle from the same x. arccos(0.5) = 60°, not 30°.
On the sine card. Here 0.5 returns to 30.000000°.
Yes. 0.5 and 0,5 both give 30.000000.
That is how the branch is written: outside [−1, 1] it returns 0. Not a second formula, just this code.
The calculator computes the same formula as the definition below.
Page updated in 2026.