Circle Calculator – Area & Circumference
Source: Archimedes, Measurement of a Circle, Proposition 1 · Source verified August 14, 2026
A circle calculator is a geometry tool that computes a circle's area, circumference, diameter, and radius when any one of these dimensions is provided. The calculator applies fundamental algebraic relationships involving the mathematical constant pi, where the diameter is twice the radius, the circumference is pi times the diameter, and the area is pi times the radius squared. Students, engineers, and machinists use this tool to simplify circular calculations and verify geometric parameters.
Pick which value you know (radius, diameter, circumference, or area). This circle calculator returns the other three dimensions with step-by-step formulas.
Quick Answer
Calculate circle properties from a single known value. Enter the radius, diameter, area, or circumference to compute all other dimensions instantly.
Solve from
Positive number; any consistent unit. · e.g. 5
Solve a circle from any of radius, diameter, circumference, or area. Uses π from JavaScript's Math.PI.
Area
78.5398
Exactly 25π, with r = 5
Area = πr² = πd² ÷ 4 · Circumference = 2πr = πd · Diameter = 2r. Circumference and area carry a factor of π, so the decimals shown for them are rounded. Radius and diameter carry no π, and are exact whenever the measurement you entered is. Where a π expression is shown in brackets, that is the exact value your measurement represents, and the decimal beside it is its rounded form.
Examples
Radius 5
diameter 10 · circumference 31.415927 · area 78.539816
Diameter 12
radius 6 · circumference 37.699112 · area 113.097336
Area 50
radius 3.989423 · diameter 7.978846 · circumference 25.066283
How it works
Formula · A = πr² · A = πd² ÷ 4 · A = C² ÷ (4π) · C = 2πr · d = 2r
A circle is fully described by a single dimension: its radius. The calculator converts your input back to the radius (using the matching inverse formula) and then computes the other three values directly.
Diameter · d = 2r
Circumference · C = 2πr
Area · A = πr²
Area from diameter · A = πd² ÷ 4
Area from circumference · A = C² ÷ (4π)
Inverse: r = d ÷ 2 · r = C ÷ (2π) · r = √(A ÷ π)
The parts of a circle
Every measurement on this page is a different way of describing the same shape. The radius runs from the centre to the edge, the diameter runs all the way across through the centre, and the circumference is the distance once around the outside. The shaded interior is the area.
The diagram shows one circle with three labelled measurements. The radius r is drawn from the centre dot out to the edge. The diameter d is drawn straight across the circle through the centre and is twice the radius. The circumference C is the outer edge itself and equals 2πr. The shaded region inside the edge is the area, which equals πr².
- r
- Centre to edge
- d = 2r
- Across the centre
- C = 2πr
- Once around
- A = πr²
- Surface enclosed
Working it out by hand
The calculator supports four starting points. Each one recovers the radius first, then derives everything else from it. The numbers below are the ones the tool returns for these inputs.
Starting from a radius of 5
- Diameter: d = 2r = 2 × 5 = 10.
- Circumference: C = 2πr = 2 × π × 5 = 10π = 31.415927.
- Area: A = πr² = π × 5² = 25π = 78.539816.
Result: diameter 10, circumference 31.415927, area 78.539816.
Starting from a diameter of 12
- Radius: r = d ÷ 2 = 12 ÷ 2 = 6.
- Circumference: C = 2πr = 12π = 37.699112.
- Area, straight from the diameter: A = πd² ÷ 4 = π × 144 ÷ 4 = 36π = 113.097336.
Result: radius 6, circumference 37.699112, area 113.097336.
Starting from a circumference of 25
- Radius: r = C ÷ (2π) = 25 ÷ 6.283185 = 3.978874.
- Diameter: d = 2r = 7.957747.
- Area, straight from the circumference: A = C² ÷ (4π) = 625 ÷ 12.566371 = 49.73592.
Result: radius 3.978874, diameter 7.957747, area 49.73592.
Starting from an area of 50
- Radius: r = √(A ÷ π) = √(50 ÷ π) = √15.915494 = 3.989423.
- Diameter: d = 2r = 7.978846.
- Circumference: C = 2πr = 25.066283.
Result: radius 3.989423, diameter 7.978846, circumference 25.066283.
Exact answers and rounded ones
Two of the four rows can be exact and two cannot. Radius and diameter carry no π, so a radius of 5 gives a diameter of exactly 10. Circumference and area always carry a factor of π, and π is irrational, so their decimals are rounded however many digits are shown.
Where the multiple of π is a tidy number the calculator prints it in brackets beside the decimal, and that bracketed form is the exact answer: a radius of 5 shows an area of 78.5398 with 25π beside it, and a circumference of 31.415927 with 10π beside it. The rule is a round-trip test. A coefficient earns the bracketed form only if rounding it to four decimal places leaves it unchanged, which is why solving from a circumference of 25 shows no π form at all: the π in the input cancels into the coefficient and nothing exact is left to print.
Edge cases
- Which π is used. The calculator uses JavaScript's Math.PI, 3.141592653589793, correct to about 15 significant digits. School shortcuts are visibly coarser: for a radius of 5, using 3.14 gives an area of 78.5 and using 22 ÷ 7 gives 78.571429, against 78.539816 here.
- Rounding happens at the screen, not in the arithmetic. Every value is computed at full double precision and rounded only on display: the headline area to 4 decimal places, the breakdown rows to 6. Solving from a figure that was itself rounded carries that rounding forward, which is why entering a circumference of 31.416 returns a radius of 5.000012 rather than 5.
- Units are yours to track. The results carry the unit of the input and nothing is converted. A radius in centimetres gives a diameter and circumference in centimetres and an area in square centimetres. There is no unit selector on this page.
- Zero and negative values. Both are rejected before any division or square root runs, and the panel reads Positive numbers only with no figure beside it. A circle of zero or negative size does not exist, so a computed answer would be worse than no answer.
- Anything that is not a number. Text and infinities return an Invalid input message rather than a guess. An empty field simply waits.
- Semicircles and sectors. This page returns the whole circle. Halve the area for a semicircle, but note that its perimeter is half the circumference plus one diameter, so the two do not scale the same way.
Common mistakes
- Squaring the diameter instead of the radius. A = πd² is four times too large. Either halve the diameter first, or use the form that already accounts for it, A = πd² ÷ 4.
- Dropping the brackets around the divisor. In A = C² ÷ (4π) the whole of 4π is the divisor. Written without the brackets, normal precedence divides by 4 and then multiplies by π, which overshoots by a factor of π², a little under ten times.
- Reporting a circumference in square units. Circumference is a length and area is a surface. They are different kinds of quantity, so the two figures are never interchangeable and never comparable.
- Using 3.14 and then quoting six decimals. An answer is only as precise as the weakest number that went into it. If you round π at the start, round the answer at the end.
Your measurements stay in the page
The value you enter is processed by this page in your browser. It is not sent to a server, not stored after you close the tab, and not visible to anyone else. There is no account and nothing to sign up for.
Related geometry calculators
- Circumference calculator when the distance around is the whole of what you want, when you measured a real object and need the answer to stay in inches or metres, or when you are working backwards from a tape reading to a diameter. Stay here for the full set of properties, for starting from an area, and for answers as exact multiples of pi.
- Circumference Formula
- Arc Length Formula
- Area calculator for area across multiple 2D shapes.
- Perimeter calculator for perimeter and circumference in one place.
- Surface area calculator for sphere, cylinder, and cone surface area.
- Volume calculator for sphere, cylinder, and cone volume.
- Exponent calculator for squaring values like r².
- Scientific calculator for general arithmetic with π and exponents.
- All education calculators.
Sources
- Area of a circle: Archimedes, Measurement of a Circle, Proposition 1, which shows a circle has the same area as a right triangle whose legs are the circle's radius and its circumference. That is ½ × r × 2πr, which simplifies to πr².
- Circumference and diameter: the ratio C ÷ d is the definition of π itself, so C = πd = 2πr follows immediately rather than needing a separate proof.
Related Calculators
More tools from Education



