Shoelace Formula — Definition, Formula & Examples
The Shoelace Formula calculates the area of any simple polygon when you know the coordinates of its vertices. You multiply pairs of coordinates in a crisscross pattern — resembling the lacing of a shoe — then take half the absolute value of their difference.
Given a simple polygon with vertices listed in order (with ), the signed area is , and the area equals the absolute value of this quantity.
Key Formula
Where:
- = Area of the polygon
- = Coordinates of the $i$-th vertex
- = Number of vertices, with $(x_{n+1}, y_{n+1}) = (x_1, y_1)$
How It Works
List the polygon's vertices in order, either clockwise or counterclockwise. For each consecutive pair of vertices, compute . After the last vertex, wrap back to the first. Sum all these cross products, take the absolute value, and divide by 2. The formula works for any simple (non-self-intersecting) polygon, whether convex or concave.
Worked Example
Problem: Find the area of the triangle with vertices (1, 2), (4, 6), and (7, 1).
Step 1: Compute each cross product using consecutive vertex pairs:
Step 2: Continue with the next pair:
Step 3: Wrap back to the first vertex:
Step 4: Sum the results, take the absolute value, and divide by 2:
Answer: The area of the triangle is 13.5 square units.
Why It Matters
The Shoelace Formula appears frequently in coordinate geometry problems on the SAT, AMC, and other math competitions. It is also used in computer graphics and GIS software to compute areas of irregular shapes defined by GPS coordinates.
Common Mistakes
Mistake: Forgetting to wrap the last vertex back to the first vertex.
Correction: Always include the term to close the polygon. Omitting it gives an incorrect area.
