3tej home
← Math

What is Circle Calculator?

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.

Interactive calculator

Circle calculator

Enter any one of radius / diameter / circumference / area.

Radius-
Diameter-
Circumference-
Area-

Circle Calculator

Area, circumference, diameter from any one given value.

About this tool

The Circle Calculator computes radius, diameter, circumference, and area from any one known value. Enter any measurement and all others are calculated instantly using π.

About the circle calculator

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.

The four formulas

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)
  • Diameter to radius and back. d = 2r so r = d / 2. The diameter passes through the centre; it is always exactly double the radius.
  • Circumference. C = 2 pi r approximately equals 6.2832 r. For a circle with radius 1 m, the boundary is roughly 6.28 m around.
  • Area. A = pi r squared approximately equals 3.1416 r squared. A circle of radius 1 m has area roughly 3.14 square metres.
  • Back-solving from area or circumference. r = sqrt(A / pi) when only the area is given; r = C / (2 pi) when only the circumference is given. The calculator uses these inverse forms automatically when you pick the matching input.

Worked example

A circular garden bed has a measured circumference of 12 metres. Find its radius, diameter, and area.

  1. Pick Circumference. Select Circumference in the calculator drop-down and enter 12.
  2. Radius. r = C / (2 pi) = 12 / (2 * 3.141593) = 12 / 6.283185 = 1.9099 m.
  3. Diameter. d = 2 r = 2 * 1.9099 = 3.8197 m.
  4. Area. A = pi r squared = 3.141593 * 1.9099 squared = 3.141593 * 3.6478 = 11.4592 sq m.
Result: r = 1.9099 m, d = 3.8197 m, C = 12.0000 m, A = 11.4592 sq m. A 12-metre rope laid out as a circle wraps an area of about 11.5 square metres of soil.

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.

Quick reference for common radii

Radius rDiameter dCircumference CArea A
126.28323.1416
2412.566412.5664
3618.849628.2743
51031.415978.5398
102062.8319314.1593
153094.2478706.8583
2040125.66371256.6371
2550157.07961963.4954
100200628.318531415.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.

Pitfalls to watch for

  • Mixing radius and diameter. Many real-world specs (pipe sizes, drill bits, wheels) quote diameter, not radius. Halve before plugging into the radius slot, or pick Diameter in the drop-down.
  • Wrong units of area. Area is units squared. A 5 cm radius circle has area 78.54 sq cm, not 78.54 cm. Forgetting the squared unit shows up constantly in homework grading and DIY material orders.
  • Approximating pi as 22/7 or 3.14. Those are 0.04 percent and 0.05 percent low respectively. Fine for back-of-envelope; for engineering tolerances under a millimetre on a 1-metre object, use the full Math.PI value.
  • Confusing area with surface area of a sphere. The area of a flat circle is pi r squared. The surface area of a sphere is 4 pi r squared (exactly four times larger). Confusing them is the most common geometry mistake.
  • Using diameter in the circumference formula by accident. C = pi d, not 2 pi d. Double-counting doubles the perimeter.
  • Floating-point rounding on long chains. If you chain area then back-solve to radius and then forward to circumference, you may see the last digit drift by 1 ULP. The calculator shows four decimals to mask this; for high precision compute directly from the original input.

Related geometry calculators

Frequently asked questions

What are the formulas for radius, diameter, circumference, and area of a circle?

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.

How precise is pi in the calculator?

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.

What is the difference between area and circumference?

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.

Can I use the calculator with diameter or area as the input instead of radius?

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.

Why does my answer differ from the textbook by a tiny fraction?

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.

IT
India Tools Editorial
Calculators & explainers maintained by the India Tools team.