Apex Conversion
🔺 Angle

Degrees vs. Radians Explained

5 min read
Share𝕏 Post

Two units exist for measuring angles: degrees and radians. Both describe the same thing — how far you rotate from one direction to another — but use different scales. Degrees divide a full circle into 360 equal parts. Radians relate the angle to the circle's own geometry, using the ratio of arc length to radius.

Degrees feel intuitive because we learn them first. Radians feel abstract until you see their geometric definition — then it becomes clear why all mathematics, physics, and programming uses radians as the natural unit for angle measurement. Both are essential to understand.

What Are Degrees?

A degree is 1/360th of a full circle. The number 360 has ancient origins — Babylonian astronomers likely chose it because 360 is close to the number of days in a solar year and has an unusually large number of divisors (2, 3, 4, 5, 6, 8, 9, 10, 12, 15, 18, 20, and more). This divisibility makes 360-based fractions convenient: a right angle is exactly 90°, a hexagon's interior angles are exactly 120°, and common angles like 30°, 45°, and 60° all divide evenly.

Degrees are used in navigation (compass bearings run 0°–360°), everyday geometry (interior angles of shapes), map coordinates (latitude and longitude use degrees, minutes, seconds), and any user-facing interface where angles are presented to non-technical users. The degree is intuitive: 90° is a right angle; 180° is a straight line; 360° brings you back to the start.

What Are Radians?

A radian is defined by the geometry of a circle: one radian is the angle at the center of a circle subtended by an arc whose length equals the radius. If you take a string equal to the radius and lay it along the circumference, the angle it spans from the center is exactly 1 radian.

Because the circumference of a circle is 2π times its radius, a full rotation contains exactly 2π radians. This is not a convention — it is a direct consequence of the circle's geometry, which is why radians are called the 'natural' unit. No arbitrary scaling factor like 360 is involved.

The Conversion Formula

π radians = 180°

degrees → radians:   rad = deg × (π ÷ 180)
radians → degrees:   deg = rad × (180 ÷ π)

1 radian ≈ 57.2958°
1° ≈ 0.017453 radians

Common conversions:
  30°  = π/6  ≈ 0.5236 rad
  45°  = π/4  ≈ 0.7854 rad
  60°  = π/3  ≈ 1.0472 rad
  90°  = π/2  ≈ 1.5708 rad
  180° = π    ≈ 3.1416 rad
  360° = 2π   ≈ 6.2832 rad

Why Mathematics and Programming Use Radians

The most compelling reason is calculus. The derivative of sin(x) is cos(x) — but only when x is in radians. In degrees, the derivative becomes (π/180) × cos(x). That extra factor clutters every derivative and integral involving trigonometric functions. Working in radians eliminates it entirely, keeping formulas clean.

All major programming languages — JavaScript, Python, C, Java — implement trigonometric functions (Math.sin, Math.cos, Math.atan2) using radians. If you pass degrees, you get the wrong answer. Similarly, arc length is simply s = rθ when θ is in radians; in degrees the formula requires an extra π/180 factor. Radians are the unit that makes circular geometry algebraically natural.

When to Use Degrees

Degrees remain the practical choice for human-facing angle values. Navigation systems express compass bearings in degrees. Architecture and engineering drawings use degrees for angles. Game engines often expose rotation properties in degrees for designer-friendly editing, even while computing in radians internally. GPS coordinate systems use degrees, minutes, and seconds.

As a general rule: if you are writing a value that a person reads directly — a compass heading, a building plan, a map coordinate — use degrees. If the value goes into a mathematical computation or a programming function, use radians.

Quick Tips

  • In JavaScript and Python, Math.sin(), Math.cos(), and Math.atan2() all take radians. Multiply degrees by Math.PI/180 before passing them.

  • Memorize five key values: 0, π/6 (30°), π/4 (45°), π/3 (60°), π/2 (90°), and π (180°). Everything else derives from these.

  • On a scientific calculator, check the 'DRG' or 'RAD/DEG' mode switch — ensure it matches your formula's expected input.

  • Gradians (grad) are a third unit: 400 grad = 360°. Used in some European surveying contexts but rarely elsewhere.

Frequently Asked Questions

Why is a full circle 2π radians, not just π or 1?

Because the circumference of a circle is 2πr. One radian is the angle for arc length = radius. To traverse the full circumference (arc = 2πr), the angle is 2πr ÷ r = 2π radians. The 2π comes directly from the circle's own geometry — it is not a convention.

Do programming languages use degrees or radians?

Radians. All mainstream math libraries (JavaScript, Python, C, Java, C++) have trig functions that accept and return radians. If your angles are in degrees, multiply by π/180 before passing them to sin(), cos(), or tan().

What is 1 radian in degrees?

1 radian = 180/π ≈ 57.2958°. This is the angle at the center of a circle subtended by an arc equal to the radius length — geometrically meaningful, but an unusual number in degrees.

What are gradians?

A gradian divides a full rotation into 400 equal parts, so a right angle is exactly 100 gradians. Introduced during the French metrication effort in the 18th century, gradians appear occasionally in surveying and European engineering contexts. They have not displaced degrees or radians in mainstream use.

Try the Angle Converter

🔺 Open Angle Converter

Related Converters

Related Articles

All conversion results are provided for general informational purposes only. Read our full disclaimer.