Irregular Polygon Area Calculator
Calculate the area of any simple irregular polygon from ordered coordinate pairs with the shoelace formula.
Separate x and y with a comma, and separate vertices with semicolons.
About irregular polygon area
Polygon area examples
| Ordered vertices | Area | Shape |
|---|---|---|
| (0,0), (4,0), (4,3), (0,3) | 12 square units | A rectangle confirms length times width. |
| (0,0), (6,0), (2,4) | 12 square units | A triangle confirms one half times base times height. |
| (0,0), (5,0), (4,2), (2,4), (0,3) | 14 square units | An irregular convex pentagon. |
| (0,0), (4,0), (4,4), (2,2), (0,4) | 12 square units | A concave polygon entered around its boundary. |
How to calculate irregular polygon area
- Record every polygon vertex in clockwise or counterclockwise boundary order.
- Enter each vertex as x,y and separate successive pairs with semicolons.
- Select Calculate area to apply the shoelace formula.
- Read the result in square units matching the coordinate system.
Irregular polygon area FAQ
What is the shoelace formula?
It is a coordinate method that sums cross-products of consecutive polygon vertices. The absolute value of that signed sum divided by two is the polygon area.
Does vertex order matter?
Yes, vertices must follow the polygon boundary without jumping across the shape. Either clockwise or counterclockwise order works because the calculator takes the absolute value.
Can the calculator handle concave polygons?
Yes, the shoelace formula works for simple concave polygons. The boundary must not cross itself and every corner must be included in order.
Should I repeat the first coordinate?
No, the calculator closes the polygon automatically by joining the last point to the first. Repeating it is unnecessary, though it would not change the mathematical area.
What units does the result use?
The result uses the square of the coordinate unit. Coordinates in meters produce square meters, while coordinates in feet produce square feet.