Sign in to save

Bookmark this page so you can find it later.

Sign in to save

Bookmark this page so you can find it later.

The shoelace formula is a fast way to find the area of any polygon when you know the coordinates of its vertices. It is especially useful for irregular shapes that are hard to split neatly into rectangles and triangles. Surveyors, mapmakers, engineers, and computer graphics programmers use this idea to compute areas from measured points.

The method works in the coordinate plane and turns geometry into organized arithmetic.

To use the formula, list the vertices in order around the polygon, either clockwise or counterclockwise. Multiply each x-coordinate by the next y-coordinate, multiply each y-coordinate by the next x-coordinate, then subtract the two sums and take half of the absolute value. Repeating the first vertex at the end of the list helps keep the pattern clear.

The name comes from the crisscross products in the table, which look like laces on a shoe.

Key Facts

  • For vertices (x1, y1), (x2, y2), ..., (xn, yn), area A = 1/2 |(x1y2 + x2y3 + ... + xny1) - (y1x2 + y2x3 + ... + ynx1)|.
  • Vertices must be listed in order around the polygon, not randomly.
  • Repeat the first coordinate pair at the bottom of the shoelace table to complete the final products.
  • Clockwise order gives a negative signed area, counterclockwise order gives a positive signed area, and |area| gives the actual area.
  • The shoelace formula works for triangles, quadrilaterals, and any simple polygon with straight sides.
  • Area units are square units, such as cm^2, m^2, or coordinate units squared.

Vocabulary

Shoelace formula
A coordinate geometry formula that finds the area of a polygon by adding and subtracting diagonal products of vertex coordinates.
Surveyor's formula
Another name for the shoelace formula, often used because surveyors compute land areas from boundary coordinates.
Vertex
A corner point of a polygon where two sides meet, written as an ordered pair in the coordinate plane.
Signed area
An area value that can be positive or negative depending on whether the vertices are listed counterclockwise or clockwise.
Simple polygon
A polygon whose sides do not cross each other and whose boundary forms one closed shape.

Common Mistakes to Avoid

  • Listing the vertices out of order gives the wrong area because the formula follows the boundary of the polygon.
  • Forgetting to repeat the first vertex at the end can leave out the final diagonal products, which changes the result.
  • Not taking the absolute value can produce a negative answer, but geometric area should be nonnegative.
  • Using regular units instead of square units is incorrect because area measures two-dimensional space.

Practice Questions

  1. 1 Find the area of the triangle with vertices (0, 0), (6, 0), and (2, 4) using the shoelace formula.
  2. 2 Find the area of the quadrilateral with vertices (1, 1), (5, 2), (4, 6), and (0, 4) listed in order.
  3. 3 Explain why the shoelace formula requires the vertices to be listed around the polygon rather than in any random order.