Circumference Calculator
Find the circumference of a circle from any single measurement — radius, diameter, or area.
Inputs
Formula: C = 2 × π × r = π × d
Type one number to get the distance around any circle, plus the radius, diameter, and area that go with it. The calculator works in either direction — give it radius, diameter, or area and it back-solves the rest using JavaScript's full-precision π.
How the formula is derived
The circumference of a circle is C = 2 × π × r, where r is the radius and π is the ratio of any circle's circumference to its diameter — a fundamental constant of geometry. Equivalently, C = π × d using the diameter. The fact that this ratio is the same for every circle (regardless of size) is exactly what defines π and is the reason a single formula handles circles from atomic to astronomical scales.
Going from area to circumference takes one extra step. Area is A = π × r², so r = √(A / π). Plug that into C = 2 × π × r and you get the shortcut C = 2 × √(π × A). A circle with area 78.54 has radius about 5 and circumference about 31.42.
Worked example: a bicycle wheel and a running track
A standard 700c road bike wheel has a tire diameter of about 670 mm (about 26.4 in). Circumference = π × 670 ≈ 2,105 mm, or 2.105 meters per revolution. At a cadence of 90 revolutions per minute in a gear ratio of 1:1, the wheel covers 90 × 2.105 = 189.5 meters per minute — about 11.4 km/h. Cyclometers use this exact calculation, which is why entering a wrong tire size produces noticeable speed and distance errors over a ride.
The inner lane of a standard outdoor running track is a 400-meter loop with two 84.39-meter straights and two semicircular ends with a radius of 36.50 meters. Each curve contributes π × 36.50 ≈ 114.67 meters, so the total perimeter is 2 × 84.39 + 2 × 114.67 = 398.12 meters along the kerb plus a small calibration offset, giving the official 400-meter measurement. Outer lanes are longer (each lane adds about 7.66 meters), which is why staggered starts exist.
Common mistakes and unit pitfalls
Mixing radius and diameter. The single most common error is plugging diameter into the formula C = 2 × π × r. If you only know the diameter, either divide by 2 first or use C = π × d.
Forgetting the unit. Circumference is a length, so the unit of the answer is the unit of the radius — not squared, not cubed. If r is in centimeters, C is in centimeters.
Confusing circumference with perimeter. Both measure the boundary of a 2-D shape. 'Perimeter' is the general term and applies to any polygon; 'circumference' is reserved for circles and ellipses. For an ellipse, circumference has no simple closed form and is usually approximated.
Treating π as 3.14. Two decimals are fine for back-of-the-envelope work but introduce a 0.05% error. For engineering, surveying, or anything requiring more than three significant figures, use π to at least six decimals. This calculator uses JavaScript's Math.PI, which is accurate to about 15 decimal places.
Frequently asked questions
What is the formula for circumference?
C = 2 × π × r, where r is the radius. Equivalently, C = π × d using the diameter. A circle with radius 5 in has circumference 2 × 3.14159 × 5 ≈ 31.42 in.
What is circumference vs perimeter?
Circumference is the perimeter of a circle — the total distance around its edge. The word 'perimeter' is more often used for polygons; 'circumference' is reserved for circles and ellipses.
How do I find circumference from the area?
Solve for radius first: r = √(A / π). Then C = 2 × π × r. Or shortcut: C = 2 × √(π × A). A circle with area 78.54 has radius ≈ 5 and circumference ≈ 31.42.
What units does circumference use?
The same linear units as the radius or diameter. If radius is in centimeters, circumference is in centimeters. Unlike area, no squaring is involved.
How accurate is π in this calculator?
We use JavaScript's Math.PI, which gives about 15–17 significant digits — more than enough for every real-world circle measurement.
How is circumference used in everyday life?
Wheel rotations (distance traveled = circumference × revolutions), pipe and cable sizing, sewing patterns, fitness tracker stride/wheel calibration, and pizza-by-the-inch pricing.
More in Geometry
Area, circumference, surface area, and volume for circles, spheres, cylinders, cones, and rectangular prisms — with the formula on every page.
- Area of a Circle Calculator
Find the area of a circle from its radius, diameter, or circumference with the exact formula A = π × r².
- Cylinder Volume Calculator
Volume and surface area of any cylinder from its radius and height using V = π × r² × h.
- Sphere Volume Calculator
Volume and surface area of a sphere from its radius or diameter — uses V = (4/3) × π × r³.
- Cone Volume Calculator
Volume, slant height, and surface area of a cone from base radius and height using V = (1/3) × π × r² × h.
- Rectangular Prism Volume Calculator
Volume, surface area, and diagonal of a rectangular box from length, width, and height (V = L × W × H).
Related calculators
Browse all Education →Area of a Circle Calculator
Find the area of a circle from its radius, diameter, or circumference with the exact formula A = π × r².
Sphere Volume Calculator
Volume and surface area of a sphere from its radius or diameter — uses V = (4/3) × π × r³.
Cylinder Volume Calculator
Volume and surface area of any cylinder from its radius and height using V = π × r² × h.
Cone Volume Calculator
Volume, slant height, and surface area of a cone from base radius and height using V = (1/3) × π × r² × h.
Rectangular Prism Volume Calculator
Volume, surface area, and diagonal of a rectangular box from length, width, and height (V = L × W × H).
Fraction Calculator
Add, subtract, multiply, and divide fractions and mixed numbers — results returned simplified, as a mixed number, and as a decimal.
Standard Deviation Calculator
Mean, median, mode, range, sample/population standard deviation, variance, quartiles, IQR, and SEM for any list of numbers.
Course Grade Calculator
Weighted course grade from assignments, quizzes, and exams. Shows current grade plus the score needed on remaining work.