Converting Degrees to Radians- Formula and Example

What the Heck Is a Radian?

Most people learn degrees first. 90 degrees is a right angle. 180 is a straight line. Easy. Radians are different. They're based on the radius of a circle — the distance from center to edge. One radian is the angle you get when you take the radius and wrap it around the circumference of a circle. You can fit that radius about 6.283 times around the circle. That's 2π. Always. This is why math classes, physics, and engineering use radians instead of degrees. The math works out cleaner. Trigonometry functions expect radians. Calculus with angles? Radians only.

The Formula Nobody Remembers

Here's the conversion: Degrees to Radians: radians = degrees × (π / 180) That's it. Multiply by pi, divide by 180. Going the other way: Radians to Degrees: degrees = radians × (180 / π) Memorize the first one. The second one is just the reverse.

Quick Conversion Table

Degrees Radians
0
30° π/6 ≈ 0.524
45° π/4 ≈ 0.785
60° π/3 ≈ 1.047
90° π/2 ≈ 1.571
180° π ≈ 3.142
270° 3π/2 ≈ 4.712
360° 2π ≈ 6.283
Learn these. They're used constantly.

How to Convert: Step by Step

Example 1: Convert 90° to radians

  1. Take your degrees: 90
  2. Multiply by π/180: 90 × (π/180)
  3. Simplify: 90/180 = 1/2
  4. Answer: π/2
That's 1.571 when you need the decimal.

Example 2: Convert 45° to radians

  1. Start with 45
  2. Multiply by π/180: 45 × (π/180)
  3. Simplify: 45/180 = 1/4
  4. Answer: π/4
Decimal form: 0.785

Example 3: Convert 3π/4 radians to degrees

Now reverse it:
  1. Take your radians: 3π/4
  2. Multiply by 180/π: (3π/4) × (180/π)
  3. The πs cancel: 3 × 180 / 4
  4. Answer: 540/4 = 135°

Why You Can't Just Use Degrees

Some reasons you need radians: If you're writing code that rotates anything, you're using radians whether you know it or not.

Getting Started: Your First Conversion

Try these on paper:
  1. Convert 120° to radians
  2. Convert 5π/6 radians to degrees
  3. Convert 1 radian to degrees (hint: about 57.3°)
Answers:
  1. 120 × π/180 = 2π/3
  2. 5π/6 × 180/π = 150°
  3. 1 × 180/π ≈ 57.3°
The third one is worth remembering: 1 radian ≈ 57.3 degrees. This comes up more than you'd expect.

Calculator Shortcuts

Most scientific calculators have a mode switch. Look for a button that says DRG or check your mode settings. Set it to RAD when working in radians, DEG when working in degrees. The calculator handles the conversion automatically. In Python:
import math
degrees = 90
radians = math.radians(degrees)  # Returns π/2
In JavaScript:
const degrees = 90;
const radians = degrees * (Math.PI / 180);
No built-in function? Use the formula. It never changes.

The Bottom Line

Degrees to radians: multiply by π/180. Radians to degrees: multiply by 180/π. That's the entire conversion. Everything else follows from those two formulas.