Area Calculator \u2014 Formulas for Every Common Shape
Blog › Math · 11 min read · Published 2026-06-01
Comprehensive area formulas for rectangles, triangles, circles, trapezoids, polygons, and irregular plots \u2014 with worked examples for flooring, painting and land surveying.
Why Area Matters Beyond Geometry Class
Area calculations drive every flooring estimate, paint quote, lawn-seed purchase, solar-panel layout and property valuation. A 5% area error in a 200 m² flooring job is 10 m² of wasted material — easily \$500 in tile. The Area Calculator handles every shape covered below in one interface; this article explains the formulas behind it so you can sanity-check the answer.
Rectangles and Squares — The Foundation
Area = length × width. A 12 m × 8 m room is 96 m². For an L-shape, split into two rectangles and add their areas. For walls (paint estimates), multiply perimeter by height, then subtract door and window areas (typically 2 m² per door, 1.5 m² per window). Add 10% for two-coat coverage and waste.
Triangles — Three Useful Formulas
The base × height formula, A = ½ × b × h, works whenever you can drop a perpendicular. When you only know three sides, use Heron's formula: s = (a + b + c) / 2; A = √(s(s − a)(s − b)(s − c)). When you know two sides and the included angle, A = ½ × a × b × sin(C). Surveyors use Heron's because angles are noisier to measure than tape-pulled distances.
Circles, Sectors and Annuli
Circle area: A = π × r². A 3 m-radius patio is π × 9 = 28.27 m². Sector (pizza slice) area: A = ½ × r² × θ (θ in radians) or A = (θ°/360) × π × r². Annulus (ring): A = π × (R² − r²). Use the annulus formula for circular paths, donut-shaped garden beds, or the cross-section of pipes.
Trapezoids and Parallelograms
Trapezoid area: A = ½ × (a + b) × h, where a and b are the parallel sides. Common for roof slopes, irrigation ditches and trapezoidal land parcels. Parallelogram area: A = base × perpendicular height — not slant height. Get this wrong and your tile order will be short by exactly the cosine of the slope angle.
Regular Polygons
For a regular n-sided polygon with side length s: A = (n × s²) / (4 × tan(π/n)). Or, given the apothem a (distance from center to side midpoint): A = ½ × perimeter × a. Hexagons (n = 6) reduce to A = (3√3 / 2) × s² ≈ 2.598 × s² — useful for tiling, honeycomb solar arrays and hexagonal pavers.
Irregular Land Plots — The Surveyor's Methods
Two methods dominate. (1) Triangulation: split the plot into triangles by running diagonals from one corner, measure each triangle's sides, sum Heron's-formula areas. (2) The Shoelace formula: for vertices (x₁,y₁)…(xₙ,yₙ), A = ½ |Σ(xᵢyᵢ₊₁ − xᵢ₊₁yᵢ)|. Modern GPS rovers and our Land Area Calculator use the Shoelace formula on lat/long coordinates after projecting them to a flat plane.
Curved Boundaries — Simpson's Rule
For a plot with a winding river or curved road frontage, divide the length into an even number of strips of width h. Measure the perpendicular offset y at each division. A = (h/3) × [y₀ + yₙ + 4×(odd offsets) + 2×(even offsets)]. This is Simpson's rule and it converges quadratically — 10 offsets usually beat hand-triangulation by 1–2% accuracy.
Surface Area of 3D Shapes
Painting, fabric, plating and HVAC duct insulation jobs need surface area, not volume. Sphere: A = 4πr². Cylinder (closed): A = 2πr² + 2πrh. Cone (closed): A = πr² + πrℓ, where ℓ is slant height = √(r² + h²). The Cone Calculator and Cylinder Calculator output both volume and total surface area so you can quote insulation or paint in one step.
Units — Where Estimates Go Wrong
Mixing metric and imperial accidentally is the most common job-site disaster. 1 m² = 10.764 ft². 1 acre = 43,560 ft² = 4,047 m². 1 hectare = 10,000 m² = 2.471 acres. Convert your inputs first, calculate area second, then convert back if the customer wants imperial. Doing area math with mixed inputs almost always produces a 10× error that nobody catches until the materials arrive.
Practical Tips for Accurate Estimates
Always measure twice and add 10% waste — 15% if the room has many cuts (diagonals, complex tile patterns). For irregular yards, GPS your boundary points with a phone app, export GeoJSON, and run it through the Shoelace formula. For interior projects, sketch the room, label every dimension, calculate sub-areas separately, then add. Document the calculation: a clean estimate sheet justifies the price and survives the inevitable 'are you sure?' from the customer.