Polygons are everywhere in competition geometry — from simple quadrilaterals to irregular shapes
you have to dissect. The key strategies: know your special quadrilaterals, master the area formulas,
and learn to carve weird shapes into triangles and rectangles you can actually compute.
📚 Key Concepts
Interior & Exterior Angles
For any n-sided polygon (n-gon):
Sum of interior angles: $ (n - 2) \times 180° $
Each interior angle (regular n-gon): $ \frac{(n-2) \times 180°}{n} $
Sum of exterior angles: always $ 360° $ (for any convex polygon!)
Each exterior angle (regular n-gon): $ \frac{360°}{n} $
Where $ (x_{n+1}, y_{n+1}) = (x_1, y_1) $ (loop back to the start).
Mnemonic: list the coordinates in order, repeat the first at the end, cross-multiply diagonally, subtract, take absolute value, halve it.
Pick's Theorem
For a simple polygon whose vertices are lattice points (grid points):
\[
\text{Area} = I + \frac{B}{2} - 1
\]
Where:
$I$ = number of interior lattice points
$B$ = number of boundary lattice points
Great for grid-based problems where counting points is easier than calculating dimensions.
⚠️ Common Mistake: For the area of a trapezoid, use the average of the two bases
\(times height, not just base \\times height. And for a rhombus/kite, area is half the product of the diagonals\) —
don't forget the 1/2! Also: interior angle formula gives the total sum, divide by n for each angle
(only for regular polygons).
💡 Key Insight: When a geometry problem asks for area and the shape is weird, don't panic.
Ask: can I draw lines to split this into triangles and rectangles? Can I put a box around it and subtract
the corners? Can I use the shoelace formula if I assign coordinates? Competition problems almost always
have a clean dissection — look for right angles, symmetry, and hidden triangles.
✏️ Example Problems
📝 Example 1 (Trapezoid area)
A trapezoid has bases of length 8 and 14, and height 6. What is its area?
Formula: Area of trapezoid = $ \frac{b_1 + b_2}{2} \times h $