Article — Angle Converter
Angle converter: degrees, radians, gradians, and beyond
An angle converter switches a value between degrees, radians, gradians, arcminutes, arcseconds, turns, and milliradians. All seven units describe the same geometric quantity (rotation about a point), just with different scales. The radian (SI-coherent) is the natural reference; 360° = 2π rad = 400 gon = 1 turn.
Most conversion errors in trigonometry come from mixing up these units. A calculator left in radian mode that receives a degree input gives an answer roughly 57 times too large. Knowing which unit a problem uses and how to flip between them is one of the most useful skills in geometry, physics, and engineering software.
What an angle converter does
The converter takes a single angle value, treats it as a quantity in whichever unit you choose, and reports the equivalent value in every other unit. Internally it converts the input to radians, then expresses radians back in each target unit. Because all factors are exact functions of π or rational fractions, there is no measurement error: precision losses come only from rounding the displayed digits.
Mathematically, angles are dimensionless: the radian is defined as the ratio of arc length to radius. That makes the SI a special case where the unit is sometimes omitted entirely (sin x without "rad" written is the standard convention). Other angle units survive for practical or historical reasons.
The 360-degree circle came from Babylonian astronomy around 1500 BCE. The number 360 was chosen because it has 24 divisors, making mental fractions easy. The radian, by contrast, only got a formal name in 1873 when James Thomson named it at Queen's University Belfast.
History of angle units
Babylonian astronomers split the circle into 360 parts in roughly the second millennium BCE. The choice was practical: 360 divides cleanly by 2, 3, 4, 5, 6, 8, 9, 10, 12, and more. Hipparchus and Ptolemy later inherited the system, which then carried into Arab, European, and modern astronomy. Degrees became the universal language of geometry.
Radians emerged from calculus. By the early 18th century, Roger Cotes had noticed that derivatives and series expansions of sin and cos only work cleanly when angles are measured in arc-length-to-radius ratios. The name "radian" was coined in 1873. The SI formally accepted the radian in 1960. Gradians appeared in the French Revolutionary metric reform of 1795 as a decimal alternative, but never took over.
90° = π/2 rad ≈ 1.570890° = 100 gradians (gon)90° = 5,400 arcminutes90° = 324,000 arcseconds90° = 0.25 turn90° = 1,570.8 mradConverting degrees to radians
Multiply degrees by π/180 to get radians. Multiply radians by 180/π to go back. The factor π/180 is approximately 0.01745329. Most common conversions use clean fractions: 30° = π/6, 45° = π/4, 60° = π/3, 90° = π/2, 180° = π. Memorising these handful of fractions covers the bulk of trigonometry problems.
To convert gradians to radians, multiply by π/200. For arcminutes to radians, multiply by π/10,800. For arcseconds to radians, multiply by π/648,000. Each smaller unit just inserts another factor of 60 (since 1° = 60′ = 3,600″). The arithmetic chains together: 1 arcsecond is exactly (π/180)/3,600 radians.
Why radians are the natural angle unit
Radians are the only angle unit for which standard calculus identities work without correction factors. The derivative of sin(x) equals cos(x), and the Taylor series for sine begins x - x³/6 +..., only when x is in radians. In degree-mode calculus, every derivative picks up an extra π/180 factor that makes the algebra messy.
The radian also gives the cleanest formula for arc length and angular velocity. Arc length s equals radius r times angle θ in radians (s = rθ). Angular velocity ω in radians per second multiplies by radius to give linear velocity. Plugging degrees into these formulas requires a conversion every time. This is why physics, engineering, and programming default to radians.
- 360 degrees = 2π radians = 1 full turn
- 1 degree ≈ 0.01745 rad
- 1 radian ≈ 57.2958 degrees
- 1 gradian (gon) = 0.9 degrees
- 1 arcminute = 1/60 degree = 60 arcseconds
- 1 milliradian ≈ 0.0573 degrees
- 1 turn = 360° = 400 gon = 2π rad
Arcminutes and arcseconds in precision work
The arcminute and arcsecond bring degrees down to higher precision through sexagesimal subdivision. One degree splits into 60 arcminutes (60′) and each arcminute into 60 arcseconds (60″). The notation comes from Babylonian astronomy via Greek and Arab translation.
Astronomy uses arcminutes and arcseconds for star positions, planetary diameters, and telescope resolutions. The Hubble Space Telescope has a pointing accuracy of about 0.007 arcseconds. The Moon's apparent diameter is about 31 arcminutes from Earth. GPS coordinates use degrees with decimal arcminutes for latitude and longitude. Eye-doctor charts measure visual acuity in arcminutes: the 20/20 line is letters subtending 1 arcminute at 20 feet.
Angle units compared by precision
The seven units fall into rough precision bands. Turns and degrees are coarse, suitable for everyday geometry, weather, and sports. Radians and gradians sit in the middle, useful for math and surveying. Arcminutes, arcseconds, and milliradians are fine-grained, used where small angles matter.
Milliradians are popular in optics and ballistics because 1 mrad subtends exactly 1 metre at 1 km distance. This makes mental scaling of scope adjustments trivial: a target 200 m away requires twice the mrad correction of a target at 400 m for the same physical offset.
Common angle-conversion mistakes
Three errors recur. First, the DEG/RAD mode mistake on calculators. Inputting sin(90) in radian mode gives 0.894 instead of 1.000. Always confirm the mode before trusting trig results. Second, confusing prime and double-prime notations. A position quoted as "12° 30′ 15″" is degrees-minutes-seconds, and the seconds (″) are 1/3,600 of a degree, not 1/60. Third, mixing radians and degrees in the same calculation without a unit conversion. Adding "π" to "45°" gives nonsense unless you first convert one to the other's unit.
For programming, JavaScript and Python trig functions all expect radians by default. Multiply degree inputs by Math.PI / 180 (JavaScript) or math.radians() (Python) before calling sin, cos, tan.
Scientific calculators have a tiny DEG/RAD/GRAD indicator. If the mode does not match your angle unit, every trigonometric result is wrong by a factor of about 57 (rad vs deg) or 1.111 (deg vs gon). Check the mode before solving the problem; it is the single most common source of errors in trigonometry.