Degrees vs Radians: When to Use Which
By WuTools editorial team · Updated
Most people learn angles in degrees — 90° is a right angle, 180° is a straight line, 360° is one full turn. Then somewhere around the second year of secondary school, mathematics suddenly switches to radians, and a full turn becomes 2π. Programming languages, calculus textbooks, physics labs, and computer graphics libraries all default to radians. Yet construction sites, ship navigation, and protractors still speak in degrees. Both units are correct; they're just optimised for different tasks. This guide explains the optimisation, the conversion, and a quick rule of thumb for which to pick.
Two ways to count an angle
A degree divides one full turn into 360 equal slices. The number 360 was chosen by ancient Babylonian astronomers because it has many divisors (it's evenly divisible by 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, 18, 20, 24, 30, 36, 40, 45, 60, 72, 90, 120, 180, 360 — 24 divisors in total) and approximates the number of days in a year. Convenient for a culture that mapped the sky onto a 360-day calendar.
A radian divides one full turn into 2π ≈ 6.283 equal slices. That number is fundamental, not arbitrary: one radian is the angle subtended at the centre of a circle by an arc whose length equals the radius. So if you walk an arc one-radius long along a circle of radius r, you've swept out exactly one radian. This makes radians the natural unit for any formula involving arc length, area, or rotation rate.
The conversion (and a memory trick)
The relationship is exact: π radians = 180 degrees. So 1 rad ≈ 57.296°, and 1° ≈ 0.01745 rad. The conversion formulas are radians = degrees × π/180 and degrees = radians × 180/π. You can do this in our trigonometry calculators with one toggle.
Memory trick: the unit circle has six tidy reference angles every 30°, which become π/6, π/4, π/3, π/2, π, 2π — the denominators 6, 4, 3, 2, 1 are easy to remember as halves and thirds and quarters of π. Most maths textbooks teach the unit circle in radians for this reason: the labels stay clean (π/3 rather than 60°).
Where degrees feel natural
Construction, surveying, architecture. Builders quote slopes as degrees off horizontal (or as percentage rise/run). A roof pitch of 30° tells a roofer the rafter angle; π/6 rad would just confuse the carpenter. Land surveys, theodolites, and total stations all read in degrees, minutes, and seconds.
Ship and aircraft navigation. Compasses are graduated 0–360°, with 0°/360° at North, 90° at East, and so on. Aviation course headings, ILS approach angles, and marine bearings are all degrees. Latitude and longitude are also in degrees (and minutes/seconds), for the same historical reason — Babylonian sexagesimal split into the lat/long grid.
Everyday geometry. Protractors are graduated in degrees. A right angle is 90°, an equilateral triangle has three 60° corners, a regular hexagon has 120° interior angles. Children learn these long before they meet π.
Where radians are required
Calculus. The derivative of sin(x) is cos(x) only when x is in radians. In degrees you'd carry around an extra factor of π/180, which would clutter every formula. By choosing radians, the cleanest derivatives and series expansions (sin x ≈ x for small x, cos x ≈ 1 − x²/2) hold without correction factors.
Programming. JavaScript's Math.sin(), Python's math.sin(), C's sin(), and almost every numeric library expect the argument in radians. Pass them degrees and you'll silently get nonsense. If you start with degrees, multiply by Math.PI/180 first. The reason is the same as in calculus: the numerical methods used (Taylor series, CORDIC) all assume radians, and changing convention would slow them down.
Physics. Angular velocity ω is in radians per second; angular acceleration in rad/s². The relationship between linear and angular velocity, v = rω, is wrong by a factor of 180/π if ω is in degrees. Wave equations (sine wave amplitude as e^(jωt)) require radian angular frequency for the formulas to hold.
Computer graphics, 3D, robotics, signal processing. All of these are built on top of physics and numeric libraries, so they inherit radians. WebGL rotation matrices, robot joint kinematics, FFT phase angles — all radians.
Quick conversion table
Useful angles to memorise: 0° = 0; 30° = π/6 ≈ 0.524; 45° = π/4 ≈ 0.785; 60° = π/3 ≈ 1.047; 90° = π/2 ≈ 1.571; 180° = π ≈ 3.142; 270° = 3π/2 ≈ 4.712; 360° = 2π ≈ 6.283. Less common but worth knowing: 1 rad ≈ 57.296°; 1° ≈ 0.01745 rad; 1 grad (an obscure unit, 400 to a circle) ≈ 0.9° ≈ 0.0157 rad.
Many calculators have a DEG/RAD toggle. Always check it before computing trig — it's the single most common source of "my formula is wrong" reports in physics homework.
Rule of thumb
If your audience is a person and the answer should fit on a protractor, use degrees. Construction, navigation, sport (a downhill slope of 12°), photography (180° fisheye lens), everyday math.
If your audience is a computer or a calculus formula, use radians. JavaScript Math.sin(), physics labs, signal processing, robotics, derivatives, integrals. Pre-multiply the user's degree input by π/180 once at the input boundary, then keep everything internal in radians.
If you're unsure, label the unit explicitly. A small "deg" or "rad" suffix on a variable name has prevented many a Mars Climate Orbiter incident — the 1999 NASA mishap that lost a $327 million spacecraft because one team used pound-force-seconds and another team's software expected newton-seconds. Same lesson.
Related WuTools
- Sine Calculator — Sin, cos, tan with a degree/radian toggle
- Cosine Calculator — Same calculator family, cosine variant
- Cotangent Calculator — Reciprocal-ratio variant
- Haversine Calculator — Great-circle distance from latitude/longitude (uses radians internally)
- Length Converter — Helpful when reasoning about arc-length: arc = r × angle (rad)
Frequently asked questions
Why does Excel return weird trig results?
Excel's SIN(), COS(), TAN() expect radians. SIN(30) is not sin(30°) but sin(30 radians) ≈ −0.988. To compute sin(30°) write =SIN(RADIANS(30)) or =SIN(30*PI()/180).
Is there a unit between degrees and radians?
Gradians (or gons): 400 to a full turn, so a right angle is 100 gon. Used in some European surveying instruments and a handful of calculators. Useful when you want decimal-percent slopes, otherwise rare.
How small is one radian?
About 57.3 degrees — almost two-thirds of a right angle. Hold up your hand at arm's length: roughly the angle from thumb-tip to little-finger-tip with the fingers spread is about one radian (≈ 60°).
Why π and not just 3?
π is exact. It's the ratio of any circle's circumference to its diameter — independent of the circle's size. 3 is just a rough approximation; π ≈ 3.141592653589793...
Can I leave answers as fractions of π?
In maths exams and physics derivations, yes — π/4 is more exact than 0.785. In engineering and code, decimals are usually preferred. Both are valid; the convention depends on the audience.
How does GPS use angles?
Latitude and longitude are reported in degrees by humans (e.g. 21.0285° N, 105.8542° E for Hanoi). Inside the calculation — for great-circle distance via the haversine formula — the values are converted to radians first. Our Haversine Calculator does this internally.
What's the relationship between angle and arc length?
Arc length s = r × θ, where θ is in radians. If θ is in degrees you must convert first: s = r × θ × π/180. The radian formula is cleaner because that's literally how a radian is defined.
Should a programmer always convert degrees to radians at input?
Yes. Convert at the user-input boundary and keep everything internal in radians. That way your trig calls, physics steps, and FFT phase calculations all use the same unit. Convert back to degrees only when displaying values to the user.
