Polygon Area Calculator

Find the area of any polygon — an irregular shape from its vertex coordinates (shoelace formula), a triangle from its three sides (Heron's formula), or a regular polygon from its side length. Every mode shows the worked steps.

Input mode

Area
Perimeter
Vertices

Areas are in square units of whatever unit you enter — feed the calculator metres and you get square metres.

Three Ways to Find a Polygon's Area

Pick the mode that matches what you know about the shape.

1

Coordinates — any irregular shape

List the vertices as (x, y) coordinates in order around the polygon, clockwise or counter-clockwise. The shoelace formula, A = ½ |Σ (xᵢ·yᵢ₊₁ − xᵢ₊₁·yᵢ)|, then gives the exact area of any simple (non-self-crossing) polygon, no matter how irregular. This is the general method — it works for triangles, quadrilaterals, and shapes with dozens of sides.

2

Triangle from three sides — Heron's formula

Three side lengths pin a triangle to a single shape, so its area follows from Heron's formula: s = (a + b + c) / 2, then A = √(s(s−a)(s−b)(s−c)). The sides must obey the triangle inequality — each shorter than the other two added together — or no triangle exists.

3

Regular polygon from its side

A regular polygon has n equal sides of length s, so its area is A = (n · s²) / (4 · tan(π/n)). Enter the number of sides and one side length to get the area, perimeter, apothem, and interior angle. Working with a right triangle? The Pythagorean Theorem Calculator finds a missing side; the Circle Area Calculator covers circles.

Why You Can't Get Area From Side Lengths Alone (Except a Triangle)

A triangle is rigid: fix its three sides and the shape can't move, so the area is determined. Add a fourth side and the figure becomes a hinge — a square with sides of 4 has an area of 16, but push it over into a thin rhombus and the four sides are still 4 while the area shrinks toward zero. The same freedom exists for every polygon with four or more sides. That is why this calculator deliberately offers no "quadrilateral from four sides" mode: it would be ill-posed. To pin down an irregular shape you need its coordinates (use the shoelace mode), or a real-world measurement.

Frequently Asked Questions

How do you find the area of an irregular polygon?
Use the shoelace formula. List the polygon's vertices in order (clockwise or counter-clockwise) as (x, y) coordinates, then compute A = ½ |Σ (xᵢ·yᵢ₊₁ − xᵢ₊₁·yᵢ)|, wrapping the last vertex back to the first. This gives the exact area of any simple (non-self-intersecting) polygon, however irregular. Enter your points in the Coordinates mode above and the calculator runs the shoelace sum term by term.
Can you find a polygon's area from its side lengths alone?
Only for a triangle. Three side lengths lock a triangle into a single rigid shape, so Heron's formula gives its area. A quadrilateral or any polygon with four or more sides is not rigid — the same set of side lengths can flex into shapes with different areas (picture a square being pushed into a thin rhombus), so side lengths alone do not determine the area. For those shapes you need the vertex coordinates and the shoelace formula, or you can measure from a photo.
What is Heron's formula?
Heron's formula finds a triangle's area from its three side lengths a, b and c. First compute the semi-perimeter s = (a + b + c) / 2, then A = √(s(s−a)(s−b)(s−c)). For a 3-4-5 triangle, s = 6 and A = √(6·3·2·1) = √36 = 6. The side lengths must satisfy the triangle inequality — each side shorter than the sum of the other two — or no triangle exists.
What is the area of a regular polygon?
A regular polygon has n equal sides of length s. Its area is A = (n · s²) / (4 · tan(π/n)). A regular hexagon with side 1, for example, has area (6 · 1²) / (4 · tan(30°)) ≈ 2.598. The calculator also reports the perimeter (n · s), the apothem (the distance from the centre to the middle of a side) and each interior angle, (n − 2) · 180° / n.