Geometry & Trigonometry Trigonometric Functions & Angle Measure SI angular measure (BIPM SI Brochure, 9th ed.)

Degrees to Radians Calculator

Enter an angle in degrees and read it back in radians, both as a decimal and as an exact multiple of π. You can type a plain decimal degree value or a full degrees-minutes-seconds reading straight off a transit, a nautical chart or a GPS bearing. The calculator also reports the same angle in gradians and in turns, so you can move between every angular unit a technical document is likely to use. Radians are what every trigonometric function in a programming language, every spreadsheet SIN family and every calculus formula expects, so this conversion is the step that stands between a degree measurement and a correct answer.

Calculator

This calculator runs in your browser. Enable JavaScript for live results — the inputs, formula and worked example below remain fully readable without it.

Inputs this calculator takes, with typical values
InputWhat to enterExample
Angle in degreesThe whole-degree part of your angle. Enter a negative number for a clockwise or below-horizon angle.45 °
ArcminutesLeave at 0 unless your reading is in degrees-minutes-seconds; one arcminute is one sixtieth of a degree.0 '
ArcsecondsLeave at 0 unless your reading is in degrees-minutes-seconds; one arcsecond is one 3,600th of a degree.0 "

It returns

  • Angle in radians — Feed this value directly to sin, cos and tan in any programming language.
  • Exact value as a multiple of π — The reduced fraction of π that this angle equals exactly, when it has one.
  • Decimal degrees
  • Gradians — The unit on European survey instruments: 400 gon in a full circle.
  • Turns (revolutions)

The formula

θ(rad)=θ(deg)π180
D+M60+S3600
gon=θ109

In plain text: radians = degrees × π / 180

  • θ (rad)The angle expressed in radians (rad)
  • θ (deg)The angle expressed in degrees (°)
  • πThe ratio of a circle's circumference to its diameter, 3.14159265358979… (dimensionless)

The factor π/180 comes from equating one full revolution written both ways: 360° = 2π rad.

Updated Category Trigonometric Functions & Angle Measure Verified against published test cases Reading time 10 min

What a radian actually measures

A radian is the angle you sweep out when the arc you travel along a circle is exactly as long as that circle's radius. Walk one radius-length around the rim of any circle, look back at the centre, and the angle you have turned through is one radian. Because the definition compares two lengths, the radian carries no units of its own: it is a pure ratio, which is why it slots into formulas without dragging a conversion factor behind it.

That property is the whole reason radians exist. The circumference of a circle is 2πr, so a full revolution contains 2π radius-lengths of arc, which is 2π ≈ 6.283185 radians. A degree, by contrast, is an arbitrary 1/360 of a revolution inherited from Babylonian astronomy; 360 is convenient because it factors so many ways, but it has no geometric meaning. Every derivative, series expansion and small-angle approximation in calculus is written for radians, and every one of them acquires a stray factor of π/180 if you feed it degrees instead.

The practical consequence shows up the first time you call a trigonometric function in code. Python's math.sin, JavaScript's Math.sin, C's sin and R's sin all take radians. Spreadsheets do too: Excel and Google Sheets both require RADIANS() around a degree value before SIN() will give the right answer. Hand-held scientific calculators are the exception, and their DEG/RAD mode switch is the single most common source of a wrong trigonometry answer.

Why the conversion factor is π/180

You derive the factor by writing one full turn in both units and dividing. A full turn is 360°, and a full turn is 2π radians, so 360° = 2π rad. Divide both sides by 360 and you get 1° = 2π/360 rad = π/180 rad. Multiplying any degree measure by π/180 therefore rescales it into radians, and the numerical value of π/180 is 0.017453292519943295.

Reading the same identity the other way gives the inverse conversion, 1 rad = 180/π degrees ≈ 57.29577951°. That number is worth committing to memory, because it lets you sanity-check any conversion in your head: a radian is a bit less than 60°, so an answer in radians should always be a little larger than the degree value divided by 60. Our radians to degrees calculator performs the reverse trip.

Gradians follow the same pattern with a different base. A gradian, also written gon, splits the full turn into 400 parts so that a right angle is exactly 100 gon. That makes the degree-to-gradian factor 400/360 = 10/9. European surveying instruments and some civil-engineering software still work in gon, so the conversion appears whenever survey data crosses a border. Turns, the fourth unit reported here, are simply the angle divided by 360; they are the natural unit for rotational counts, gear ratios and phase in signal processing.

Worked example: converting a 137°30'36" bearing

