Angle Converter
Convert angles between degrees, radians, gradians, turns, and other angular measurement units instantly.
Part of Unit Converters
Common Angles
Understanding Angle Measurements
Angles measure the rotation or separation between two lines or planes that meet at a point. Different angular units serve different purposes in mathematics, engineering, navigation, and science. Degrees are most common in everyday use, radians are standard in calculus and physics, gradians were designed for decimal convenience, and specialized units like arcminutes serve astronomy and surveying.
Understanding angle conversions is crucial for trigonometry, navigation, astronomy, engineering design, computer graphics, robotics, and scientific calculations. The ability to work seamlessly between degree and radian measure is particularly important in advanced mathematics and physics.
Common Angle Units
- Degree (°): Most familiar unit. Full circle = 360°. Based on ancient Babylonian base-60 number system. Used in navigation, surveying, and everyday measurements.
- Radian (rad): SI unit for angles. One radian is the angle subtended by an arc equal in length to the radius. Full circle = 2π radians ≈ 6.283 rad. Essential for calculus and physics.
- Gradian (grad or gon): Decimal-based unit where full circle = 400 gradians. Right angle = 100 grad. Used in some European surveying. Designed for metric system compatibility.
- Turn (revolution): Full rotation = 1 turn. Simple and intuitive. Used in mechanical engineering and animation. Also called cycle or rotation.
- Arcminute ('): 1/60 of a degree. Used in astronomy, navigation, and geographic coordinates. One degree = 60 arcminutes.
- Arcsecond ("): 1/60 of an arcminute, or 1/3600 of a degree. Used for precise astronomical measurements and surveying.
- Milliradian (mrad): 1/1000 of a radian. Used in military targeting and optics. Approximately 0.057°.
Real-World Applications
- Mathematics and Calculus: Radians are mandatory for derivatives of trigonometric functions. The derivative of sin(x) is cos(x) only when x is in radians.
- Navigation: Compass headings use degrees (0-360°). GPS coordinates use degrees, minutes, and seconds. A heading of 90° means due east.
- Astronomy: Angular separation of stars measured in degrees, arcminutes, and arcseconds. The Moon's diameter is about 0.5° or 30 arcminutes.
- Engineering: Mechanical rotations often use radians per second for angular velocity. Gears and cams require precise angle specifications.
- Computer Graphics: 3D rotations typically use radians. Game engines and animation software convert between degrees (user-friendly) and radians (calculation-efficient).
- Surveying: Land surveys use degrees, minutes, seconds for directions. Some countries use gradians for cadastral surveys.
Conversion Reference
- 360° = 2π rad = 400 grad = 1 turn
- 180° = π rad ≈ 3.14159 rad
- 90° = π/2 rad ≈ 1.5708 rad = 100 grad
- 1° = 0.01745 rad = 60' = 3600"
- 1 rad ≈ 57.2958° = 63.662 grad
- 1 grad = 0.9° = 0.01571 rad
Why Radians?
Radians are the "natural" unit for angles in mathematics because they simplify formulas. The arc length formula becomes s = rθ (without extra constants) when θ is in radians. Trigonometric derivatives work cleanly: d/dx sin(x) = cos(x) only in radians. Taylor series and Fourier analysis require radians. This is why scientific calculators have degree/radian modes - most advanced mathematics requires radians.
Degrees, Minutes, Seconds (DMS)
Geographic coordinates often use DMS notation: 40°26'46"N means 40 degrees, 26 arcminutes, 46 arcseconds North latitude. This system divides each degree into 60 minutes, each minute into 60 seconds - a remnant of Babylonian base-60 mathematics. Modern GPS systems can display coordinates in decimal degrees (40.446°) or DMS format.
Common Angle Values
- 0° = 0 rad (no rotation)
- 30° = π/6 rad ≈ 0.524 rad
- 45° = π/4 rad ≈ 0.785 rad (half right angle)
- 60° = π/3 rad ≈ 1.047 rad
- 90° = π/2 rad ≈ 1.571 rad (right angle)
- 180° = π rad ≈ 3.142 rad (straight angle)
- 270° = 3π/2 rad ≈ 4.712 rad
- 360° = 2π rad ≈ 6.283 rad (full circle)
Calculator Modes
When using calculators or programming, always check whether you're in degree or radian mode. Calculating sin(30) gives -0.988 in radian mode but 0.5 in degree mode. This is a common source of errors. Most programming languages (JavaScript, Python, C++) use radians by default for trigonometric functions, requiring conversion from degrees when needed.