From
To
Learn more about
Degrees to radians: exact formula, step-by-step examples, conversion chart, and practical tips
Conversion formula
Verification: factors follow standard unit definitions; round for display only.
Quick reference chart
| Degree | Radian |
|---|---|
| 1 | 0.017453 |
| 2 | 0.034907 |
| 3 | 0.05236 |
| 4 | 0.069813 |
| 5 | 0.087266 |
| 6 | 0.10472 |
Educational explanation
Degrees to radians
Convert ° to rad when a drawing, compass bearing, or classroom problem lists degrees but your trigonometry library, physics equation, or navigation algorithm expects radians.
A full rotation is 360° and 2π rad, so 180° = π rad. Degrees divide the circle into familiar steps; radians measure arc length along a unit circle, which is why sin, cos, and most calculus formulas use radian arguments.
rad = ° × (π/180) · equivalently rad = ° ÷ 57.2958
This site's angle catalog stores 1 radian = 57.2958 degrees, so one degree equals 0.0174533 radians—the same value as π/180. Multiply degrees by that factor (or divide by 57.2958); round only at the end for labels or UI.
Step-by-step conversions (worked examples)
90° (quarter turn, right angle):
- 90 × (π/180) = 90 ÷ 2 = π/2 rad
- Numeric: 1.5708 rad
180° (straight angle, half turn):
- 180 × (π/180) = π rad
- Numeric: 3.14159 rad
45° (common in navigation and isosceles right triangles):
- 45 × (π/180) = π/4 rad
- Numeric: 0.785398 rad
Degrees to radians conversion chart
| Degrees (°) | Radians (rad) | Typical context |
|---|---|---|
| 1° | 0.0174533 | Fine adjustment, tolerance stacks |
| 30° | 0.523599 (π/6) | Equilateral triangle interior angle |
| 45° | 0.785398 (π/4) | Bearing offset, square corners |
| 90° | 1.5708 (π/2) | Right angle, quarter rotation |
| 180° | 3.14159 (π) | Straight line, U-turn bearing |
| 270° | 4.71239 (3π/2) | Three-quarter rotation |
| 360° | 6.28319 (2π) | Full revolution, closed traverse |
Where degrees → radians comes up
- Trigonometry: Spreadsheets and languages compute
sin(θ)in radians—convert a 30° input before calling the function. - Engineering: Phase angles in AC circuits, shaft rotation in kinematics, and antenna beamwidth specs often arrive in degrees but feed radian-based models.
- Programming: JavaScript uses
deg * (Math.PI / 180); Python offersmath.radians(deg). Forgetting this step is a top cause of wrong trig plots. - Navigation: Compass courses and chart bearings are usually in degrees; great-circle and dead-reckoning formulas in libraries often require radians internally.
Radians to degrees
Convert rad to ° when a solver, sensor log, or code output reports radians but you need degrees for drawings, compass roses, or field notes.
Invert the forward relationship: multiply radians by 180/π, or use the catalog factor 57.2958 (degrees per radian).
° = rad × (180/π) · equivalently ° = rad × 57.2958
Step-by-step conversion (worked example)
Convert 1 rad to degrees:
- 1 × (180/π) = 57.2958°
- Sanity check: one radian is the angle whose arc on a unit circle equals one radius length.
Convert π/2 rad back to degrees: (π/2) × (180/π) = 90°—recovering the right-angle anchor from above.
Radians to degrees conversion chart
| Radians (rad) | Degrees (°) | Typical context |
|---|---|---|
| 1 | 57.2958 | Catalog anchor (1 rad in degrees) |
| 0.523599 (π/6) | 30 | Hexagonal layout, trig tables |
| 0.785398 (π/4) | 45 | Diagonal, 1:1 slope angle |
| 1.5708 (π/2) | 90 | Perpendicular, quarter turn |
| 3.14159 (π) | 180 | Straight angle |
| 6.28319 (2π) | 360 | Full circle, periodic functions |
Reverse conversion is essential when exporting simulation results to CAD title blocks or when comparing a robot joint encoder (radians) against a mechanical drawing (degrees).
Formulas compared, programming snippets, and related tools
Both directions use exact definitional factors tied to π. Keep unit symbols explicit, avoid double rounding, and verify with anchor angles.
Degrees vs radians at a glance
| Topic | Degrees (°) | Radians (rad) |
|---|---|---|
| Full turn | 360° | 2π rad |
| Straight angle | 180° | π rad |
| Right angle | 90° | π/2 rad |
| 1 radian in the other unit | 57.2958° | 1 rad |
| Primary use today | Drawings, compasses, everyday angles | Calculus, trig libraries, physics |
Programming: degrees ↔ radians
- JavaScript / TypeScript:
const rad = deg * (Math.PI / 180); reverse withdeg = rad * (180 / Math.PI). - Python:
math.radians(deg)andmath.degrees(rad). - Excel:
RADIANS(deg)andDEGREES(rad).
Common mistakes to avoid
- Passing degrees to
sin/coswithout converting—30° is not 30 rad. - Using 3.14 instead of π in repeated conversions—fine for rough sketches, not for chained engineering calculations.
- Mixing gradians or arc minutes with degree inputs—confirm the symbol on the source document first.
- Rounding too early—carry full precision through multi-step work; round once at display.
Exactness and round-trip verification
The relationship π rad = 180° is exact by definition. Converting 45° → rad → 45° should recover the original within floating-point limits. Test anchors: 90° = π/2 rad, 180° = π rad, 1 rad = 57.2958°.
Related angle converters
For the inverse route, see radians to degrees. For subdivisions of a degree, use degree to arc minute, arc minute to degree, and arc second to degree. For the gradian (gon) system used in some surveying tools, see degree to gradian and gradian to degree.
Frequently asked questions
What is the formula to convert degrees to radians?
rad = ° × (π/180). Multiply the degree measure by π and divide by 180. On this site, that equals dividing by 57.2957795131 (degrees per radian from the catalog).
What is the formula to convert radians to degrees?
° = rad × (180/π), or ° = rad × 57.2957795131. One radian equals about 57.296 degrees.
How many radians is 90 degrees?
90° = π/2 rad ≈ 1.5708 rad. This is a quarter turn—a right angle.
How many radians is 180 degrees?
180° = π rad ≈ 3.14159 rad. Half a full rotation; a straight angle.
How many radians is 45 degrees?
45° = π/4 rad ≈ 0.785398 rad. Common in navigation offsets and isosceles right triangles.
Why do programming languages use radians?
Calculus and the unit-circle definition of sine and cosine are simplest in radians. Libraries expect radian inputs unless you explicitly convert—use Math.PI / 180 in JavaScript or math.radians() in Python.
What is 1 radian in degrees?
1 rad = 180/π ≈ 57.2957795131°. The catalog stores this factor as the radian-to-degree anchor.
How do I convert degrees to radians in JavaScript?
Multiply by Math.PI / 180: const radians = degrees * (Math.PI / 180). Reverse with degrees = radians * (180 / Math.PI).
Is the degrees-to-radians conversion exact?
Yes. It follows from the definition π rad = 180°. Any small differences come from display rounding or using a truncated value of π, not from an approximate conversion factor.
Popular conversions