User Rating 0.0
Total Usage 0 times
Enter a positive number
Quick Presets:
Is this tool helpful?

Your feedback helps us improve.

About

Circumference miscalculation propagates through every dependent measurement: pipe lengths, belt drives, gear ratios, fence material estimates. A 1% error on a circle with r = 5m yields a perimeter off by 0.314m - enough to ruin a weld joint or leave a gap in fencing. This calculator computes C = 2πr using IEEE 754 double-precision π (15 significant digits). It accepts either radius or diameter as input and converts between 8 length units (mm through miles). Precision is adjustable from 0 to 15 decimal places. Note: the tool assumes a perfect Euclidean circle. Real-world objects exhibit manufacturing tolerances that this idealized formula does not capture.

circle perimeter circumference calculator circle calculator geometry 2πr pi

Formulas

The perimeter of a circle (circumference) is the total arc length of its boundary. Two equivalent forms exist depending on whether the input is radius or diameter.

C = 2πr
C = πd

Where C = circumference (perimeter), r = radius (distance from center to edge), d = diameter (d = 2r), and π 3.141592653589793. The relationship d = 2r means both forms are algebraically identical. This calculator also derives the area for reference:

A = πr2

Where A = enclosed area of the circle in square units of the chosen length unit.

Reference Data

RadiusDiameterCircumferenceCommon Use Case
0.5 mm1 mm3.1416 mmWatch gears, micro-bearings
5 mm10 mm31.416 mmBolts, dowel pins
12.7 mm25.4 mm79.796 mm1-inch pipe OD
50 mm100 mm314.159 mmFlanges, discs
0.15 m0.30 m0.9425 mDinner plates, small wheels
0.33 m0.66 m2.0735 mBicycle wheel (26″)
0.5 m1 m3.1416 mManhole covers, round tables
1.5 m3 m9.4248 mTrampolines, round pools
5 m10 m31.416 mWater tanks, silos
15 m30 m94.248 mRoundabout traffic islands
45.72 m91.44 m287.30 mBaseball diamond infield arc
100 m200 m628.318 mSports stadium footprint
500 m1 km3141.59 mRadio tower coverage radius
6371 km12742 km40030.17 kmEarth (mean equatorial approx.)
1737.4 km3474.8 km10917.0 kmMoon
69911 km139822 km439264 kmJupiter

Frequently Asked Questions

The calculator uses JavaScript's Math.PI, which stores π as a 64-bit IEEE 754 double-precision float: 3.141592653589793 (15 significant digits). This exceeds the precision needed for any practical engineering application. NASA's Jet Propulsion Laboratory uses only 15 digits of π for interplanetary navigation.
All conversion factors used are exact definitions (e.g., 1 in = 25.4 mm exactly, 1 ft = 0.3048 m exactly). No approximation is introduced by the unit system itself. Rounding only occurs at the display step, controlled by your chosen decimal places.
No. An ellipse has no closed-form perimeter formula. Ramanujan's approximation C π(3(a + b) (3a + b)(a + 3b)) is commonly used, but this tool is scoped to perfect circles only.
Perimeter and area are the two fundamental metrics of any circle. In material estimation (e.g., fencing + ground cover), both are almost always needed together. Displaying A = πr2 alongside C = 2πr eliminates a second lookup.
JavaScript's Number.MAX_SAFE_INTEGER is 9007199254740991. The calculator accepts any positive number up to that limit. For astronomical scales (e.g., planetary orbits), select km and enter the radius directly. Values of zero or negative numbers are rejected with an error message.
Yes. Thermal expansion changes the physical radius. For steel, the linear expansion coefficient is approximately 12 × 10−6 per °C. A steel ring with r = 1 m heated by 100°C gains roughly 7.5 mm in circumference. This tool calculates the idealized geometric perimeter. Apply material-specific corrections separately.