The Degrees to Radians Formula

The relationship between degrees and radians is fixed. Since a full circle spans 360° or 2π radians, you can derive a simple proportional formula.

radians = degrees × (π ÷ 180)

  • radians — The angle measurement in radians
  • degrees — The angle measurement in degrees
  • π — Pi, approximately 3.14159

Understanding Radians vs Degrees

Degrees divide a full rotation into 360 equal parts—a convention inherited from ancient Babylonian mathematics. Radians, by contrast, relate directly to the geometry of circles. One radian is the angle subtended by an arc whose length equals the circle's radius. This makes radians the natural unit for calculus and higher mathematics.

Some key equivalences:

  • 90° = π/2 rad ≈ 1.5708 rad
  • 180° = π rad ≈ 3.1416 rad
  • 270° = 3π/2 rad ≈ 4.7124 rad
  • 360° = 2π rad ≈ 6.2832 rad

Once you internalize these benchmarks, mental conversion becomes faster. Most scientific calculators and programming languages default to radians, so fluency in both systems is essential.

Common Angle Conversions at a Glance

Here are conversions for angles you'll encounter frequently in mathematics and physics:

  • 30°: π/6 rad ≈ 0.5236 rad
  • 45°: π/4 rad ≈ 0.7854 rad
  • 60°: π/3 rad ≈ 1.0472 rad
  • 120°: 2π/3 rad ≈ 2.0944 rad
  • 225°: 5π/4 rad ≈ 3.9270 rad

When working with trigonometric functions in code or advanced mathematics, these standard angles appear repeatedly. Knowing both forms helps you recognize patterns and debug calculations more efficiently.

Common Pitfalls When Converting Angles

Avoid these frequent mistakes when switching between degrees and radians.

  1. Forgetting the π/180 factor — The most common error is multiplying by the reciprocal. Remember: to go from degrees to radians, divide the degree value by 180 and multiply by π. Reversing this will give you the inverse result. Double-check by testing 180°, which must equal π rad.
  2. Mixing radian and degree inputs unknowingly — Many programming languages and scientific software assume radian input by default. If you feed degrees into a sin() or cos() function expecting radians, your results will be completely wrong. Always check your tool's documentation before entering values.
  3. Rounding π prematurely — Using π ≈ 3.14 instead of 3.14159 or a full-precision value introduces cumulative rounding errors, especially across multiple calculations. Use at least 5 decimal places, or let your calculator handle the full constant automatically.

Frequently Asked Questions

Why are radians used instead of degrees in advanced mathematics?

Radians appear naturally in calculus because they relate directly to circular arc geometry. The derivative of sin(x) equals cos(x) only when x is in radians—the formula breaks down with degrees. This makes radians essential for differentiation, integration, and differential equations. Physics and engineering prefer radians for the same reason: equations simplify dramatically when angles are measured in a unit tied to circle geometry rather than an arbitrary 360-division.

How do I convert radians back to degrees?

Apply the inverse formula: multiply the radian value by 180/π. For example, π/2 radians becomes (π/2) × (180/π) = 90°. The π terms cancel, leaving you with 90. This reversal is just as straightforward as the original conversion. You can verify it using our calculator by entering a radian value and checking the degrees output.

What is 360 degrees in radians?

360 degrees equals 2π radians, or approximately 6.2832 radians. This makes sense geometrically: one complete rotation around a circle spans 2π radians. You arrive at this by applying the formula: 360 × (π/180) = 2π. This equivalence is useful for understanding periodic functions and rotational measurements in physics.

Can negative angles be converted?

Yes. Negative angles indicate rotation in the opposite direction (clockwise instead of counterclockwise in standard orientation). The formula works identically: −45° becomes −π/4 rad ≈ −0.7854 rad. Negative radians are equally valid and appear regularly in wave equations, rotation matrices, and navigation calculations.

What is the relationship between radians and the unit circle?

The unit circle is a circle with radius 1. When you measure an angle in radians on the unit circle, the radian value equals the arc length that angle subtends. This direct equality is why radians are so powerful in mathematics. For example, an angle of π/3 radians on a unit circle corresponds to an arc length of exactly π/3 units. This geometric elegance makes radians indispensable for trigonometry and calculus.

More conversion calculators (see all)