Skip to main content

วิธีการคำนวณ Irregular Polygon

learn.whatIsHeading

Calculates irregular polygon area using coordinate vertices. Handles non-regular multi-sided shapes.

สูตร

Shoelace formula: A = |Σ(x_i × y_(i+1) - x_(i+1) × y_i)| / 2
A
|Σ(x_i × y_(i+1) - x_(i+1) × y_i)| / 2 — |Σ(x_i × y_(i+1) - x_(i+1) × y_i)| / 2

คำแนะนำทีละขั้นตอน

  1. 1Shoelace formula: A = |Σ(x_i × y_(i+1) - x_(i+1) × y_i)| / 2
  2. 2Order vertices clockwise or counter-clockwise consistently
  3. 3Close polygon by including first vertex at end
  4. 4Works for any polygon (convex or concave)

ตัวอย่างที่มีคำตอบ

อินพุต
Coords x,y list
ผลลัพธ์
Shoelace formula

ข้อผิดพลาดที่ควรหลีกเลี่ยง

  • Inconsistent vertex ordering
  • Forgetting to close polygon (include first vertex again at end)

คำถามที่พบบ่อย

What's the Shoelace formula?

Calculates area from vertex coordinates; works for any polygon shape.

Does order of vertices matter?

Yes; consistent clockwise or counter-clockwise required; opposite order gives negative area.

พร้อมที่จะคำนวณแล้วหรือยัง? ลองใช้เครื่องคิดเลข Irregular Polygon ฟรี

ลองด้วยตัวคุณเอง→

การตั้งค่า