Polygon Triangulation
A polygon is a plane (2D) shape formed by straight line segments connected
end-to-end to form a closed figure. Each side meets exactly two other sides
at its endpoints, and no two non-adjacent sides intersect. Examples include
triangles, rectangles, and pentagons. A circle is not a polygon because its
boundary is curved.
Prompts
- Can every polygon be divided into triangles using diagonals that lie entirely inside the polygon?
- If a polygon has n vertices, how many triangles will such a triangulation contain?
- How many diagonals are added in the triangulation?
Answers
-
Every simple polygon can be triangulated. The smallest polygon possible is a triangle.
If we add an additional vertex, there must still be a triangle in the result. Conversely, any polygon with more
than three vertices can be reduced by one vertex while preserving simplicity by removing an ear.
-
A triangle has 3 vertices and yields 1 triangle.
In general, a polygon with N vertices admits N − 2 triangles.
-
A triangulation of a polygon with N vertices adds N − 3 diagonals.