Degrees to Radians Converter

Convert angles between degrees and radians with the exact factor π/180.

Convert 8-digit π Bidirectional
Rate this calculator

Degrees ↔ Radians

rad = deg × π / 180

Instructions — Degrees to Radians Converter

1

Enter the angle

Type degrees on the left or radians on the right — both fields update each other. The default 45° converts to π/4 ≈ 0.7854 rad. Negative angles work the same way.

2

Use the common-angle picks

Preset buttons cover the angles that appear most often in trigonometry — 30°, 45°, 60°, 90°, 180°, 360°. These map to clean fractions of π.

3

Choose precision

4 decimals is enough for most calculator work and matches scientific calculator output. Push to 6–8 decimals when you need to verify that your code or spreadsheet is using radians (not degrees) internally.

Formulas

One full turn equals 360 degrees or 2π radians. Every degrees-to-radians conversion is a single multiplication by π/180.

Degrees to Radians
$$ \theta_{rad} = \theta_{deg} \times \frac{\pi}{180} $$
Multiply degrees by π/180 ≈ 0.0174533 to get radians. 90° = π/2 ≈ 1.5708 rad.
Radians to Degrees
$$ \theta_{deg} = \theta_{rad} \times \frac{180}{\pi} $$
Multiply radians by 180/π ≈ 57.2958 to get degrees. 1 rad ≈ 57.30°.
Full turn identity
$$ 360^{\circ} = 2\pi\,\text{rad} $$
A complete revolution equals 2π radians. Halve both sides to get the more common identity 180° = π rad.
Why π/180?
$$ \frac{180^{\circ}}{\pi\,\text{rad}} = \frac{1^{\circ}}{\pi/180\,\text{rad}} $$
Because 180° equals π rad, each single degree equals π/180 of a radian. That ratio is the conversion factor.
Common exact values
$$ 30^{\circ} = \frac{\pi}{6},\;\; 45^{\circ} = \frac{\pi}{4},\;\; 60^{\circ} = \frac{\pi}{3},\;\; 90^{\circ} = \frac{\pi}{2} $$
These four values cover most of trigonometry. They are exact, not approximations.
Arc length connection
$$ s = r\theta $$
Arc length s equals radius r times the angle in radians. This identity works only with radians — that is why scientific work prefers them.

Reference

Common Angles — Degrees, Radians, Fraction of π
DegreesRadians (exact)Radians (decimal)
00.0000
30°π/60.5236
45°π/40.7854
60°π/31.0472
90°π/21.5708
120°2π/32.0944
135°3π/42.3562
180°π3.1416
270°3π/24.7124
360°6.2832

Memorising the unit circle

Anchor on 180° = π. Halves and thirds of π cover almost every angle you will meet in a first calculus course: π/2 (90°), π/3 (60°), π/4 (45°), π/6 (30°).

Article — Degrees to Radians Converter

The Degrees to Radians Converter

A radian equals the angle that cuts an arc of length r on a circle of radius r. The degrees to radians formula is rad = deg × π/180, which gives 90° = π/2, 180° = π, and 360° = 2π. The radian is the SI unit of plane angle.

Most people first meet angles in degrees, where a full turn is 360. Mathematicians, physicists, and programmers prefer radians, where a full turn is 2π. The choice is not aesthetic — every derivative, integral, and arc-length formula in calculus gets shorter when you measure angles in radians.

What is a radian?

A radian is the central angle subtended by an arc whose length equals the radius of the circle. Take a circle of radius r, walk a distance r along its edge, and the angle from the centre is one radian. Because the full circumference is 2π r, the full angle is 2π radians — which is why 360° = 2π rad.

Calling the radian a "unit" understates its nature. It is the ratio of two lengths (arc divided by radius), so it has no dimension in the usual sense. The SI Brochure lists it as a dimensionless derived unit, which is why scientific writing often drops the rad symbol entirely and just writes sin(π/2) = 1.

Did you know

The name radian was coined by James Thomson, an Irish mathematician, in the 1870s. Before that, mathematicians worked in radian measure without a dedicated word for it. The unit symbol rad was made official by the International Bureau of Weights and Measures in 1960.

The degrees to radians formula

The conversion is a single multiplication. To go from degrees to radians, multiply by π/180. To reverse it, multiply by 180/π.

Degrees and radians shorthand
deg → rad multiply by π/180 ≈ 0.01745
rad → deg multiply by 180/π ≈ 57.296
180° = π rad (anchor)
360° = 2π rad (full turn)

The factor π/180 is irrational. Any "exact" decimal you see (0.01745329 …) is truncated to whatever precision your tool allows. For most engineering and graphics work, six decimal places is plenty; for high-precision physics, you carry π itself as a symbol and substitute at the end.

Why radians matter for calculus and physics

The first identity that breaks down in degrees is the derivative of sine. In radians, the derivative of sin(x) is cos(x). In degrees, it is (π/180) × cos(x) — the same shape, but with a small constant attached forever. Every later identity inherits that extra factor, so trigonometric integrals become messy. Radians eliminate the bookkeeping.

