Andromeda
Note

Polygon Fundamentals

Definition

A polygon is a closed plane figure whose sides are line segments that intersect only at their endpoints.

Why It Matters

Polygons are the “discrete units” of geometry. Everything we build, from a cardboard box to a 3D video game character, is made of polygons. Understanding their fundamental rules—like why the exterior angles always sum to 360360^\circ—is the difference between a model that works and one that “breaks” at the corners. It is the basic “grammar” of spatial design.

Core Concepts

  • Convex vs. Concave:
    • Convex: A polygon where every interior angle is between 00^\circ and 180180^\circ. All diagonals lie inside the figure.
    • Concave: A polygon with at least one reflex angle (>180> 180^\circ). At least one diagonal lies outside the figure.
  • Regular Polygon: A polygon that is both equilateral (all sides congruent) and equiangular (all angles congruent).
    • Center: The common center of the inscribed and circumscribed circles.
    • Radius (rr): Segment joining the center to a vertex. Bisects the vertex angle.
    • Apothem (aa): Segment from center perpendicular to a side. Bisects the side.
    • Central Angle (cc): Angle formed by two consecutive radii. c=360nc = \frac{360^\circ}{n}.
    • How to read: “The measure of the central angle c is equal to three hundred sixty degrees divided by the number of sides n.”
    • Meaning: Full circle divided equally among nn vertices in a regular polygon.
  • Diagonal Count: The number of diagonals DD in an nn-gon is: D=n(n3)2D = \frac{n(n - 3)}{2}
    • How to read: “The number of diagonals D is equal to the number of sides n times the quantity n minus three, all divided by two.”
    • Meaning: Each vertex connects to n3n-3 others (excluding itself and two neighbors); divide by 2 to avoid double-counting.
  • Angle Sums:
    • Interior Sum: S=(n2)180S = (n - 2) \cdot 180^\circ.
    • Exterior Sum: 360360^\circ (always, for any convex polygon).
    • Individual Angles (Regular Only): I=SnI = \frac{S}{n} and E=360nE = \frac{360^\circ}{n}. Note I+E=180I + E = 180^\circ and E=cE = c.
    • How to read: “The interior angle sum S is equal to the quantity n minus two times one hundred eighty degrees; the sum of the exterior angles is equal to three hundred sixty degrees; the interior angle I of a regular polygon is the sum S divided by n; and the exterior angle E is three hundred sixty degrees divided by n.”
    • Meaning: Triangulation gives (n2)(n-2) triangles worth of angle; walking the perimeter turns 360360^\circ total.

Connected Concepts