QuickUnits

Angle

Degrees to radians

1 ° = 0.0174533 rad

—

One degree is 0.0174532925 radians, which is π divided by 180. The radian is not just another angle unit — it is the only one that makes calculus work, and every trigonometric function in every programming language expects it.

About the units

A radian is the angle subtended at the centre of a circle by an arc equal in length to the radius. That definition makes it dimensionless: it is a length divided by a length, which is why it disappears from equations rather than cluttering them. A full circle is 2π radians because the circumference is 2π times the radius. The degree, by contrast, is arbitrary. Its 360 divisions come from Babylonian astronomy, chosen because 360 is close to the number of days in a year and has 24 divisors, making it easy to split into halves, thirds, quarters, fifths, sixths and so on.

The exact factor

The exact relationship is 1° = π/180 radians = 0.01745329251994329... radians. The reason it matters is what happens in calculus: the derivative of sin(x) is cos(x) only when x is in radians. In degrees the derivative picks up a factor of π/180, and every formula in physics and engineering would carry that constant around. Small-angle approximations work the same way — sin(θ) ≈ θ holds for radians, not degrees. Common values worth knowing: 90° is π/2, 180° is π, 45° is π/4, and 1 radian is about 57.296°.

Where you meet this conversion

Programming above all. The trigonometric functions in JavaScript, Python, C and essentially every other language take radians, and passing degrees is one of the most common bugs in graphics and game code — the result is not an error message but a wrong picture. Physics uses radians throughout for angular velocity, phase and oscillation. Navigation, surveying and everyday geometry use degrees, so any calculation that starts from a bearing and ends in a computation crosses this boundary.

Common values

Value (°) Converted (rad)
1 0.0174533
5 0.0872665
10 0.174533
15 0.261799
30 0.523599
45 0.785398
60 1.0472
90 1.5708
180 3.14159
360 6.28319

Values are rounded for reading. The converter above keeps full precision.

The other way around

1 rad = 57.2958 °

Radians to degrees multiplies by 180/π, about 57.29578. The mental anchor is that one radian is a little under 60 degrees, so a rough conversion is to multiply radians by 57 and check the result against what the angle should look like.

Value (rad) Converted (°)
1 57.2958
5 286.479
10 572.958
15 859.437
30 1 718.87
45 2 578.31
60 3 437.75
90 5 156.62
180 10 313.2
360 20 626.5

Related conversions

All angle conversions