Area of a Circle Calculator
Calculate the area of a circle using its radius, diameter, or circumference — with the formula and full working shown.
Inputs
Formula: A = π × r²
The simplest way to find a circle's area: type one measurement and see the area, plus the other two measurements you did not enter. Works from radius, diameter, or circumference and uses JavaScript's full-precision π for results accurate to about 15 significant digits.
Why area is r-squared, not r
Area of a circle is A = π × r². Pi (π) is approximately 3.14159 — the ratio of any circle's circumference to its diameter, a constant of geometry. Squaring the radius is what makes circle area grow so quickly with size: double the radius and the area increases by a factor of 4 (2²); triple the radius and area grows 9×. This is why a 16-inch pizza has roughly twice the pizza of two 12-inch pizzas, despite costing about the same money.
The (4r²) bounding-square comparison is a useful sanity check. A circle inscribed in a square of side 2r has area πr² ≈ 0.785 × (2r)². That ratio of about 78.5% is fixed for every circle and gives you a quick mental check when something looks off.
Worked example: pizza math and irrigation
Pizza is the textbook example. A 12-inch pizza has radius 6 in and area π × 36 ≈ 113 in². A 16-inch pizza has area π × 64 ≈ 201 in² — 78% more pizza than the 12, not the 33% that the diameter difference suggests. At $14 for the 12 and $19 for the 16, the per-square-inch prices are $0.124 and $0.094 respectively. The 16 is the obvious value if you can finish it.
A center-pivot irrigation system has a 400-meter arm and waters a full circle. Area = π × 400² ≈ 502,655 m² ≈ 124 acres. At a typical Great Plains corn yield of 230 bushels per acre, that single pivot grows about 28,500 bushels per season. Doubling the arm length to 800 m would quadruple the watered area to 248 acres — which is also why pivots are usually limited to a quarter-section (160 acres) on a typical homestead grid.
Going the other direction
From diameter: divide by 2, then apply A = π × r². Or use A = π × d² / 4 directly. A 10-inch pan has area π × 100 / 4 ≈ 78.54 in².
From circumference: solve r = C / (2π), then A = π × r². Or use the shortcut A = C² / (4π). A circle with circumference 31.4 has radius about 5 and area about 78.5.
Sectors and segments. The area of a pie-slice (sector) with central angle θ in degrees is A = π × r² × θ / 360. A segment (the area between a chord and the arc) is the sector area minus the triangle formed by the chord and the two radii.
Annulus (ring). The area of a flat ring between two concentric circles is π × (R² − r²). A washer with outer radius 1 in and inner radius 0.5 in has area π × (1 − 0.25) ≈ 2.36 in².
Frequently asked questions
What is the formula for the area of a circle?
A = π × r², where r is the radius. Pi (π) is approximately 3.14159. So a circle with radius 5 has area 3.14159 × 25 ≈ 78.54 square units.
How do I find the area if I only know the diameter?
Divide the diameter by 2 to get the radius, then apply A = π × r². Or use A = π × d² / 4 directly. A 10 in diameter circle has area π × 100 / 4 ≈ 78.54 in².
How do I find the area from the circumference?
Solve for radius first: r = C / (2π). Then A = π × r². Or shortcut: A = C² / (4π). A circle with circumference 31.4 has radius ≈ 5 and area ≈ 78.5.
Why is the area in square units?
Area measures a 2-dimensional region. If your radius is in inches, the area is in square inches (in²); centimeters give cm²; feet give ft². The unit of length is multiplied by itself.
Is π exactly 3.14?
No — π is irrational, with infinite non-repeating decimals (3.14159265…). 3.14 is a common rounded approximation. This calculator uses JavaScript's full-precision Math.PI for accurate results.
What's the difference between area and circumference?
Area is the space inside the circle (square units). Circumference is the distance around it (linear units). A = π × r²; C = 2 × π × r.
More in Geometry
Area, circumference, surface area, and volume for circles, spheres, cylinders, cones, and rectangular prisms — with the formula on every page.
- Circumference Calculator
Find the circumference of a circle from its radius, diameter, or area using C = 2 × π × r.
- Cylinder Volume Calculator
Volume and surface area of any cylinder from its radius and height using V = π × r² × h.
- Sphere Volume Calculator
Volume and surface area of a sphere from its radius or diameter — uses V = (4/3) × π × r³.
- Cone Volume Calculator
Volume, slant height, and surface area of a cone from base radius and height using V = (1/3) × π × r² × h.
- Rectangular Prism Volume Calculator
Volume, surface area, and diagonal of a rectangular box from length, width, and height (V = L × W × H).
Related calculators
Browse all Education →Circumference Calculator
Find the circumference of a circle from its radius, diameter, or area using C = 2 × π × r.
Sphere Volume Calculator
Volume and surface area of a sphere from its radius or diameter — uses V = (4/3) × π × r³.
Cylinder Volume Calculator
Volume and surface area of any cylinder from its radius and height using V = π × r² × h.
Rectangular Prism Volume Calculator
Volume, surface area, and diagonal of a rectangular box from length, width, and height (V = L × W × H).
Fraction Calculator
Add, subtract, multiply, and divide fractions and mixed numbers — results returned simplified, as a mixed number, and as a decimal.
Cone Volume Calculator
Volume, slant height, and surface area of a cone from base radius and height using V = (1/3) × π × r² × h.
Average Calculator
Mean, median, mode, sum, count, min, max, and range for any list of numbers.
Normal Distribution Calculator
Find P(X<x), P(X>x), and between-range probabilities for any normal distribution with mean μ and SD σ.