Degrees vs Radians: When to Use Each and Why
Degrees and radians are two ways to measure angles. This guide explains the difference, when each is used, and why mathematics and physics prefer radians while everyday work uses degrees.
Published March 27, 2026 · Updated May 6, 2026
Two ways to measure an angle
An angle is a measure of how far one ray rotates from another, and there are two standard ways to express it. Degrees divide a full rotation into 360 equal parts, with one degree being 1/360 of the way around. Radians divide a full rotation into 2π parts, with one radian being the angle that subtends an arc of length equal to the circle's radius. Both units measure the same physical quantity, but they serve different purposes: degrees are the everyday unit used in navigation, surveying, geometry classes, and most consumer-facing contexts, while radians are the mathematical and physics unit that appears in calculus, trigonometry derivatives, and any equation involving rotational motion or wave behaviour. Knowing which to use, and how to convert between them, is essential for anyone working across the boundary between everyday measurement and technical calculation.
Where degrees came from
The 360-degree circle traces back to ancient Babylonian astronomy around 2000 BCE. The Babylonians used a base-60 number system and divided the apparent annual path of the sun (a full circle) into 360 parts, roughly matching the number of days in their calendar year. The choice was practical: 360 has many useful divisors (2, 3, 4, 5, 6, 8, 9, 10, 12, 15, 18, 20, 24, 30, 36, 40, 45, 60, 72, 90, 120, 180), which makes it convenient for dividing circles into the regular polygons and angle fractions that ancient geometry needed. The Babylonian convention passed to Greek astronomy through Hipparchus and Ptolemy, then to Islamic and medieval European mathematics, and survived into modern degree-based angle measurement essentially unchanged. The minute (1/60 of a degree) and second (1/60 of a minute) preserved the Babylonian base-60 structure into modern usage.
Where radians came from
The radian was introduced by mathematician Roger Cotes in 1714 and named "radian" by James Thomson in 1873. Its definition comes from a natural geometric property: if you mark off an arc along the circumference of a circle equal in length to the circle's radius, the angle subtended at the centre is one radian. A full rotation contains 2π radians (because the circumference is 2π times the radius), so 360 degrees equals 2π radians, 180 degrees equals π radians, and 90 degrees equals π/2 radians. The radian is the natural unit for angle in calculus and physics because trigonometric derivatives and integrals come out cleanly only when angles are expressed in radians.
Why mathematics prefers radians
The derivative of sin(x) equals cos(x) only when x is in radians. If x is in degrees, the derivative is cos(x) × π/180 — a constant of nature that has to be carried through every calculation involving the trigonometric functions. The same simplification appears in Taylor series expansions: sin(x) ≈ x − x³/6 + x⁵/120 only works near zero when x is in radians; in degrees, the approximation requires correction factors that make the formula awkward. Wave equations, oscillation analysis, rotational dynamics, and Fourier-series mathematics all assume radian angles. Modern engineering software internally converts user-input degrees to radians before running any trigonometric calculation.
Why everyday work uses degrees
Degrees are the right unit when humans need to read and interpret angles directly. Compass bearings (azimuth) are universally in degrees, with north at 0°, east at 90°, south at 180°, west at 270°. Surveying angles, architectural roof pitches, geometry classroom problems, and the angle markings on protractors all use degrees. The 360-degree division aligns with the cardinal-direction structure people use to describe direction, and the integer-degree precision is plenty for almost every direct-measurement context. Latitude and longitude on the Earth's surface are also in degrees (with the additional minute-and-second sub-divisions for precision), reflecting the Babylonian inheritance through ancient astronomy and mediaeval navigation.
How the conversions work
The relationship is fixed: 360° = 2π radians, so 180° = π radians and 1° = π/180 radians (about 0.01745). To convert degrees to radians, multiply by π/180. To convert radians to degrees, multiply by 180/π (about 57.296). Common values memorised by engineering students and mathematicians: 30° = π/6 radians, 45° = π/4 radians, 60° = π/3 radians, 90° = π/2 radians, 180° = π radians, 360° = 2π radians. The factor π/180 appears constantly in any code that mixes degree-input human interfaces with radian-internal math.
Where the conversion shows up in code
Programming languages and scientific software vary in their default angle convention. Python's math module uses radians throughout (math.sin, math.cos, math.tan all expect radians); the math.degrees() and math.radians() helpers convert between the two. JavaScript's Math.sin and similar functions also expect radians. Excel's SIN function expects radians, while the DEGREES() and RADIANS() functions convert. Most engineering CAD and CAM tools accept input in degrees but convert internally to radians for computation. Spreadsheet errors involving the wrong angle unit are a common cause of "the formulas look right but the answers are wrong" problems in DIY trigonometry work — always check the unit assumption before trusting a result.
Gradians and other obscure units
A few historical and specialty angle units occasionally appear in older or niche contexts. The gradian (also called the gon) divides a full rotation into 400 equal parts, so a right angle is exactly 100 gradians. The unit was introduced during the French metric reform as a decimal-friendly angle measure but never gained widespread adoption outside surveying in some European countries. The mil (or milliradian) is used in military artillery and rifle scopes for angular adjustment, with 6400 mils in a full rotation in NATO convention or 6283 mils (2π × 1000) in the strict mathematical convention. These units appear in specialty work but the dominant everyday-vs-technical split remains degrees-vs-radians.
When to use which
Use degrees when communicating with non-mathematicians, working with compass bearings or geographic coordinates, reading or specifying architectural drawings, or doing classroom geometry. Use radians when doing calculus, writing physics equations, programming trigonometric calculations in any modern language, or working in any technical context where the natural mathematical structure matters. Most scientific calculators have a mode switch between degree and radian inputs; setting the mode correctly is a routine source of student errors and is worth checking explicitly before any critical calculation.