Using corner positions on a grid to determine the area of any polygon — explained for beginners
A coordinate is a pair of numbers that describes a specific position on a flat grid. The first number (x) tells you how far across the grid the point is. The second number (y) tells you how far up or down. Together, (x, y) pinpoints one unique location.
For a polygon, the corners are called vertices. If you record the (x, y) position of every vertex in order — going consistently either clockwise or anticlockwise around the shape — you have completely described the polygon's boundary. No other information is needed to find its area.
The most important rule when using coordinates for area calculation is that the vertices must be recorded in a consistent order around the boundary — either all going clockwise or all going anticlockwise. Jumping randomly between corners produces an incorrect result because the formula interprets the order as meaning the polygon is self-intersecting.
A good habit is to start at the top-left corner of the shape and work anticlockwise. Every corner is visited exactly once, and you return to the starting point after the last vertex.
| Vertex | x | y |
|---|---|---|
| A | 1 | 4 |
| B | 4 | 6 |
| C | 7 | 5 |
| D | 6 | 2 |
| E | 2 | 2 |
| Vertices listed in order | 5 points | |
The mathematical process for finding area from coordinates works by treating the polygon as a series of trapezoids between each edge and the x-axis, adding the ones on top and subtracting the ones below. The net result equals the polygon's area. You do not need to understand why the formula works — you only need to apply it correctly.
List all vertex coordinates in order: A(1,4), B(4,6), C(7,5), D(6,2), E(2,2)
For each consecutive pair, multiply the first x by the next y: 1×6 + 4×5 + 7×2 + 6×2 + 2×4 = 6+20+14+12+8 = 60
For each consecutive pair, multiply the first y by the next x: 4×4 + 6×7 + 5×6 + 2×2 + 2×1 = 16+42+30+4+2 = 94
Subtract the second sum from the first: 60 − 94 = −34 (take the absolute value: 34)
Divide by 2: 34 ÷ 2 = 17 square units — this is the polygon's area in the coordinate unit used.
The method applies to triangles, quadrilaterals, pentagons, and any polygon regardless of how many sides or how irregular the shape.
GPS coordinates and map grid references can be fed directly into this method to estimate land areas from satellite or survey data.
Draw a grid over your sketch, read off the corner positions, and list them. No specialist equipment needed for small areas.
Unlike grid counting or approximation methods, coordinate area calculation gives an exact result for straight-sided polygons.