A total station gives you a horizontal angle of 137°30'36". Convert it to radians for a coordinate-geometry routine.

  1. Convert the minutes. 30 arcminutes ÷ 60 = 0.5°.
  2. Convert the seconds. 36 arcseconds ÷ 3600 = 0.01°.
  3. Add up the decimal degrees. 137 + 0.5 + 0.01 = 137.51°.
  4. Multiply by π/180. 137.51 × 0.017453292519943295 = 2.40012814 rad.
  5. Check the magnitude. 137.51 ÷ 57.29578 = 2.4001, which agrees, so the arithmetic is sound.

The same angle in gradians is 137.51 × 10/9 = 152.789 gon, and as a fraction of a revolution it is 137.51 ÷ 360 = 0.381972 turns. The exact form still reduces, because 137.51° is a whole number of arcseconds: 137.51 × 3600 = 495,036 arcseconds, and a half turn is 648,000 arcseconds, so the angle is 495036π/648000 rad. Divide both numbers by their common factor of 36 and the exact value field reports 13751π/18000, whose decimal value 0.763944π agrees with the radian answer above.

Now take a textbook angle instead. For 135°, the ratio 135/180 reduces: the greatest common divisor of 135 and 180 is 45, so 135/180 = 3/4, and the exact answer is 3π/4 rad = 2.35619449 rad. That reduction is exactly what the exact value output performs for you.

How to read the result

Check the exact π form first. If your angle is one of the standard classroom angles — any multiple of 15° — the exact form is the answer a marker wants to see, and the decimal is only a cross-check. Any angle that is a whole number of arcseconds still gets an exact fraction, but it can be an unwieldy one: 137.51° reduces to 13751π/18000 rather than to anything you would want to write on a diagram. Only when the angle is not a whole number of arcseconds does the field fall back to a decimal coefficient such as 0.763944π, and at that point the decimal radian value is the useful one.

Then check the magnitude. Any angle inside one revolution converts to a radian value between 0 and 6.2832. If you see a radian value above about 6.3, your angle exceeded a full turn, and you should decide whether you want the unwound angle or its coterminal equivalent inside 0–360°; the coterminal angle calculator handles that reduction. Angles of thousands of degrees are legitimate in rotational mechanics, where the total swept angle matters, but are usually a data-entry slip in geometry.

Finally, watch the sign. A negative degree value produces a negative radian value, and every trigonometric function accepts it happily. In standard position a negative angle is measured clockwise from the positive x-axis, so −90° and +270° point the same way even though their radian values, −π/2 and 3π/2, differ by a full 2π.

Common angles in degrees, radians, gradians and turns

Every radian entry is the degree value multiplied by π/180 = 0.0174532925; every gradian entry is the degree value multiplied by 10/9.
DegreesExact radiansRadians (decimal)GradiansTurns
00.00000000
15°π/120.26179916.6670.041667
30°π/60.52359933.3330.083333
45°π/40.785398500.125
60°π/31.04719866.6670.166667
90°π/21.5707961000.25
120°2π/32.094395133.3330.333333
135°3π/42.3561941500.375
150°5π/62.617994166.6670.416667
180°π3.1415932000.5
270°3π/24.7123893000.75
360°6.2831854001

One arcminute is 0.000290888 rad and one arcsecond is 0.0000048481 rad, both derived from the same π/180 factor.

Mistakes that produce a wrong angle

  • Leaving a calculator in the wrong mode. A pocket calculator set to DEG returns 0.0087 for sin(0.5) when you wanted the sine of half a radian, 0.4794. Check the DEG/RAD indicator before every trigonometry problem.
  • Treating decimal minutes as decimal degrees. A bearing of 42°30' is 42.5°, not 42.30°. The gap is 0.2°, which is 3.5 metres of offset at one kilometre.
  • Rounding π/180 too early. Using 0.0175 instead of 0.0174532925 puts a 0.27% error into the result, enough to move a survey point by 27 centimetres in 100 metres.
  • Assuming a programming language takes degrees. Every mainstream language's trigonometric library works in radians; spreadsheets need an explicit RADIANS() wrapper.
  • Dropping the sign when converting DMS. A latitude of −33°51'54" means 33 degrees, 51 minutes and 54 seconds south; the minus applies to the whole reading, not just the degree part.

What the SI says about the radian

