In our daily lives, we often face problems that involve calculating the perimeter of different geometric shapes. When the figure is a polygon, finding its perimeter isn’t difficult: we measure each side and add the lengths. But what if the figure is a circle and we need its “perimeter”, more commonly called the circumference of a circle? Is there a simple and effective way to do this? The answers to this question—along with a clear look at how to find the circumference of a circle—are exactly what we’ll explore in this article.
Circumference of a Circle Formula: Basics and Derivation
Let’s start with the foundation for calculating the circumference of a circle. Before diving into formulas, it’s important to understand how the circumference relates to the radius.
Recall some properties of regular polygons inscribed in a circle. The more sides the polygon has, the closer its perimeter comes to the circle’s actual circumference. As the number of sides increases indefinitely, the polygon’s perimeter approaches the exact circumference. From this idea, we can derive a formula for the circumference in terms of the radius.

Suppose we have two circles with radii R and R1. Inscribe a regular n-gon in each, and denote their perimeters by P and P1, and side lengths by a and a1. Using the side-length formula for a regular n-gon inscribed in a circle, a=2·R·sin(180°/n), we obtain:
![]()
From this, the ratio is
![]()
This equality holds for any n. Now let n→∞. The polygon becomes indistinguishable from the circle, so P→C and P1→C1, where C and C1 are the circumferences. Thus, the limit of P/P1 equals C/C1. From (2), that limit is (2·R)/(2·R1), so C/C1=(2·R)/(2·R1). It follows that C/(2·R)=C1/(2·R1)—the ratio of a circle’s circumference to its diameter is the same for all circles. This constant is the Greek letter π (pi).
From C/(2·R)=π, we get the standard formula:
![]()
Alternative Ways to Calculate the Circumference of a Circle
The formula through the radius can be rewritten using other quantities. Since the diameter equals two radii, the diameter form is
![]()
We can also express C in terms of the area. From A=π·R2, we have R=√(A/π), hence
![]()
These alternative forms make the calculation more flexible, letting you use whichever value—radius, diameter, or area—is known.
Circumference of a Circle: Practical Examples with Solutions
To better understand how to find the circumference, let’s look at a few specific examples. Each one includes a final answer, but try solving them yourself before checking the results.
Example 1: What is the circumference of a circle whose radius is 4 cm?
According to the problem, the radius is R=4. Using the formula C=2⋅π⋅R, we get:
![]()
Thus, the circumference of the circle is 25.12 cm.
Example 2: What is the circumference of a circle whose diameter is 5 cm?
In this case, we have the diameter instead of the radius. Therefore, we use C=π⋅D with D=5:
![]()
Hence, the circumference of the circle is 15.7 cm.
Example 3: What is the diameter of a circle if its circumference is 80 cm?
Here we start with the circumference and want to find the diameter. Using C=π⋅D and substituting C=80, we find D:
![]()
Therefore, the diameter of the circle is 25.478 cm.
Example 4: What should be the length of a metal strip to form a circle enclosing an area of 31400 cm2?
Since the area of a circle is A=π⋅R2, we have π⋅R2=31400. Taking π=3.14, find the radius:
![]()
Next, using formula (3), we find the required length of the strip:
![]()
Note: This problem can also be solved in a slightly simpler way by applying formula (5):
See Also: Expand Your Knowledge of Circle Geometry!
Interested in the circumference of a circle? Explore these related topics:
- What Is a Circle: Definition and Components – Learn the key concepts and elements that define a circle and how they affect its properties.
- Properties of a Circle in Action: Example Problems with Solutions – Deepen your understanding through practical problems and step-by-step solutions.
- Area of a Circle: From Definition to Real-Life Applications – See how to compute area and apply it in real-world tasks.
Programming Challenge: Turn the Flowchart into Code
If you enjoy programming, use the provided flowchart to write a program that calculates the circumference based on user input. Let users choose to enter radius, diameter, or area, then apply the correct formula automatically. Implement it in any language you like—Pascal, Python, or JavaScript. It’s a great way to sharpen algorithmic thinking, practice turning a flowchart into code, and connect geometry with hands-on programming.
