Skip to main content

learn.howToCalculate

learn.whatIsHeading

A polygon area calculator computes the area of any polygon given its vertices using the Shoelace formula (Gauss's area formula), which works for any non-self-intersecting polygon.

단계별 가이드

  1. 1Shoelace formula: A = ½|Σ(xᵢ×yᵢ₊₁ − xᵢ₊₁×yᵢ)|
  2. 2List vertices in order (clockwise or counterclockwise)
  3. 3Works for any shape: triangle, quadrilateral, irregular polygon
  4. 4Perimeter: sum of distances between consecutive vertices

풀어진 예시

입력
Triangle vertices: (0,0), (4,0), (2,3)
결과
A = ½|0×0−4×0 + 4×3−2×0 + 2×0−0×3| = ½|0+12+0| = 6 sq units

자주 묻는 질문

What's the apothem?

Distance from centre of regular polygon to midpoint of side. Used for area calculation of regular shapes.

How do I find area of irregular polygon?

Divide into triangles, calculate each, sum. Or use shoelace formula if coordinates known.

What's Heron's formula?

For triangle with sides a,b,c: A = √(s(s−a)(s−b)(s−c)) where s = (a+b+c)/2. No height needed.

설정

개인정보이용약관정보© 2026 PrimeCalcPro