Overview
Shoelace is the fastest way to compute polygon area from coordinates.
Key Ideas
- For vertices in order, .
- Order matters; list vertices clockwise or counterclockwise.
Core Skills
Order the Vertices
List points around the polygon (clockwise or counterclockwise). If the order is scrambled, reorder before applying the formula.
Use the Repeat-First Trick
Rewrite the first vertex at the end to make the diagonal products easier.
Take Absolute Value Last
Compute the signed area first, then take the absolute value at the end.
Worked Example
Triangle has vertices , , . Find the area.
.
More Examples
Example 1: Quadrilateral
Find the area of the polygon , , , .
This is a rectangle of area , which matches shoelace.
Example 2: Reordered Points
Why does , , give the wrong area if used in that order?
The points are not listed around the triangle. Reorder as , , .
Strategy Checklist
- Put vertices in cyclic order.
- Repeat the first vertex at the end.
- Apply absolute value at the end.
Common Pitfalls
- Listing vertices out of order.
- Forgetting the absolute value.
- Mixing polygon order (clockwise and counterclockwise).
Practice Problems
| Status | Source | Problem Name | Difficulty | Tags | ||
|---|---|---|---|---|---|---|
Module Progress:
Join the AoPS Community!
Stuck on a problem, or don't understand a module? Join the AoPS community and get help from other math contest students.
