An angle is a quantity used to measure rotation or the amount of opening between two rays. In everyday life, the most familiar system is degrees: dividing a full circle into 360 equal parts, each 1 part being 1 degree (°). This division originated from the ancient Babylonian sexagesimal system, and because 360 is easily divisible by 2, 3, 4, 5, 6, 8, 9, 10, 12, etc., it has persisted to this day in surveying, navigation, engineering, and everyday expression.
The radian (rad) is the standard unit of angle in the International System of Units (SI). Its definition is: when the length of an arc equals the radius, the central angle subtended by that arc is 1 radian. Since the circumference is 2πr, 1 turn = 2π rad ≈ 6.2832 rad. Radians make calculus, trigonometric functions, and physics formulas the most concise; for example, lim(x→0) sin x/x = 1 holds only when x is in radians.
Arcminutes (') and arcseconds (") are subdivisions of the degree system: 1° = 60', 1' = 60", so 1° = 3600". Milliradians (mrad) are thousandths of a radian: 1 mrad = 0.001 rad ≈ 0.0573°. Arcminutes/arcseconds are common in astronomy, geographic coordinates, and precision measurement; milliradians are common in ballistics, optics, laser ranging, and engineering small-angle estimation.
Right angles and turns are two more intuitive angle units: 1 right angle = 90°, 1 turn (revolution) = 360° = 2π rad. Right angles are suitable for describing perpendicular relationships in geometry; turns are suitable for describing rotation counts, such as motor RPM (revolutions per minute), which is essentially the number of turns rotated per unit time.
Why distinguish between degrees and radians? In mathematics and programming, trigonometric functions almost always default to radian input. If you pass 90 directly as degrees to Python's math.sin, it computes sin(90 rad), which is approximately 0.894, not the expected 1. Many beginners' first bug comes from here. This tool puts both units side by side so you can quickly verify before entering code or formulas.
All conversions on this page are pure linear proportional relationships with no offset like temperature. The core formulas are just two: rad = deg × π/180, deg = rad × 180/π. The remaining units (arcminute, arcsecond, right angle, turn, milliradian) are all derived from these two relationships, so conversion results are precise and reproducible.