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 Buğra SözeriPublished
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 rad1 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.
| Degrees | Radians | Common context |
|---|---|---|
| 0° | 0 rad | Reference / east on a compass |
| 30° | π/6 ≈ 0.5236 rad | Common trig-table angle |
| 45° | π/4 ≈ 0.7854 rad | Miter cuts, isometric drawing |
| 90° | π/2 ≈ 1.5708 rad | Right angle |
| 180° | π ≈ 3.1416 rad | Straight line |
| 360° | 2π ≈ 6.2832 rad | Full 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.
- BIPM — SI Brochure, 9th edition (radian defined as arc length over radius) — Formal SI definition of the radian as the coherent unit of plane angle(as of )
Related
More guides on this topic
- Shoe size by manufacturer: why your size 10 isn't the same brand to brandNike runs narrow, New Balance runs wide, Italian dress shoes run small. Last-shape variations every shoe buyer should know.
- Why metric units won everywhere except the US (and what it costs)Three countries don't use metric. The US almost-transitions, the real costs of staying customary, where the gap still bites in 2026.
- How many mph is 100 km/h? The exact math, fast100 km/h is 62.14 mph, not 60. Here's the exact conversion factor, a quick mental-math shortcut, and a reference table for the most common highway speeds.
- Why does the US use mph instead of km/h?The US came within a highway sign of switching to km/h in 1975. A stalled Metric Conversion Act, not physics, is why American cars still read mph.
Published September 25, 2026