Why Is Pi the Same for Every Circle?

Draw a tiny circle. Then draw another circle ten times wider.

The big circle has a much longer circumference. It also has a much longer diameter.

Yet when we divide circumference by diameter, the same number appears.

Why?

Quick Answer

Every circle has the same shape. One circle is just a scaled version of another.

If we make a circle k times larger, every length becomes k times larger.

So the circumference becomes k times larger. The diameter also becomes k times larger.

Their ratio does not change.

A bigger circle has a bigger circumference and a bigger diameter in exactly the same scale. The size changes. The ratio does not.

Do Not Start with C = πd

You may already know this formula:

C = πd

It is correct. But if our question is why the ratio is the same, using that formula as the explanation would hide the reason.

So let us go one step deeper.

Imagine Enlarging a Circle

Start with one circle.

Now enlarge the whole figure by a scale factor of 3.

The radius becomes three times longer. The diameter becomes three times longer. Every small piece of the curved boundary becomes three times longer too.

Therefore the entire circumference becomes three times longer.

D → 3D

C → 3C

Now compare the new ratio:

(3C) / (3D) = C / D

The 3 cancels.

The same argument works for any positive scale factor k.

A circle scaled to a larger circle, showing that both circumference and diameter are multiplied by the same factor k

Figure 1. Scale the whole circle by the same factor, and circumference and diameter scale together.

The Shape Is Doing the Work

Two circles of different sizes are similar figures. They have the same shape and differ only by scale.

In similar figures, corresponding lengths change by the same scale factor. A circle has no extra shape parameter that changes when its radius changes.

That is why making the circle larger cannot change the circumference-to-diameter ratio.

Wolfram MathWorld states the scaling argument directly: scaling a plane figure by a factor s scales its perimeter by s, while the diameter of the circle scales by the same factor.[1]

So What Is π?

Now we can name the invariant ratio.

π = circumference / diameter

π is not different for a coin, a wheel, and a planet-sized circle.

If they are ideal circles in ordinary Euclidean geometry, changing their size does not change this ratio.

OpenStax gives the same standard definition: π is the constant ratio of circumference to diameter.[2]

Try Three Circles Without Measuring a Curve

Our earlier polygon idea gives another way to see the scaling.

Put the same 96-sided regular polygon pattern into circles with different radii.

For radius r, the modern polygon bounds are:

inside perimeter = 2nr sin(π / n)

outside perimeter = 2nr tan(π / n)

The diameter is:

D = 2r

Divide each perimeter by the diameter. The radius cancels.

inside / D = n sin(π / n)

outside / D = n tan(π / n)

The size of the circle has disappeared from the ratio.

Python — Change the Radius

This modern reconstruction uses a 96-sided polygon. Change only the radius and watch the normalized bounds.

Python — the radius cancels
import math

n = 96

for r in [0.5, 1, 2, 5, 10]:
    diameter = 2 * r

    inside = 2 * n * r * math.sin(math.pi / n)
    outside = 2 * n * r * math.tan(math.pi / n)

    print(
        "r =", r,
        "inside/D =", inside / diameter,
        "outside/D =", outside / diameter
    )

Predict first.

Change the radius to 1000. Will either normalized bound change?

Then change n = 96 to 192. What changes now — the effect of size, or the quality of the approximation?

Size and Accuracy Are Different Questions

This experiment separates two things.

Changing r changes the size of the circle. It does not change the normalized ratio.

Changing n changes how finely the polygon follows the circle. It changes the approximation error.

That distinction is useful:

Radius controls size. Polygon side count controls approximation. Neither changes the underlying circle ratio.

People Knew the Ratio Was Constant Long Before They Knew Its Digits

The idea that circumference divided by diameter is constant is very old. MacTutor notes that its origin is so ancient that it cannot be traced to one discoverer.[3]

Early cultures measured circles and found approximations to the ratio. Much later, Archimedes produced the first known theoretical calculation with rigorous upper and lower bounds.[3]

And the symbol π came much later still. William Jones used π for the modern circumference-to-diameter ratio in 1706, and Euler later helped make the notation standard.[4]

One Important Boundary

Everything in this article is about ordinary Euclidean geometry.

On a curved surface, the relationship between circumference and diameter can behave differently. That is a deeper question for a much later part of our journey.

For now, our circle lives on a flat plane.

Words to Keep

ratio
One quantity divided by another.

scale factor
A number that tells us how much every length in a figure is enlarged or reduced.

similar
Having the same shape, even if the size is different.

invariant
Something that stays unchanged while something else changes.

One Sentence to Keep

Every circle has the same circumference-to-diameter ratio because scaling a circle multiplies both lengths by the same factor.

What Should We Ask Next?

We now know why π is the same for every circle.

But people often replace π with a simple fraction:

22/7

It is surprisingly close. But it is not π.

Our next question is:

Why Is 22/7 So Close to Pi — But Not Pi?

Previous: Did Archimedes Invent the Idea of a Limit?

Related: How Did Archimedes Calculate Pi Without a Calculator?

Sources & Further Reading

  1. Eric W. Weisstein, “Circle” — Wolfram MathWorld; includes the scaling reason that the circumference-to-diameter ratio is constant.
  2. OpenStax, Contemporary Mathematics, “Polygons, Perimeter, and Circumference” — defines π as the constant ratio of circumference to diameter.
  3. MacTutor History of Mathematics, “A History of Pi” — historical discussion of the ancient circumference-to-diameter ratio and Archimedes' theoretical bounds.
  4. MacTutor, “Earliest Uses of Symbols for Constants” — documents William Jones's 1706 use of π for the modern circle ratio and Euler's later adoption.

Mathematical note: the polygon formulas and Python code are modern tools used to show scaling and normalization. They are not presented as ancient notation.