Physics adopts radians for the same reason. The arc-length formula s = r θ assumes θ is in radians. So does angular velocity ω, where v = ω r. The Taylor series sin(x) ≈ x − x³/6 only works for x in radians. Stick with degrees and every equation needs an asterisk.

Derivative in degrees
(π/180)cos(x)
extra constant forever
Derivative in radians
cos(x)
clean — radians are natural

Common degrees to radians values

A handful of angles cover most trigonometry homework, most game-engine rotations, and most physics problems. Memorising them as fractions of π is the fastest way to read trig diagrams without reaching for a calculator.

  • 30° = π/6 ≈ 0.5236 rad — appears in 30-60-90 triangles
  • 45° = π/4 ≈ 0.7854 rad — the 45-45-90 triangle
  • 60° = π/3 ≈ 1.0472 rad — equilateral triangle interior
  • 90° = π/2 ≈ 1.5708 rad — quarter turn
  • 180° = π ≈ 3.1416 rad — half turn
  • 270° = 3π/2 ≈ 4.7124 rad — three-quarter turn
  • 360° = 2π ≈ 6.2832 rad — full turn

Radians in code and graphics

Programming languages default to radians for trig. Python's math.sin, JavaScript's Math.sin, C's sin from math.h, Java's Math.sin — all expect radians. Excel does too, which is why =SIN(90) returns 0.893996663… instead of 1. To get sin(90°) in Excel you write =SIN(RADIANS(90)).

Game engines and 3D libraries follow the same convention. Unity exposes both radians and degrees in its Mathf class, but the internal math is radians. Unreal Engine uses radians for FMath::Sin and degrees only in the editor UI. OpenGL, WebGL, and DirectX rotation matrices are derived assuming radians.

Tip

If a trig calculation returns an unexpected result in code, check first whether you fed degrees into a radians-only function. The bug is usually a missing multiplication by π/180, not an algorithm error.

Degrees vs radians — when to use each

Degrees win when humans need to read or describe an angle. "45 degrees" sounds natural in a recipe, a carpentry instruction, or a weather forecast. Radians win for any math beyond basic geometry. The split lines up roughly like this:

  • degrees — navigation, surveying, everyday geometry, instruction manuals, weather, compass bearings
  • radians — calculus, physics, signal processing, robotics, graphics, programming, scientific calculators in RAD mode
  • both — trigonometry textbooks (start with degrees, switch to radians by chapter 5)

A short history of the radian

Although the radian as a concept is older, the term itself was coined by James Thomson around 1873, building on earlier work by Roger Cotes. Cotes had already noted in 1714 that for trigonometric calculations the "natural" unit of angle is the one where 180° equals π. Once mathematicians settled on the radian, calculus textbooks started using it as the default within a generation.

The SI system formally accepted the radian as a supplementary unit in 1960 and reclassified it as a dimensionless derived unit in 1995. NIST and BIPM both note that the radian (rad) is the SI coherent derived unit of plane angle. The degree, written with a circle (°), is allowed alongside SI units but is not itself an SI unit.

Common degrees to radians mistakes

Most degrees to radians mistakes are mode-setting mistakes, not arithmetic mistakes. The conversion itself is trivial.

  • DEG vs RAD mode — scientific calculators show DEG by default, languages and Excel default to RAD
  • forgetting π/180 — writing Math.sin(45) when you want sin(45°) gives 0.851, not 0.707
  • dropping the π — π/4 is not 1/4; it is ≈ 0.7854
  • over-precision — π is irrational, so any decimal radian value is truncated; do not assume more accuracy than the formula allows
  • mixing units in the same formula — every term in a trig identity must use the same angle unit
Trig answer looks wrong?

If sin or cos of a clean angle (90°, 180°, 270°) does not return the expected 1, 0, or −1, your unit setting is almost certainly the culprit. Convert to radians before passing values to a code library or spreadsheet, or change the calculator to DEG mode for textbook work.

FAQ

Multiply the degree value by π / 180. For example, 90° × π/180 = π/2 ≈ 1.5708 rad. The reverse conversion multiplies by 180/π.
360° = 2π radians ≈ 6.2832 rad. One full turn equals 2π radians. Half a turn is 180° = π rad.
45° = π/4 rad ≈ 0.7854 rad. The exact answer is π/4; the decimal is what a calculator shows.
Calculus is cleaner in radians. The derivative of sin(x) equals cos(x) only when x is in radians; in degrees you would carry an extra factor of π/180 forever. Arc-length and angular-velocity formulas also assume radians.
Yes. The radian is the SI unit for plane angle (BIPM SI Brochure, 9th edition). It is technically a dimensionless derived unit because it is the ratio of arc length to radius — both lengths, so the ratio has no dimension.
1 rad ≈ 57.2958°. More precisely, 180/π ≈ 57.29577951. A radian is the angle that cuts an arc equal in length to the radius of the circle.
Multiply by 57.3 for a rough answer, by 60 for a quick over-estimate. So 2 rad × 57.3 ≈ 114.6°. For exact fractions of π, just multiply by 180 and divide by π — for example, π/3 × 180/π = 60°.
Almost always because the mode is set to DEG when you want RAD (or vice versa). Programming languages and Excel default to radians; pocket scientific calculators usually default to degrees. Convert before you plug values in.