1001Ferramentas
📐 Calculators

Polygon Shoelace Area

Compute simple polygon area (non self-intersecting) using the Shoelace formula given vertices (x,y).

Polygon area — shoelace formula

Give the shoelace formula (sometimes called Gauss's area formula) the coordinates of a polygon's vertices and it returns the area. Any simple polygon works, whether convex or concave, regular or irregular: A = ½·|Σᵢ(xᵢ·yᵢ₊₁ − xᵢ₊₁·yᵢ)|, with indices taken modulo n. Drop the absolute value and the sign tells you something useful. It comes out positive when the vertices run counterclockwise and negative when they run clockwise, so you can read off the orientation directly. Take vertices (0,0), (4,0), (4,3), (2,5), (0,3): A = ½·|(0·0 − 4·0) + (4·3 − 4·0) + (4·5 − 2·3) + (2·3 − 0·5) + (0·0 − 0·3)| = ½·|0 + 12 + 14 + 6 + 0| = 16.

Applications

It's a workhorse in GIS (geographic information systems), where it measures georeferenced plots, drainage basins and protected zones. CAD software leans on it for polygon properties, and computational geometry uses it inside convex-hull and triangulation routines. In Brazil, INCRA runs shoelace-style calculations on the SIGEF system to check rural plot areas declared in georeferenced certifications. Architects reach for it too, pulling floor-plan areas straight from CAD vertex lists.

FAQ

Does the order of vertices matter? It does. List them sequentially around the perimeter, all clockwise or all counterclockwise. Scramble that order and you'll get a different area, almost always a wrong one.

Does it work for concave polygons? Yes, provided the polygon is simple, meaning its edges never cross. When edges do intersect, the result is an algebraic sum of signed areas rather than the geometric area you'd expect.

Why "shoelace"? Lay the coordinates out in two columns and connect the cross-products, and the crisscross pattern looks like the lacing on a shoe. That's where the name comes from.

How does the sign indicate orientation? A positive signed sum means the vertices run counterclockwise; a negative one means clockwise. GIS tools use this to keep a consistent winding order across shapefiles.

Related Tools

🔷

Polygon Area Shoelace Calculator

Computes area of a simple polygon from a list of vertices using the Gauss shoelace formula and absolute value.

Hexagon Area Calculator

Calculate the area of a regular hexagon from its side length. Instant result in the browser.

Pentagon Area Calculator

Calculate the area of a regular pentagon from its side length. Instant result in the browser.

🔷

Regular Polygon Area Calculator

Calculate the area of any regular polygon by entering the number of sides and side length.

🔷

Regular Polygon Calculator

Compute area, perimeter, apothem and interior angle of regular polygons (3-100 sides) given side or circumradius.

📐

Bolt Tensile Stress Area (Metric)

Calculate the tensile stress area of a metric-thread bolt, A_t = (π/4)·(d − 0.9382·p)², from the nominal diameter d (mm) and the thread pitch p (mm). The tensile stress area is the EFFECTIVE cross-section resisting tension in a threaded bolt — and it is NOT the nominal-diameter area (the smooth cylinder) nor the root-diameter area (the thread bottom). Because of the helical thread geometry, tensile rupture occurs at an intermediate section, and tests showed it corresponds to an effective diameter equal to the average of the pitch and root diameters, leading to the formula with the 0.9382·p term (a geometric constant of the ISO metric thread, 60° triangular profile). The tensile area is the fundamental parameter for all bolt strength calculations: preload, tensile stress, proof load and ultimate strength are all found by multiplying A_t by the corresponding material stress. Using the wrong area (the larger nominal-diameter one) would overestimate strength and lead to undersized joints. Bolt tables list A_t for each diameter-pitch combination; this formula computes it for any metric thread. Enter the nominal diameter and the thread pitch.

The results provided by this tool are for general informational and educational purposes only and do not constitute professional, financial, medical, legal, tax or accounting advice. Always confirm important decisions with a qualified professional and official sources.