Mathwords logoMathwords

Area of Irregular Polygons — Definition, Formula & Examples

The area of an irregular polygon is the amount of space enclosed by a polygon whose sides and angles are not all equal. Since there is no single formula like there is for rectangles or regular polygons, you typically break the shape into simpler pieces or use a coordinate-based method.

For a polygon with vertices that do not share uniform side lengths or interior angles, its area can be computed by decomposing the region into triangles, rectangles, or other standard shapes and summing their areas, or by applying the Shoelace Formula when vertex coordinates are known.

Key Formula

A=12i=1n(xiyi+1xi+1yi)A = \frac{1}{2} \left| \sum_{i=1}^{n} (x_i\,y_{i+1} - x_{i+1}\,y_i) \right|
Where:
  • AA = Area of the polygon
  • (xi,yi)(x_i, y_i) = Coordinates of the i-th vertex, listed in order around the polygon
  • nn = Number of vertices (with vertex n+1 wrapping back to vertex 1)

How It Works

There are two main strategies. The first is decomposition: draw lines inside the polygon to split it into rectangles, triangles, or trapezoids, find each smaller area, then add them up. The second is the Shoelace Formula, which works when you know the coordinates of every vertex. List the vertices in order around the polygon, cross-multiply neighboring coordinates, and the formula gives the total area directly. For shapes drawn on a grid, you can also count full and partial squares, but decomposition or the Shoelace Formula is more reliable.

Worked Example

Problem: Find the area of a quadrilateral with vertices A(0, 0), B(4, 0), C(5, 3), and D(1, 4).
Step 1: List the vertices in order and set up the Shoelace sums. Multiply each x by the next y, then each y by the next x.
xiyi+1=(0)(0)+(4)(3)+(5)(4)+(1)(0)=0+12+20+0=32\sum x_i y_{i+1} = (0)(0) + (4)(3) + (5)(4) + (1)(0) = 0 + 12 + 20 + 0 = 32
Step 2: Compute the second sum in the same cyclic order.
yixi+1=(0)(4)+(0)(5)+(3)(1)+(4)(0)=0+0+3+0=3\sum y_i x_{i+1} = (0)(4) + (0)(5) + (3)(1) + (4)(0) = 0 + 0 + 3 + 0 = 3
Step 3: Subtract and take half the absolute value.
A=12323=12(29)=14.5A = \frac{1}{2}|32 - 3| = \frac{1}{2}(29) = 14.5
Answer: The area of the quadrilateral is 14.5 square units.

Why It Matters

Real-world plots of land, floor plans, and map regions are almost never perfectly regular shapes. Knowing how to find the area of irregular polygons lets you calculate material costs, land measurements, and design layouts accurately.

Common Mistakes

Mistake: Listing the vertices out of order (not sequentially around the perimeter) when using the Shoelace Formula.
Correction: Always list vertices either all clockwise or all counterclockwise. Jumping across the polygon gives a wrong result. Sketch the shape and trace the boundary to confirm the order.