🦉 UnitOwl

Degrees to Radians

1 Degree (°) = 0.0174533Radian (rad)

By KAMP Inc. / UnitOwl · Last reviewed:

Result
0.0174533 rad
1 ° = 0.0174533 rad
Ad Slot (horizontal)

How to Convert Degrees to Radians?

One degree equals approximately 0.01745 radians. To convert degrees to radians, multiply the degree value by π/180 (approximately 0.01745). This is the most fundamental angle conversion in mathematics, physics, and engineering. Every trigonometry course, every physics problem involving circular motion, and every computer graphics calculation requires radians. While degrees are the intuitive human unit for angles (a full circle is 360 degrees), radians are the natural mathematical unit (a full circle is 2π radians). Scientific calculators, programming languages, and mathematical formulas universally expect angles in radians. If you put a degree value into the sine function of most programming languages without converting first, you will get a completely wrong answer. Understanding this conversion is non-negotiable for anyone in STEM fields. It also matters in classroom work because exact answers are often written as fractions of π rather than decimals. Converting 150° to 5π/6 instead of 2.618 helps you recognize unit-circle values, compare equivalent angles, and avoid rounding error in later steps. It also explains why formulas for angular velocity, phase angle, and unit-circle identities are almost always stated in radians rather than degrees.

How to Convert Degree to Radian

  1. Start with your angle in degrees.
  2. Multiply the degree value by π/180 to get radians.
  3. The result is your angle in radians.
  4. For common angles, memorize the key values: 30° = π/6, 45° = π/4, 60° = π/3, 90° = π/2, 180° = π, 360° = 2π.
  5. For a quick decimal estimate, multiply degrees by 0.01745. For example, 45° x 0.01745 = 0.7854 radians.

Real-World Examples

Convert 90 degrees to radians for a trig calculation.
90 x π/180 = π/2 ≈ 1.5708 radians. This is a quarter turn, and sin(π/2) = 1.
A physics problem gives an angle of 30 degrees for projectile motion.
30 x π/180 = π/6 ≈ 0.5236 radians. Plugging this into sin and cos functions gives the velocity components.
A CSS rotation transform specifies 45 degrees. What is that in radians for a JavaScript math function?
45 x π/180 = π/4 ≈ 0.7854 radians. JavaScript's Math.sin() and Math.cos() require radians.
A servo motor needs to rotate 120 degrees.
120 x π/180 = 2π/3 ≈ 2.0944 radians. Many robotics APIs accept angles in radians.
The Earth's axial tilt is approximately 23.44 degrees.
23.44 x π/180 ≈ 0.4091 radians. Astronomical calculations for seasons and solar angle use radians.

Quick Reference

Degree (°)Radian (rad)
10.0174533
20.0349066
30.0523599
50.0872665
100.174533
150.261799
200.349066
250.436332
500.872665
751.309
1001.74533
2504.36332
5008.72665
1,00017.4533

History of Degree and Radian

The degree has ancient Babylonian origins — the Babylonians used a base-60 (sexagesimal) number system and divided the circle into 360 parts, likely because 360 is close to the number of days in a year and is highly divisible. The radian was developed much later by mathematicians who needed a unit that simplified calculus and trigonometric identities. The term "radian" was first used by James Thomson in 1873, though the concept existed earlier. The radian became the SI standard for angle measurement because it makes derivatives and integrals of trigonometric functions clean: d/dx[sin(x)] = cos(x) only works when x is in radians. If x were in degrees, the derivative would include an extra factor of π/180.

Common Mistakes to Avoid

  • Forgetting to convert degrees to radians before using trigonometric functions in programming. In Python, JavaScript, C++, and most languages, math.sin(), math.cos(), and math.tan() expect radians. Passing 90 instead of π/2 gives sin(90 radians) ≈ 0.894, not the expected 1.
  • Confusing the conversion direction: multiplying by 180/π instead of π/180 converts radians to degrees (the opposite). If your result is larger than the degree value, you went the wrong way.
  • Treating π as exactly 3.14. Using 3.14 instead of a more precise value introduces error. For 180°: 180 x 3.14/180 = 3.14, but the correct value is 3.14159... Use your language's built-in π constant for precision.
  • Converting to a rounded decimal when the context expects an exact radian value. In trigonometry homework and symbolic math, 60° is usually better written as π/3 than 1.0472 because the exact form preserves clean identities and later simplifications.
Ad Slot (auto)

Frequently Asked Questions

Why do mathematicians prefer radians over degrees?
Radians make calculus work cleanly. The derivative of sin(x) is cos(x) only when x is in radians. In degrees, d/dx[sin(x°)] = (π/180)cos(x°), adding an ugly constant everywhere. Radians also connect angle to arc length directly: an angle of θ radians subtends an arc of length rθ on a circle of radius r.
What are the most important degree-to-radian conversions to memorize?
0° = 0, 30° = π/6, 45° = π/4, 60° = π/3, 90° = π/2, 180° = π, 270° = 3π/2, 360° = 2π. These cover all the standard angles used in trigonometry and physics.
How do programming languages handle the conversion?
Most languages provide a constant for π (Math.PI in JavaScript, math.pi in Python, M_PI in C). Some also provide conversion functions: Python has math.radians() and math.degrees(). In languages without built-in converters, use angle * Math.PI / 180.
Is a radian a "real" unit or just a ratio?
Technically, a radian is a dimensionless ratio (arc length divided by radius). The SI treats it as a "supplementary unit" — it has a name and symbol but is dimensionally equal to 1. This is why radians often "disappear" in physics equations, and why angular velocity (rad/s) and frequency (Hz or 1/s) have compatible dimensions.
Can I use 0.01745 instead of π/180?
Yes for quick estimates, but π/180 is better when accuracy matters. The decimal 0.01745 is rounded, so repeated conversions or higher-precision engineering work can accumulate small errors. Use the exact factor or your calculator's π constant whenever possible.
Quick Tip

The single most useful shortcut: to convert any multiple of 30 degrees, remember that 30° = π/6. So 60° = 2π/6 = π/3, 90° = 3π/6 = π/2, 120° = 4π/6 = 2π/3, and so on. For multiples of 45°, use π/4 as the base: 45° = π/4, 90° = 2π/4 = π/2, 135° = 3π/4, etc.

Sources & References