Radians to Degrees Calculator

Convert radians to degrees and back. Shows DMS notation, milliradians, gradians, trig values, quadrant info, and a 17-row reference table.

Degrees (°)
180.000000
DMS: 180° 0′ 0.00″
Radians
3.141593
1.0000π
Milliradians
3,141.592654
Used in military optics
Gradians
200.000000
400 grad = 360°
Turns
0.500000
Full rotations
Quadrant
III (180°–270°)
sin +, cos −
sin(θ)
0.000000
cos(θ) = -1.000000
tan(θ)
-0.000000
Arcminutes: 10,800.0
180°

Radian ↔ Degree Table

Radiansπ formDegreesQuadrantsincos
0.00000.0000π0°I (0°–90°)0.00001.0000
0.52360.1667π30°I (0°–90°)0.50000.8660
0.78540.2500π45°I (0°–90°)0.70710.7071
1.04720.3333π60°I (0°–90°)0.86600.5000
1.57080.5000π90°II (90°–180°)1.00000.0000
2.09440.6667π120°II (90°–180°)0.8660-0.5000
2.35620.7500π135°II (90°–180°)0.7071-0.7071
2.61800.8333π150°II (90°–180°)0.5000-0.8660
3.14161.0000π180°III (180°–270°)0.0000-1.0000
3.66521.1667π210°III (180°–270°)-0.5000-0.8660
3.92701.2500π225°III (180°–270°)-0.7071-0.7071
4.18881.3333π240°III (180°–270°)-0.8660-0.5000
4.71241.5000π270°IV (270°–360°)-1.0000-0.0000
5.23601.6667π300°IV (270°–360°)-0.86600.5000
5.49781.7500π315°IV (270°–360°)-0.70710.7071
5.75961.8333π330°IV (270°–360°)-0.50000.8660
6.28322.0000π360°I (0°–90°)-0.00001.0000
Planning notes, formulas, and examples

About the Radians to Degrees Calculator

The radians to degrees calculator converts radian values to degrees (and vice versa) along with milliradians, gradians, turns, DMS notation, and trigonometric values. A unit circle graphic shows the angle's position visually.

Radians are the natural unit for angles in mathematics and physics. One radian is approximately 57.296° — the angle where the arc length equals the radius. Most programming languages and scientific formulas expect angles in radians, while everyday use and navigation favor degrees.

Preset buttons cover all standard radian fractions (π/6, π/4, π/3, etc.) and the reference table lists 17 key angles from 0 to 2π with their exact sine and cosine values and quadrant positions. This makes the converter useful for both quick practical checks and deeper conceptual study of angle behavior across quadrants. It also helps ensure that technical notes, code, and plotted graphs all use the same angular convention across teams and documentation styles during review and publication.

When This Page Helps

When reading a physics textbook or debugging trig code, you constantly switch between radians and degrees. This calculator gives both plus milliradians (for military/optics), trig values, quadrant, and DMS — everything in one view for faster verification and fewer conversion mistakes in analysis, implementation, technical review workflows, and documentation handoff.

How to Use the Inputs

  1. Enter a radian value (or switch to Degrees → Radians).
  2. Read degrees, DMS notation, and all other angle units.
  3. Check sin, cos, tan and the quadrant indicator.
  4. Click a preset for standard angles.
  5. Adjust decimal precision for your needs.
  6. Use the reference table for exact values.
Formula used
Degrees = Radians × (180/π). Radians = Degrees × (π/180). Milliradians = Radians × 1,000. Gradians = Degrees × (10/9).

Example Calculation

Result: π radians = 180° = 200 grad = 0.5 turns

π × (180/π) = 180. A half revolution, where sin = 0 and cos = −1.

Tips & Best Practices

  • 1 radian ≈ 57.2958°. Quick mental check: π/2 ≈ 1.5708 rad = 90°.
  • Milliradians (mrad): 1 mrad subtends ~1 meter at 1 kilometer distance.
  • NATO uses 6,400 mils per circle; standard milliradians use 2000π ≈ 6,283.
  • DMS = Degrees-Minutes-Seconds: 45.5° = 45° 30′ 0″.
  • In Python: math.degrees(x) and math.radians(x) do the conversion.
  • Negative radians represent clockwise rotation from the positive x-axis.

Radians: The Natural Angle Unit

Radians emerge naturally from the relationship between arc length, radius, and angle. The derivative of sin(x) equals cos(x) only when x is in radians. This makes radians indispensable in calculus, differential equations, and physics. Using degrees requires extra π/180 conversion factors throughout equations.

Milliradians in Practice

A sniper scope marked in milliradians allows range estimation: if a 1.8-meter target subtends 2 mrad, the range is 1.8/0.002 = 900 m. This property makes milliradians practical for military and surveying applications.

Historical Context

The 360-degree circle dates back to Babylonian astronomy (~2000 BCE), likely related to their base-60 number system and the approximate number of days in a year. The radian concept emerged much later — Roger Cotes first described the radian measure in 1714.

Sources & Methodology

Last updated:

Frequently Asked Questions

  • Multiply by 180/π (approximately 57.2958). Example: π/4 × 180/π = 45°. This is the standard conversion used in calculators and programming libraries. It is also the form most textbooks use for derivations and worked examples. You can verify the result quickly with unit-circle reference angles.