Degrees and Radians: Understanding Angle Conversions
Most of us learn to measure angles in degrees: a right angle is 90, a straight line is 180, a full turn is 360. Degrees are intuitive and they are everywhere, from compass bearings to the protractor in a school pencil case. But the moment you open a calculus textbook, write a line of code that calls a sine function, or work through a physics problem involving rotation, a second unit shows up: the radian. Knowing how to move cleanly between the two is one of those small skills that prevents a surprising number of wrong answers.
This guide explains what radians actually are, gives you the exact conversion formulas in both directions, walks through worked examples, and flags the mistakes that catch people out, especially the silent ones that produce a plausible-looking number that happens to be completely wrong.
What a radian really measures
A degree is an arbitrary slice: someone long ago divided a full circle into 360 parts, probably because 360 has many convenient divisors. There is nothing mathematically special about the number. A radian, by contrast, is defined by the geometry of the circle itself. One radian is the angle you get when the arc length along the edge of a circle is exactly equal to the radius. Wrap one radius-length along the circumference, look at the angle it subtends at the center, and that angle is one radian. Because it is a ratio of two lengths, arc over radius, the radian is dimensionless.
Because the full circumference of a circle is 2 times pi times the radius, it takes exactly 2 times pi radii to go all the way around. That is why a full circle equals 2 pi radians. The same full turn is 360 degrees, so the two systems are simply two labels for the same complete rotation. A third system, the gradian, divides the full circle into 400 parts and shows up mainly in surveying, but degrees and radians are the pair you will use almost all the time.
The exact conversion formulas
Everything follows from one identity: a full circle is 360 degrees and also 2 pi radians, so 180 degrees equals pi radians. Divide both sides by 180 and you get the conversion factor for one degree; rearrange and you get the reverse. There are only two formulas to remember. The relationship itself is exact, since 180 degrees equals pi radians by definition; the only error you ever introduce is from rounding pi, which is irrational and so has no finite decimal form, when you compute a numerical answer.
- Degrees to radians: multiply the degree value by pi divided by 180. The factor pi/180 is approximately 0.0174533.
- Radians to degrees: multiply the radian value by 180 divided by pi. The factor 180/pi is approximately 57.29578.
- Reference identity: 1 radian is approximately 57.29578 degrees, and 1 degree is approximately 0.0174533 radians.
- Anchor values: a full circle is 360 degrees = 2 pi radians = 400 gradians.
A quick way to keep the direction straight: a radian is the larger unit, so a single radian is worth many degrees (about 57). When you convert degrees into radians the number should get smaller; when you convert radians into degrees it should get bigger. If your result moves the wrong way, you used the wrong factor.
Worked examples
Let us convert a few common angles from degrees to radians by multiplying by pi/180. Notice how cleanly the familiar angles reduce to simple fractions of pi, which is exactly why mathematicians prefer them.
- 90 degrees: 90 times pi/180 = pi/2 radians, approximately 1.5708.
- 45 degrees: 45 times pi/180 = pi/4 radians, approximately 0.7854.
- 180 degrees: 180 times pi/180 = pi radians, approximately 3.1416.
- 30 degrees: 30 times pi/180 = pi/6 radians, approximately 0.5236.
- 60 degrees: 60 times pi/180 = pi/3 radians, approximately 1.0472.
Going the other way, multiply radians by 180/pi. For instance, 2 radians equals 2 times 57.29578, which is about 114.59 degrees. And a half turn of pi radians times 180/pi returns 180 degrees exactly, a useful sanity check that your factor is the right way up.
Why radians are the natural unit
Radians are not just a tidier set of numbers; they are the unit that makes the underlying mathematics work without extra correction factors. The clearest example is arc length. The length of an arc equals the radius times the angle in radians, written s = r times theta. That clean relationship only holds when theta is in radians, because that is precisely how the radian is defined. Try it with degrees and you would need an extra factor of pi/180 floating around.
The same simplicity shows up throughout calculus and physics. The derivative of sine is cosine, and the small-angle approximation that sine of theta is roughly theta for small theta, both depend on the angle being in radians. Angular velocity, rotational kinematics, and the series expansions that calculators use internally all assume radians. Degrees are a human convenience layered on top; radians are the language the equations are actually written in.
Common mistakes to avoid
Angle conversions rarely produce an obviously absurd result, which is what makes the errors so easy to miss. These are the ones worth guarding against.
- Calculator in the wrong mode. This is the single most common error. If your calculator or programming language expects radians and you feed it degrees, the trig functions return numbers that look reasonable but are wrong. Common programming languages, including Python, JavaScript, and C, take radians by default, so always convert your degrees first.
- Rounding pi too aggressively. Using 3.14 instead of the calculator's full value of pi introduces a small but real error that compounds across long calculations. Carry the full precision and round only at the end.
- Mixing up the two factors. Multiplying by 180/pi when you meant pi/180 turns a tiny radian value into a huge degree value or vice versa. Use the size check: degrees-to-radians shrinks the number, radians-to-degrees grows it.
- Forgetting that pi radians is 180 degrees, not 360. A half turn is pi; a full turn is 2 pi. Confusing the two doubles or halves every angle in a problem.
Practical tips for getting it right
A few habits make angle work far more reliable, whether you are doing it by hand, on a calculator, or in code.
- Memorize the anchors. If you know that 30, 45, 60, 90, and 180 degrees map to pi/6, pi/4, pi/3, pi/2, and pi, you can sketch the unit circle and check almost any answer at a glance.
- Always confirm calculator mode before a trig calculation. A glance at the DEG or RAD indicator takes a second and saves whole problem sets.
- Keep angles as fractions of pi when you can. Writing pi/4 instead of 0.7853981634 preserves exactness and makes patterns visible.
- Sanity check with a known value. Confirm your factor against 180 degrees equals pi radians before trusting it on the real problem.
Once the formulas and the reasoning behind them click into place, switching between degrees and radians becomes automatic. Degrees keep angles readable for people; radians keep the math honest. For professional engineering, navigation, or safety-critical work, treat any conversion as a draft until you have verified it against a trusted reference and confirmed your tool's angle mode, since a single mode error can quietly skew an entire result.