Irregular Polygon Area Calculator

Calculate the area of any simple irregular polygon from ordered coordinate pairs with the shoelace formula.

Find polygon area from vertices
Enter at least three x,y coordinate pairs in clockwise or counterclockwise boundary order.

Separate x and y with a comma, and separate vertices with semicolons.

About irregular polygon area

An irregular polygon has sides or angles that are not all equal, so a single rectangle or regular-polygon formula usually does not apply. When the coordinates of its vertices are known, the shoelace formula provides a direct and dependable way to find its area. The method works for triangles, quadrilaterals, and larger simple polygons, whether they are convex or concave. It is widely used in coordinate geometry, computer graphics, mapping, land measurement, architecture, and engineering. The shoelace formula processes each edge in boundary order. For every vertex, it multiplies the current x coordinate by the next y coordinate and subtracts the next x coordinate multiplied by the current y coordinate. The final vertex wraps back to the first, closing the polygon. Adding those cross-products produces a signed doubled area. Taking the absolute value and dividing by two gives the ordinary positive area, so clockwise and counterclockwise input orders return the same magnitude. Vertices must be listed consecutively as you move around the boundary. They should not be sorted independently by x or y, and the path should not jump across the interior. A self-intersecting sequence describes a crossed path, for which the signed regions may cancel and the result may not represent the filled area you intended. You do not need to repeat the first point at the end because the calculator automatically connects the last vertex back to the first. Coordinate units determine area units. If x and y are measured in meters, the answer is in square meters. If they are feet, the answer is in square feet. The calculator does not perform unit conversion because every coordinate should already use the same linear unit and scale. Decimal and negative coordinates are accepted, making the tool suitable for shapes positioned anywhere on a Cartesian plane rather than only in the first quadrant. For field surveying, ensure coordinates use a flat projected system appropriate to the site. Raw latitude and longitude lie on a curved Earth and should not be inserted as if they were ordinary planar distances, especially for large regions. Convert geographic positions to a suitable projected coordinate reference system first. For classroom geometry and small planar designs, simply record each corner in order, enter the pairs, and use the vertex count and computed area to check the shape.

Polygon area examples

Ordered verticesAreaShape
(0,0), (4,0), (4,3), (0,3)12 square unitsA rectangle confirms length times width.
(0,0), (6,0), (2,4)12 square unitsA triangle confirms one half times base times height.
(0,0), (5,0), (4,2), (2,4), (0,3)14 square unitsAn irregular convex pentagon.
(0,0), (4,0), (4,4), (2,2), (0,4)12 square unitsA concave polygon entered around its boundary.

How to calculate irregular polygon area

  1. Record every polygon vertex in clockwise or counterclockwise boundary order.
  2. Enter each vertex as x,y and separate successive pairs with semicolons.
  3. Select Calculate area to apply the shoelace formula.
  4. 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.