The Circle Diameter Calculator finds every fundamental property of a circle — diameter, radius, circumference and area — from whichever single measurement you already have. Most online tools are one-directional (you type the radius, you get the area), but this one solves in any direction: give it the circumference, the area, or the radius, and it will derive the diameter first, then report all four values together. A live SVG diagram highlights the diameter across the full width of the circle, and a collapsible “Show working” panel walks through every algebra step so you can follow or cite the calculation.
Everything runs entirely in your browser — no values are sent to a server.
How the maths works
A circle has one defining length: the radius r, the distance from the centre to any point on the edge. The diameter d is simply the longest chord — a straight line through the centre — and is always exactly d = 2r. All four properties connect through the constant pi (approximately 3.14159):
| You know | Formula to get diameter |
|---|---|
| Radius r | d = 2 x r |
| Circumference C | d = C / pi |
| Area A | d = 2 x sqrt(A / pi) |
Once the diameter (and therefore the radius) is known, the remaining quantities follow:
- Circumference C = pi x d = 2 x pi x r
- Area A = pi x r-squared = pi x (d/2)-squared
The derivation from area involves a square root: rearranging A = pi x r-squared gives r-squared = A / pi, so r = sqrt(A / pi) and d = 2 x sqrt(A / pi). Similarly, from C = pi x d we rearrange to d = C / pi. Both of these routes are shown step-by-step in the “Show working” output.
Worked example
A round table has a circumference of 251.33 cm. What is its diameter, and how much wood is needed to cover the top?
- Find diameter from circumference: d = C / pi = 251.33 / 3.14159 = 80.0 cm
- Find radius: r = d / 2 = 40.0 cm
- Find area: A = pi x r-squared = pi x 1600 = 5026.5 cm-squared (about 0.503 m-squared)
Select “Circumference” in the dropdown, type 251.33, choose “cm” as the unit, and the calculator produces all three results with the full working beneath.
Formula reference
| Quantity | Symbol | Formula using diameter |
|---|---|---|
| Radius | r | d / 2 |
| Circumference | C | pi x d |
| Area | A | pi x (d/2)-squared |
| Diameter from radius | d | 2 x r |
| Diameter from circumference | d | C / pi |
| Diameter from area | d | 2 x sqrt(A / pi) |
The value of pi used internally is Math.PI = 3.14159265358979…, accurate to
full double-precision floating-point. Results are rounded only for display, according
to the decimal-places selector.
Practical uses
Pipes and cylinders. Engineers and plumbers work in outside or inside diameter. Enter the diameter to get the cross-sectional area (for flow-rate calculations) or the circumference (for wrapping insulation).
Wheels and tyres. A wheel’s rolling circumference determines how far it travels per revolution — critical for speedometer calibration and gear ratio calculations. Enter the tyre diameter to get the circumference instantly.
Circular cutting and fabrication. CNC operators, woodworkers and sheet-metal workers often need to know the diameter of a finished disc from its perimeter, or the amount of material a circular blank requires. Enter the circumference or area to back-calculate the diameter.
Education. The step-by-step working makes this tool useful for checking textbook problems or demonstrating how to rearrange circle formulas in a lesson or exam preparation context.
Architecture and landscaping. Circular pools, roundabouts, domes and turrets all need diameter for structural sizing and circumference for perimeter fencing, coping or edging materials.
A note on precision
The formulas here are mathematically exact, but real-world measurements are not. A tape measure reading to 1 mm introduces a relative error of roughly 1 mm / d in the diameter. That error propagates: the circumference error is about 1 mm too, but the area error is about 2 x (1 mm / d) x A — meaning a 1% error in diameter becomes roughly a 2% error in area. For most practical work, 2-4 decimal places is appropriate; the default of 6 is for mathematical exercises where exact values are needed.