Why the Absolute Value?
The formula produces a signed area:
- Counterclockwise vertex order → positive signed area
- Clockwise vertex order → negative signed area
Area is always positive. The absolute value removes the sign regardless of traversal direction.
Verify: Coordinate Formula on Known Triangle
Triangle
The Shoelace Formula: Visual Overview
Forward products
(sum = 32) minus backward products
(sum = 3), halved — gives area = 14.5 sq units.
Shoelace Formula for Any Simple Polygon
- Vertices
listed consecutively around the boundary - Close the polygon:
- Works for triangles, quadrilaterals, pentagons — any simple polygon
Setting Up the Shoelace Table
- List vertices consecutively around the boundary (clockwise or counterclockwise)
- Repeat the first vertex at the bottom to close the polygon
- Forward products: each
(current row's , next row's ) - Backward products: each
(next row's , current row's ) - Area
Shoelace Computation: A(0,0) B(4,0) C(5,3) D(1,4)
- Forward products:
- Backward products:
Check-In: Apply the Shoelace Formula
Quadrilateral:
- Set up the table:
- Compute each forward product (
) - Compute each backward product (
) - Area
forward sum backward sum
Check-In Answer
| Forward | Backward | ||
|---|---|---|---|
| 1 | 1 | ||
| 5 | 0 | ||
| 6 | 4 | ||
| 2 | 5 | ||
| 1 | 1 | ← repeat |
Forward
Same Formulas, Real-World Scale
In the real world, coordinates come from:
- Survey data — GPS or physical measurement equipment
- Architectural drawings — floor plans on coordinate grids
- GIS systems — coordinate data for land parcels
The mathematics is identical — just with larger numbers and meaningful units.
Verify: Triangle Decomposition of ABCD
: , , → : , , →
Three Methods: Same Triangle, Same Area
- Base-height: choose one side as base, compute perpendicular height
- Bounding rectangle: enclose in box, subtract corner triangles
- Coordinate formula: plug vertices into
M3: Vertices Must Be Listed in Order
Shoelace requires consecutive boundary traversal.
- Walk around the polygon's perimeter, visiting each vertex once, in sequence
- Wrong:
— skips across, creates a self-intersecting shape - Correct:
— traces the boundary consecutively
Prevention: plot the vertices, then trace and list in order.
M4: Absolute Value Is Required
The Shoelace formula produces a signed area — the sign indicates only traversal direction.
| Vertex order | Signed result | Correct step |
|---|---|---|
| Counterclockwise | positive | Area |
| Clockwise | negative | Area $= \tfrac{1}{2} |
App 1: Perimeter of a Garden
Vertices (meters):
| Side | Exact | Approx |
|---|---|---|
| 10.00 m | ||
| 8.25 m | ||
| 9.06 m | ||
| 9.49 m |
Perimeter
App 2: Area of a Triangular Lot
Vertices (feet):
App 3: Area of an Irregular Pond
Pentagon (meters):
- Forward sum:
- Backward sum:
Exact vs Approximate Answers
| Form | Example | Use when |
|---|---|---|
| Exact perimeter | Mathematics, proofs | |
| Approx. perimeter | Ordering fencing material | |
| Exact area | Mathematics, proofs | |
| Approx. area | Real-world measurement |
Guided Practice: City Block
Quadrilateral:
- Is this axis-aligned or tilted? How can you tell?
- Compute the perimeter — which sides are axis-aligned?
- Compute the area — which method is most efficient?
Work through all three before checking.
Guided Practice Answer
Axis-aligned rectangle (opposite vertices share coordinate values)
, , , → Perimeter linear units- Width
Height square units - Shoelace check: Forward
, Backward ; Area ✓
Lesson Summary
- Triangle coordinate formula — direct from vertices;
- Shoelace formula — any polygon; set up table, compute forward and backward products
- All methods agree — coordinate formula, Shoelace, bounding rectangle, base-height
M3: List vertices in order — trace the boundary before setting up the table
M4: Always take
— area is never negative
Coming Up: Geometric Measurement and Dimension
HSG.GMD.A builds on coordinate geometry:
- Volume formulas — from area cross-sections and Cavalieri's principle
- Surface area — coordinate measurement extends to 3D
- HSG.MG.A — applying these tools to real-world geometric models
The coordinate tools from HSG.GPE.B.7 appear throughout both units.
Click to begin the narrated lesson
Use distance formula for area