Degrees Radians Calculator
Convert between degrees and radians.
Formula
Rad = Deg×π/180
Example
180° = π radians.
Embed this calculator on your site
Add this free calculator to your own website with one line of code. The embedded version is responsive, ad-free, and includes a small attribution link back to CalcNest AI.
<iframe src="https://calcnestai.com/embed/degrees-radians-calculator.html" width="100%" height="700" frameborder="0" style="border: 1px solid #e5e5e5; border-radius: 12px; max-width: 720px;" loading="lazy" title="Degrees Radians Calculator — Free Tool by CalcNest AI"></iframe>
Understanding the Degrees Radians Calculator
A degrees and radians converter switches between the two angle measures. Degrees are a historical convention and radians are defined by the geometry itself, which is why calculus works cleanly in one and awkwardly in the other.
How it actually works
Enter an angle and select whether it is in degrees or radians. The calculator multiplies by π over 180 or its inverse. Forty-five degrees converts to 0.78539816 radians.
| Degrees | Radians |
|---|---|
| 30° | π/6 |
| 45° | π/4 |
| 90° | π/2 |
| 180° | π |
The deeper context most people miss
A full turn is 2π radians because the circumference of a unit circle is 2π, so the angle measure is literally the arc length travelled. That definition is what makes arc length equal to radius times angle with no conversion constant attached.
Why calculus requires radians
The derivative of sine is cosine only when the angle is measured in radians. In degrees, the derivative picks up a factor of π over 180, and it propagates through every subsequent differentiation, making every formula in analysis carry a constant that serves no purpose. The underlying reason is the small angle limit: as an angle approaches zero, the ratio of sine to the angle approaches one, and this holds only in radians, since in degrees it approaches π over 180. That limit is what the derivative calculation depends on. The Taylor series for sine and cosine similarly assume radians, and using degrees would require rescaling every term. Euler's formula linking complex exponentials to trigonometry requires radians. Differential equations describing oscillation produce solutions in radians naturally. The practical consequence is that radians are not an alternative unit but the natural one for any analytical work, and degrees are a human-facing convention retained because the numbers are more convenient for everyday angles and because 360 divides neatly by many factors. The small angle approximation itself, that sine θ is approximately θ for small θ, is enormously useful in engineering and physics, underpinning the simple pendulum solution, optics approximations, and countless linearisations, and it holds only in radians, which is a good reminder of why the unit matters.
A worked example: arc length and sector area
Forty-five degrees is π over 4 radians, and the practical value of radians appears immediately in arc length: the arc subtended is simply radius times angle, so a radius of 10 at π over 4 gives an arc of 7.854. In degrees the same calculation requires multiplying by π over 180 first. Sector area is similarly half r squared times angle in radians, against a fraction-of-a-circle calculation in degrees. Angular velocity in radians per second multiplies directly by radius to give linear velocity, which is why rotational mechanics uses radians throughout and why revolutions per minute must be converted before use in any physical formula. This conversion catches people out regularly in engineering calculations, since motor speeds are quoted in rpm and torque and power relationships need radians per second, with the conversion being multiplication by 2π over 60. In signal processing, angular frequency in radians per second differs from ordinary frequency in hertz by a factor of 2π, and mixing them is a classic error producing results wrong by roughly 6.28. The general pattern is that any formula relating rotation to linear quantities assumes radians, and any figure quoted in degrees, revolutions, or hertz needs converting before entering one.
Deciding which unit to use where
Degrees suit human communication and measurement instruments. Navigation and surveying use degrees, with bearings quoted from north and subdivided into minutes and seconds in traditional practice or decimal degrees in modern use, and geographic coordinates follow the same convention. Construction and carpentry use degrees, since a protractor and a mitre saw are marked in them. Astronomy uses degrees for large angles and arcseconds for small ones, since fine angular measurement is more natural in subdivided degrees than in tiny radian values. Radians suit anything computational or analytical. Programming languages almost universally provide trigonometric functions taking radians, and passing degrees is among the most common numerical bugs, producing plausible-looking wrong answers rather than obvious failures. Physics and engineering formulas assume radians. Computer graphics uses radians internally while frequently exposing degrees in interfaces, which means conversion happens at the boundary and forgetting it is a recurring source of rotation bugs. The practical discipline is to convert once at the interface between human input and computation, and to name variables to indicate their unit, since a variable called angle carries no information about which measure it holds and mixing them silently is what causes the failures.
Where 360 came from and why it survived
The division of a circle into 360 parts traces to Babylonian astronomy and their sexagesimal, base sixty, number system. Several explanations circulate: 360 approximates the days in a year, so the sun moves roughly one degree daily against the stars; 360 has an exceptional number of divisors, being divisible by 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, 18, 20, 24, 30, 36, 40, 45, 60, 72, 90, 120, and 180, which makes fractions of a circle come out as whole numbers far more often than a base ten division would; and the geometry of the hexagon inscribed in a circle divides it into six 60-degree parts naturally. The divisibility argument is the strongest practical one, and it is the same reason the hour divides into 60 minutes and the minute into 60 seconds, a Babylonian inheritance that survives in time and angle measurement while base ten took over everywhere else. Attempts to decimalise angle measurement have been made, with the gradian dividing a right angle into 100 parts and a full circle into 400, introduced during the French Revolution alongside metric units. It survives marginally in some surveying contexts and never displaced degrees, partly because 400 has far fewer convenient divisors and partly because the existing convention was too entrenched. Radians meanwhile won in mathematics not by decree but because the calculus is cleaner.
Variations: gradians, turns, and subdivisions
Gradians divide a right angle into 100 and a full circle into 400, appearing in some European surveying and on many calculators as a third mode, which is occasionally selected by accident and produces confusing results. Turns or revolutions measure full rotations and are natural in rotational mechanics and in some programming contexts, with some arguing that a constant of one turn would be a more natural circle constant than π, which is the tau proposal. Milliradians are used in ballistics and optics for small angles, with the convenient property that one milliradian subtends approximately one metre at a kilometre, which makes range estimation straightforward and is why rifle scopes use them. Minutes and seconds of arc subdivide degrees sexagesimally and are standard in astronomy and traditional surveying, with an arcsecond being small enough that atmospheric seeing limits ground-based telescope resolution to around that scale. Hour angles in astronomy divide the sky into 24 hours of right ascension. In computing, angles are frequently normalised to a range, with the choice between zero to 2π and minus π to π mattering for discontinuities, and the two-argument arctangent conventionally returning the latter.
Converting angles correctly
Convert degrees to radians by multiplying by π over 180, and radians to degrees by the inverse, and do the conversion once at the boundary between human input and computation. Use radians for anything analytical, since the derivative of sine is cosine only in radians and degrees introduce a constant factor throughout. Check what your programming language's trigonometric functions expect, since nearly all take radians and passing degrees produces plausible wrong answers rather than errors. Name variables to indicate their unit, since mixing degree and radian values silently is the usual cause of rotation bugs. Convert revolutions per minute to radians per second by multiplying by 2π over 60 before entering any physical formula. Distinguish angular frequency in radians per second from frequency in hertz, which differ by 2π and are a classic source of factor-of-6.28 errors. Use radius times angle for arc length and half r squared times angle for sector area, both requiring radians. And check your calculator is not in gradian mode, which is a third setting that produces confusing results when selected accidentally.
What people get wrong
- Passing degrees to a trigonometric function expecting radians, which is the most common angle bug in code and produces wrong answers that look plausible.
- Using degrees in analytical work, where the derivative of sine is cosine only in radians and a factor of π over 180 propagates through every formula.
- Confusing angular frequency in radians per second with frequency in hertz, which differ by a factor of 2π and produce errors of roughly 6.28.
- Entering revolutions per minute directly into a rotational mechanics formula, which requires radians per second and needs multiplying by 2π over 60 first.
Where the math comes from
Radians = Degrees × π/180, and Degrees = Radians × 180/π. A full circle is 2π radians because one radian is the angle subtending an arc equal to the radius, so the measure is arc length per unit radius. This makes arc length equal to rθ and sector area equal to ½r²θ with no conversion constant.
Questions and answers
What is the difference between percent and percentage point?
Percent change is relative (going from 5% to 10% is a 100% increase). Percentage point change is absolute (the same shift is a 5 percentage point increase). News stories often confuse these.
How do I calculate a discount?
Discount amount = original x discount %. Final price = original x (1 - discount %). For 20% off $100: discount $20, final $80.
What is the formula for compound percentage?
Final = original x (1 + r1) x (1 + r2) x ... where each r is a percentage as decimal. A 10% raise then 10% cut: 1.10 x 0.90 = 0.99 = 99% of original.
How do I reverse a percentage?
If $80 is 80% of original: original = $80 / 0.80 = $100. To reverse 'X% off' to find original: original = final / (1 - X/100).
How do percentages work in tax?
Marginal tax rate applies to income within a bracket. Effective rate is total tax / total income. They diverge because of progressive brackets.
What is a radian?
The angle subtending an arc equal in length to the radius. A full circle is 2π radians because the circumference is 2πr, so the angle measure is literally arc length per unit radius, which is why arc length is simply radius times angle.
Why does calculus need radians?
Because the derivative of sine is cosine only in radians. In degrees it picks up a factor of π over 180 that propagates through every subsequent formula. The underlying reason is that sine θ over θ approaches one as θ approaches zero only in radians.
Why is a circle 360 degrees?
It traces to Babylonian sexagesimal astronomy. The strongest practical explanation is divisibility: 360 has an exceptional number of divisors, so common fractions of a circle come out as whole numbers, which base ten division would not achieve.
What are gradians?
A decimal alternative dividing a right angle into 100 and a full circle into 400, introduced during the French Revolution. They survive marginally in some surveying and appear as a third calculator mode, which is occasionally selected by accident.
How do I convert rpm for a physics formula?
Multiply by 2π over 60 to get radians per second. Rotational mechanics formulas assume radians, so entering revolutions per minute directly is wrong, and this conversion is a routine source of errors in engineering calculations.
What's the difference between frequency and angular frequency?
A factor of 2π. Frequency in hertz counts cycles per second while angular frequency in radians per second measures how fast the phase advances. Mixing them produces errors of roughly 6.28, which is a classic mistake in signal processing.
What is a milliradian used for?
Small angle measurement in ballistics and optics, with the convenient property that one milliradian subtends approximately one metre at a kilometre. That makes range and holdover estimation arithmetic rather than trigonometry, which is why rifle scopes use them.
Related calculators
Ellipse · Weighted Average · Parabola Vertex · Polar to Cartesian · Normal Distribution