What Are Radians and How Do They Relate to Degrees?

Why does a full circle equal 360 degrees, but also 2π radians? One of those numbers is arbitrary. The other one is built into the circle itself, and once you see why, you'll never forget it.

By Petrus Sheya

July 30, 2026 · 5 min read

Why does a circle have 360 degrees? Ask most people and they shrug. It's just what you're taught. But then you hit a math class and suddenly circles are measured in radians instead, and a full turn is 2π2\pi, roughly 6.28. That's a strange number to build a whole system around.

Here's the twist: degrees are the arbitrary one. Radians are the natural unit, the one built directly into the geometry of a circle. Once you see where that 2π2\pi comes from, you'll wonder why anyone bothers with 360 at all.


What does it even mean to "measure" an angle?

An angle measures how much you've turned. But turned by how much, compared to what?

Degrees answer that by chopping a full turn into 360 equal pieces, for no geometric reason. It's a leftover from ancient Babylonian astronomers, who liked counting in base 60 and figured a year was roughly 360 days. Convenient for calendars. Meaningless for circles.

Radians answer the same question differently. Instead of picking an arbitrary number of slices, they ask: how many radius-lengths does it take to trace this angle's arc? That's it. That's the whole idea.


A radian is a ruler made of radius

Picture a piece of string exactly as long as the circle's radius. Now bend that string along the circle's edge, starting from wherever you like. The angle you sweep out, from the center, to where the string starts, to where it ends, is defined as one radian.

Not a fraction of 360. Not a human convention. Just the radius, measured against itself.

Drag the angle and watch how many "radius lengths" fit along the arc, that count is the angle in radians.

1r1 radiussame length,wrapped on the arc
Angle1.00 rad
In degrees57.3°
Radius-lengths on arc1.00

Drag the slider and count the red ticks. Each one marks off exactly one radius-length along the arc. When the angle equals 1 radian, the arc length equals the radius, exactly. That's the definition, and it's the only thing you need to remember:

θ (in radians)=arc lengthradius\theta \text{ (in radians)} = \frac{\text{arc length}}{\text{radius}}

We write this as θ=s/r\theta = s / r, where ss is the arc length. Rearranged, it also tells you the arc length directly: s=rθs = r\theta. No conversion factor, no 360, just the radius doing the measuring.


So how many radius-lengths fit around a whole circle?

Here's the interesting part. If one radian is "one radius-length of arc," how many of those fit around the entire circumference?

You already know the formula for circumference: 2πr2\pi r. Divide that by the radius, and the rr cancels:

2πrr=2π\frac{2\pi r}{r} = 2\pi

A full circle is 2π2\pi radians. Not because anyone decided it should be. Because that's literally how many radius-lengths wrap around the rim.

Watch the wheel roll out its own rim. One full turn covers 2π ≈ 6.283 radius-lengths, that's a full circle in radians.

012345672π ≈ 6.283
Rolled0.00 r
Angle turned0.00 rad
In degrees0°

Watch the wheel roll along the ruler. Each mark on the baseline is one radius-length. By the time the wheel completes exactly one full rotation, the mark it's rolled past reads 2π6.2832\pi \approx 6.283. Not a clean number, but an honest one, it's just what the geometry gives you.


Degrees still work, they're just borrowed

None of this means degrees are wrong. They're a perfectly fine unit, the same way inches and centimeters are both fine for measuring length. Degrees are just a human-chosen scale, while radians come straight from the shape being measured.

That means converting between them is just a unit conversion, like feet to meters. Since a full turn is both 360°360° and 2π2\pi radians, we get:

360°=2π radians1°=π180 radians360° = 2\pi \text{ radians} \quad \Longrightarrow \quad 1° = \frac{\pi}{180} \text{ radians}

Drag the handle around the dial, degrees and radians update together so you can feel how they line up.

0°30°60°90°120°150°180°210°240°270°300°330°
Degrees60.0°
Radians1.047
Nice fractionπ/3 rad

Drag the handle around and watch both readouts move together. Notice how the "nice" angles in degrees, 30°, 45°, 60°, 90°, land on equally nice fractions of π\pi in radians. That's not a coincidence, it's the same conversion factor showing up everywhere: π/6\pi/6, π/4\pi/4, π/3\pi/3, π/2\pi/2. Worth memorizing those five, since they show up constantly in trigonometry.


The conversion is just a straight line

Once you have the ratio π/180\pi/180, converting is nothing more than multiplying:

radians=degrees×π180,degrees=radians×180π\text{radians} = \text{degrees} \times \frac{\pi}{180}, \qquad \text{degrees} = \text{radians} \times \frac{180}{\pi}

That's a proportional relationship, degrees and radians scale together at a fixed rate. Graph one against the other and you don't get a curve, you get a straight line through the origin.

Degrees and radians sit on a straight line through the origin, slide along it and both readouts move together at a fixed rate.

30°45°60°90°180°270°360°0π/2π3π/2
Degrees90°
Radians1.571
Slopeπ/180 ≈ 0.01745

Slide along the line and watch the dashed projections hit both axes at once. The slope never changes, about 0.01745 radians per degree, which is just π/180\pi/180 written as a decimal. That's the entire conversion. No table to memorize, just one multiplication.


Why bother with radians at all?

If degrees work fine for everyday angles, why do calculus, physics, and programming languages insist on radians?

Because radians make the relationship between angles and arc lengths, and later, angles and rates of change, come out clean. The formula s=rθs = r\theta only works when θ\theta is in radians. Try it in degrees and you'd need to drag that ugly π/180\pi/180 factor into nearly every formula involving circles, rotation, or oscillation. Radians are the unit where the geometry stops needing translation.


The short version

A degree is one 360th of a turn, a number chosen by convention. A radian is the angle where the arc length equals the radius, a number built into the circle itself. Because the full circumference is 2πr2\pi r, a complete turn works out to exactly 2π2\pi radians. Converting between the two is just scaling by π/180\pi/180, a straight line, not a lookup table. Radians aren't harder than degrees, they're just honest about where the number comes from.


All visualizations are interactive React components running entirely in your browser, built with plain SVG and requestAnimationFrame. No libraries beyond React.