Bidirectional angle conversion with visual unit circle, exact π‑fraction results, and step‑by‑step explanation.
Radians are the standard unit of angular measure used in mathematics, physics, and engineering. Unlike degrees, which are arbitrary, the radian is defined by the radius of a circle: 1 radian is the angle subtended by an arc length equal to the radius. This makes calculus elegant — derivatives of trigonometric functions require radians. The conversion factor π rad = 180° bridges the two systems.
θ (rad) = θ (deg) × π / 180 ⟺ θ (deg) = θ (rad) × 180 / π
Memorize: Multiply degrees by π/180 to get radians. Multiply radians by 180/π to get degrees.
Radians make calculus with trigonometric functions elegant because of the fundamental limit:
This leads to the simple derivative formulas:
If degrees were used instead, the derivative formulas would require an awkward constant factor:
This constant factor (π/180 ≈ 0.0174533) would appear in every differentiation and integration involving trig functions, making calculations unnecessarily complicated.
The concept of radian measure was first introduced by Roger Cotes (1714) and later popularized by Leonhard Euler. The term "radian" was first used by James Thomson in 1873 and gradually adopted as the standard unit for angular measurement. Today, the radian is the SI derived unit for angle, essential in scientific computing.
Our converter follows the exact mathematical definition according to ISO 80000-2:2019 (Quantities and units — Part 2: Mathematics), which specifies radians as the coherent SI unit for plane angle. The U.S. National Institute of Standards and Technology (NIST) similarly recognizes the radian as the SI supplementary unit for plane angle.
Example 1: Convert 135° to radians.
Multiply 135 by π/180 = 135π/180 = simplify dividing by 45 → 3π/4 rad ≈ 2.35619 rad.
Example 2: Convert 2.5 rad to degrees.
2.5 × (180/π) ≈ 143.239°.
Our tool automates this process and also detects exact rational multiples of π (e.g., 30° → π/6, 45° → π/4).
| Field | Application of Radians/Degrees Conversion |
|---|---|
| Physics & Engineering | Rotational kinematics: angular velocity ω = dθ/dt (rad/s), torque τ = r × F, wave mechanics (phase constant φ in radians). |
| Computer Graphics & Game Dev | 3D rotations, game development — trigonometric functions in shaders require radians. All major graphics APIs (OpenGL, DirectX, WebGL) and libraries (Unity, Unreal Engine) use radians for rotation functions. |
| Astronomy & Astrophysics | Right ascension, declination conversion; small‑angle approximations where sinθ ≈ θ (in radians) for θ < 0.1 rad. |
| Machine Learning & Robotics | Angle embeddings, rotation matrices for coordinate transforms, quaternion representations of 3D rotations. |
| GPS, GIS & Navigation | Great‑circle distances using the haversine formula require latitude/longitude differences in radians: a = sin²(Δφ/2) + cosφ₁·cosφ₂·sin²(Δλ/2). |
| Programming & Scientific Computing | All standard math libraries (C++ <cmath>, Python math/numpy, MATLAB, R) use radians by default for trigonometric functions. |
A satellite technician needs to adjust an antenna by 2.3 radians. To communicate with a client who expects degrees, the conversion is needed:
Using our converter: instant and error‑free conversion. Additionally, the arc length on a 10m radius dish:
This demonstrates the direct physical interpretation of radians: 1 radian corresponds to an arc length equal to the radius.
| Degrees | Radians (exact) | Decimal Radians |
|---|---|---|
| 0° | 0 | 0.0000 |
| 30° | π/6 | 0.5236 |
| 45° | π/4 | 0.7854 |
| 60° | π/3 | 1.0472 |
| 90° | π/2 | 1.5708 |
| 120° | 2π/3 | 2.0944 |
| 180° | π | 3.1416 |
| 270° | 3π/2 | 4.7124 |
| 360° | 2π | 6.2832 |
The canvas above draws a unit circle (radius = 1). The red ray shows the terminal side of your angle θ (in degrees, measured from the positive x‑axis counterclockwise). The blue arc highlights the radian measure length along the circumference. Coordinates (cosθ, sinθ) are computed in real time — a direct application of radian‑based trig functions. This helps internalize why 360° = 2π rad corresponds to a full revolution.