Skip to content

Guide

Degrees vs radians: when to use each angle unit in math

A degree is 1/360 of a full turn; a radian is defined by arc length equal to the radius — about 57.3°. Most math and programming functions expect radians, most everyday tools expect degrees.

By Published

Degrees and radians measure the same thing — the amount of rotation between two rays — using two different reference points. A degree divides a full turn into 360 equal slices, a convention inherited from Babylonian sexagesimal astronomy. A radian instead ties the angle to geometry directly: it's the angle at the center of a circle subtended by an arc whose length equals the circle's radius. Both describe the same physical angle; they just count it differently.

The exact conversion

Because a full circle is 360° and also exactly 2π radians, one radian equals 180/π degrees — approximately 57.2957795131 degrees. Going the other way, one degree equals π/180 radians, approximately 0.0174532925 radians.

90° × (π / 180) = 1.5708 rad
1 rad × (180 / π) = 57.2958°

Where each unit is actually used

Degrees dominate everyday and applied contexts: compass headings, latitude and longitude, construction and framing angles, protractors, and consumer-facing tools. Radians dominate mathematics, physics, and programming: calculus identities involving trigonometric functions are only clean in radians, and functions like Math.sin() in JavaScript or math.sin() in Python expect their argument in radians, not degrees.

DegreesRadiansCommon context
0°0 radReference / east on a compass
30°π/6 ≈ 0.5236 radCommon trig-table angle
45°π/4 ≈ 0.7854 radMiter cuts, isometric drawing
90°π/2 ≈ 1.5708 radRight angle
180°π ≈ 3.1416 radStraight line
360°2π ≈ 6.2832 radFull rotation

A common bug: mixing units in one formula

The single most common angle-related bug in code and spreadsheets is passing a degree value to a function that expects radians (or vice versa) — the calculation runs without error but returns a nonsensical result, since sin(90) in radians mode is very different from sin(90°). Spreadsheet functions like Excel's SIN() also expect radians, which is why Excel provides a separate RADIANS() helper function to convert a degree value first. When a trig result looks obviously wrong, checking whether the input unit matches what the function expects is the first thing worth verifying.

Frequently asked questions

How many radians is 360 degrees?
360 degrees equals exactly 2π radians, about 6.2832 rad. A half-turn (180°) is π radians, about 3.1416 rad, and a quarter-turn (90°) is π/2 radians, about 1.5708 rad.
Why do programming languages use radians instead of degrees?
Trigonometric functions in most languages and libraries (sin, cos, tan) are defined mathematically in terms of radians because the radian is the SI-coherent unit — it makes calculus identities like the derivative of sine equaling cosine hold without a conversion constant. Degrees would require carrying an extra scaling factor through every formula.
Do I need to convert to radians for everyday angle measurements?
No. Navigation headings, construction angles, latitude and longitude, and most consumer tools use degrees, and there's no practical reason to convert unless you're feeding the value into a formula, spreadsheet function, or programming API that expects radians.
What's the exact conversion factor between degrees and radians?
One radian equals exactly 180/π degrees, approximately 57.29577951 degrees. Equivalently, one degree equals exactly π/180 radians, approximately 0.01745329 rad.

Sources & references

Authoritative references cited by this piece. Verified by Buğra Sözeri on the dates shown and re-checked at every deploy.

Related

More guides on this topic

Published September 25, 2026