By EnginStack Engineering Team | Verified by engineers, built on NIST metrology standards About →
rad
57.2958 °
1 rad = 57.2958° 1° = 0.0175 rad

Verified against NIST Special Publication 811 and BIPM SI definitions. The conversion factor is exact and traceable to the 1959 treaty constants.

How to Convert Radians to Degrees

Converting radians to degrees is the most frequent angle conversion in applied science — it's how you interpret MATLAB's atan2() output as a heading, how you read a quaternion-derived Euler angle from an IMU, and why every phase angle computed by a network analyzer appears in degrees on the display despite being processed in radians internally. The conversion is defined by the relationship: π radians = 180°. Multiply radians by 180/π (approximately 57.2958). A full circle is 2π rad = 360°; a right angle is π/2 rad = 90°; the angular diameter of the Moon as seen from Earth is approximately 0.009 rad = 0.52°. This conversion is the last step in virtually every scientific algorithm that presents angular output to a human operator.

The Conversion Formula

° = rad × 180 / π

Worked Examples

Example 1: Convert π/2 rad to degrees

π/2 × 180/π = 90° (a right angle — the output of atan2(1, 0) in every programming language)

Example 2: Convert 2 rad to degrees

2 × 180/π = 114.5916° (an obtuse angle — typical of a satellite's Earth-covering beamwidth)

Example 3: Convert 0.01745 rad to degrees

0.01745 × 180/π = 1.00° (the angular width of your thumb at arm's length)

Common Radians to Degrees Conversions

Radians Degrees
π/6 —.5236 rad 30°
π/4 —.7854 rad 45°
π/3 —.0472 rad 60°
π/2 —.5708 rad 90°
π —.1416 rad 180°
2π —.2832 rad 360°

Related Unit Converters

Frequently Asked Questions

How do I convert radians to degrees?

Multiply radians by 180/π (approximately 57.2958). Formula: ° = rad × 180 / π. For a quick estimate, 1 rad — 7.3°. Divide radians by 0.01745 for a more precise conversion.

Why do engineers prefer degrees for display but radians for computation?

Degrees are intuitive — 60° divides cleanly by 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, etc., making them ideal for human communication. But calculus requires radians: the small-angle approximation sin θ —— (with less than 1% error for θ < 0.24 rad — 4°) fails if θ is in degrees. Every control system, DSP algorithm, and physics simulation computes in radians internally, then converts to degrees only at the final display layer.

What is the origin of 360 degrees in a circle?

The 360° circle originates from Babylonian astronomy (~2000 BCE), likely because 360 approximates the number of days in a year (365.25) and is a highly composite number with 24 divisors. The radian, by contrast, was formalized by James Thomson (Lord Kelvin's brother) in 1873 and adopted by ISO in 1960 as the SI derived unit for plane angle. The 360° standard has survived 4,000 years of mathematical evolution — a testament to its practical convenience for navigation, surveying, and everyday communication.

Engineering Context

The radian-to-degree conversion is the final transform in every system where the machine computes in radians but the human reads in degrees — which is nearly every engineered system with a display. In aerospace, an AHRS (Attitude and Heading Reference System) fuses 9-axis IMU data (accelerometer + gyroscope + magnetometer) through a Mahony or Madgwick filter that computes quaternion orientation entirely in radians internally, but the PFD (Primary Flight Display) renders pitch and bank in degrees — the conversion runs at 50 Hz on an ARINC 429 bus, and a rounding error of 0.005° per iteration would accumulate to 18° of drift in one hour if the radian-to-degree conversion weren't exact. Boeing's 737 MAX MCAS investigation highlighted how a single AOA (Angle of Attack) sensor discrepancy of 0.55° (0.0096 rad) could trigger repeated nose-down trim — the AOA vane transducer outputs a voltage linearized to degrees, the FCC (Flight Control Computer) converts to radians for the stability augmentation algorithm, and the trim command converts back to degrees for actuator displacement; all three conversions must use identical precision or the feedback loop accumulates error. In radio astronomy, the Very Large Array (VLA) in New Mexico specifies antenna pointing accuracy of 10 arcseconds (1/360° = 4.85 × 10⁻⁵ rad) — achieved by converting celestial coordinates (J2000.0 right ascension in hours-minutes-seconds, declination in degrees-minutes-seconds) to radians for the baseline vector computation in the u-v plane, then back to degrees for the motor encoder feedback. ALMA's 66 antennas in the Atacama Desert achieve 0.6 arcsecond pointing (2.9 × 10⁻⁶ rad) — the radian-to-degree conversion constant is stored as a 64-bit compile-time constant in the TCS (Telescope Control System) C++ codebase, and changing it would invalidate 15 years of validated observing scripts. In medical imaging, CT scanner gantry rotation is specified in degrees/sec (typically 1— rotations/sec = 360— 80°/s), but the filtered back-projection reconstruction algorithm — the Radon transform inverse — integrates over 0 to π radians, not 0° to 180°. The ramp filter |ω| in the frequency domain is derived from the Jacobian of polar-to-Cartesian coordinate conversion, and its mathematical validity depends on the integration limits being exactly π radians. A Siemens Somatom Force CT scanner acquires 1,152 projections per rotation (0.3125° or 0.00545 rad spacing), and each projection's sinogram bin is indexed by radian angle; the 0.3125° spacing corresponds to exactly π/576 rad — the design choice to make the spacing an exact rational multiple of π eliminates interpolation artifacts in the FFT-based reconstruction. In audio DSP, the phase response of an IIR filter is computed by angle(H(e^{jω})) where ω is the normalized radian frequency (0 to π rad/sample) — but plugin GUIs display phase in degrees. Every parametric EQ, every loudspeaker crossover, every phased-array beam-steering system converts arctan(Im/Re) from radians to degrees before drawing the phase plot. The conversion is so pervasive that Intel's x87 FPU included the FLDPI instruction (load π into ST(0)) primarily to accelerate radian-degree conversions in engineering and CAD workloads — the instruction was present from the 8087 in 1980 through the last x87-compatible processor, a 40-year architectural commitment to one constant for one conversion.

More: degrees to radians · Angle Guide