Circle calculator
Enter any one of radius / diameter / circumference / area.
A Circle Calculator computes circle from the inputs you provide. It applies the standard formula to the values you enter and returns the result instantly, without sending any data to a server. Enter radius, diameter, circumference, or area to compute all other values.
Enter any one of radius / diameter / circumference / area.
Area, circumference, diameter from any one given value.
The Circle Calculator computes radius, diameter, circumference, and area from any one known value. Enter any measurement and all others are calculated instantly using π.
A circle is the set of points in a plane equidistant from a central point; that distance is the radius r. The diameter d is twice the radius, the circumference C is the boundary length, and the area A is the flat surface enclosed. These four quantities are bound together by the constant pi, defined as the ratio of any circle's circumference to its diameter (C / d = pi for every circle, regardless of size). Knowing any one of r, d, C, A determines all three others. This calculator handles all four input forms and computes the missing three using the standard Euclidean formulas implemented at IEEE 754 double-precision.
Circles appear in nearly every applied geometry problem: piping and tubing cross-sections, gear and pulley sizing, drum and tank capacity, irrigation circles, pizza and cake sizes, satellite footprints, and the area of mowed lawn under a rotating sprinkler. Knowing how to move quickly between the four quantities saves a step in almost every practical use.
d = 2 r C = 2 pi r = pi d A = pi r^2 = pi d^2 / 4 = C^2 / (4 pi) r = d / 2 = C / (2 pi) = sqrt(A / pi)
A circular garden bed has a measured circumference of 12 metres. Find its radius, diameter, and area.
Notice the area number (11.46) is almost equal to the circumference number (12.00). That is the famous isoperimetric ratio: among all closed plane shapes with a 12 m perimeter, the circle encloses the largest area, here 11.46 sq m. A square with the same perimeter encloses only 9 sq m.
| Radius r | Diameter d | Circumference C | Area A |
|---|---|---|---|
| 1 | 2 | 6.2832 | 3.1416 |
| 2 | 4 | 12.5664 | 12.5664 |
| 3 | 6 | 18.8496 | 28.2743 |
| 5 | 10 | 31.4159 | 78.5398 |
| 10 | 20 | 62.8319 | 314.1593 |
| 15 | 30 | 94.2478 | 706.8583 |
| 20 | 40 | 125.6637 | 1256.6371 |
| 25 | 50 | 157.0796 | 1963.4954 |
| 100 | 200 | 628.3185 | 31415.9265 |
Notice that area scales as the square of radius (doubling r quadruples A) while circumference scales linearly. A pizza of 16-inch diameter has twice the area of a 12-inch, not a third more.
Diameter d equals 2 times radius r. Circumference C equals 2 pi r, equivalent to pi d. Area A equals pi r squared, equivalent to pi d squared over 4. Solving for r when only A is known, r equals the square root of A divided by pi; when only C is known, r equals C divided by 2 pi.
The calculator uses JavaScript's Math.PI constant which holds pi to 15 significant digits (3.141592653589793). For everyday geometry that precision is overkill; even an inch-accurate circle around a soccer field needs only seven digits of pi. Results are rounded to 4 decimal places for display but the underlying calculation runs at full IEEE 754 double precision.
Circumference measures the distance around the circle (a length, units like cm, m, in, ft). Area measures the flat surface inside it (a squared quantity, units like cm squared, m squared, sq in). For a circle of radius 5 cm, circumference is about 31.42 cm but area is about 78.54 sq cm. Always check the units of your answer match the question being asked.
Yes. The drop-down lets you choose which of the four measurements you know. Pick Diameter and enter the value to derive radius (half the diameter), circumference, and area. Pick Area to derive radius (square root of area over pi). The other three values appear instantly in the result table.
Textbooks often approximate pi as 3.14 or 22/7 to keep arithmetic clean. The calculator uses the full 15-digit value, so a radius-10 circle has area 314.1593 here versus 314.0000 in a textbook using 3.14. The full-precision answer is correct; the textbook is using a teaching approximation. Both are valid; the difference is the rounding choice.