The BIPM's SI Brochure, 9th edition, lists the radian as the coherent SI unit of plane angle, defined as the ratio of arc length to radius, with the symbol rad and the dimensionless derived unit m/m. The degree, the arcminute and the arcsecond are not SI units, but the Brochure accepts them for use with the SI because of their entrenched role in navigation, astronomy and surveying. The gradian appears in the same table of accepted non-SI units. Nothing in the SI forbids degrees; it simply makes the radian the unit that formulas are written for.

Where the conversion matters most

Calculus is the first place the choice of unit stops being cosmetic. The derivative of sin x is cos x only when x is in radians; in degrees it becomes (π/180)cos x. The same factor infects the Taylor series, so the familiar small-angle approximation sin θ ≈ θ holds only for radians. At 5° = 0.0872665 rad, sin θ = 0.0871557, an error of 0.13%; write 5 instead and the approximation is nonsense.

Rotational mechanics is the second. Angular velocity in rad/s multiplies directly by radius to give tangential speed in m/s, and angular acceleration in rad/s² multiplies by radius to give tangential acceleration. Do the same with degrees per second and every answer is off by the factor 57.29578. Converting a motor's rating from revolutions per minute to rad/s uses the turn output here: 1 rpm = 2π/60 rad/s = 0.10471976 rad/s.

Geometry is the third, and the cheapest to get right. Arc length is s = rθ and sector area is A = ½r²θ, both with θ in radians; feed degrees to either and the answer is 57 times too large. Our arc length calculator and circular sector area calculator handle the unit switch internally, and the reference angle calculator is the tool to reach for when you need the acute angle a large rotation is equivalent to. Once your angle is in radians, feed it straight into the sin cos tan calculator.

Frequently asked questions

What is 90 degrees in radians?

90° is π/2 radians, which is 1.5707963268 as a decimal. You get it by multiplying 90 by π/180: the 90 and the 180 cancel to one half, leaving π/2. It is a quarter of a full revolution, so it is also 0.25 turns and 100 gradians. The other quarter-turn landmarks follow the same pattern: 180° is π, 270° is 3π/2, and 360° is 2π.

How do I convert degrees to radians in terms of pi?

Write the angle over 180 and reduce the fraction to lowest terms, then attach π. For 210°, the fraction is 210/180; the greatest common divisor of 210 and 180 is 30, so the fraction reduces to 7/6 and the exact answer is 7π/6. This works whenever the degree measure is a whole number, because the reduced fraction is always exact. The calculator does this reduction for you and shows it in the exact value field.

Why do calculators and programming languages use radians?

Because the calculus of trigonometric functions is only clean in radians. The derivative of sin x equals cos x, the series sin x = x − x³/6 + … converges to the right thing, and the small-angle approximation sin x ≈ x all hold exactly when x is a radian measure, and acquire a factor of π/180 otherwise. Library authors therefore standardised on radians, and every mainstream language followed.

How do I convert degrees, minutes and seconds to radians?

Convert to decimal degrees first, then multiply by π/180. Decimal degrees = D + M/60 + S/3600. For 12°45'30", that is 12 + 0.75 + 0.008333 = 12.758333°, and multiplying by 0.0174532925 gives 0.222674 rad. Enter the three parts in the fields above and the calculator shows the decimal-degree intermediate step so you can check it.

What is a gradian and when would I meet one?

A gradian, or gon, is one 400th of a full revolution, so a right angle is exactly 100 gon. It was introduced with the metric system to make angle arithmetic decimal, and it survives on European surveying instruments and in some civil-engineering software, particularly in France, Germany and Scandinavia. Converting from degrees uses the factor 10/9, so 45° is 50 gon.

Is a radian bigger or smaller than a degree?

A radian is much bigger: one radian equals 180/π ≈ 57.2957795 degrees. That is the fastest sanity check on any conversion — the radian value should be roughly the degree value divided by 57. If your answer looks like the degree value multiplied by 57, you have applied the conversion backwards and should use 180/π the other way round.

Can an angle in radians be negative or larger than 2π?

Yes to both, and neither is an error. A negative radian measure means the rotation is clockwise from the positive x-axis, and every trigonometric function accepts it. A value above 2π means the angle has been wound more than once around the circle, which is exactly what you want when tracking the total rotation of a shaft or a wheel. Only when you need a direction rather than a rotation count should you reduce the angle into 0 to 2π.

How precise does π/180 need to be?

Use at least 0.0174532925 — nine significant figures — for any engineering or survey work. Rounding to 0.0175 introduces a relative error of about 0.27%, which is 27 centimetres over 100 metres of offset and far beyond survey tolerance. Double-precision floating point holds π to about 16 significant figures, so a language's built-in constant is always the right choice over a typed literal.

References