AMC // 10
LEARN>GEOMETRY>QUADRILATERALS & POLYGONS
// CONCEPT // GEOMETRY

QUADRILATERALS & POLYGONS

Special quadrilaterals and their properties, angle sums, regular polygons, diagonal counts, and area techniques including the Shoelace formula.

Overview

Polygons are closed figures made entirely of straight sides, and quadrilaterals — four-sided polygons — are the richest family in AMC 10 competition geometry. Problems range from straightforward angle sums in regular polygons to multi-step area calculations in trapezoids and rhombuses. The unifying thread is that every polygon, however complicated, can be decomposed into triangles — and triangles are the atoms of all planar geometry.

Special quadrilaterals (parallelograms, rectangles, rhombuses, squares, trapezoids, and kites) each carry a set of distinguishing properties that appear repeatedly on AMC problems. Knowing which properties belong to which figure — and which do not — lets you extract information quickly and avoid assuming too much. A parallelogram has equal opposite sides and bisecting diagonals, but its diagonals are not generally equal in length; a rectangle has equal diagonals; a rhombus has perpendicular diagonals; only the square has all four of these at once.

Regular polygons reward students who know the interior and exterior angle formulas cold. Counting diagonals, computing areas of regular nn-gons, and working with inscribed or circumscribed circles around regular polygons are all high-frequency AMC topics. The Shoelace (surveyor's) formula is the Swiss-army tool for polygons whose vertices are given as coordinates: it converts any polygon area problem into straightforward arithmetic.

Key facts

  • Interior angle sum of an nn-gon: (n2)×180°(n-2) \times 180°. Memorize the first few: triangle 180°, quadrilateral 360°, pentagon 540°, hexagon 720°, octagon 1080°.
  • Each interior angle of a regular nn-gon: (n2)×180°n\dfrac{(n-2)\times 180°}{n}. Use when all angles are equal.
  • Each exterior angle of a regular nn-gon: 360°n\dfrac{360°}{n}. Exterior angles of any convex polygon always sum to 360°.
  • Number of diagonals of an nn-gon: n(n3)2\dfrac{n(n-3)}{2}. Each vertex connects to n3n-3 non-adjacent vertices; divide by 2 to avoid double-counting.
  • Parallelogram: opposite sides parallel and equal; opposite angles equal; diagonals bisect each other. Area = base ×\times height (height is perpendicular, not the slant side).
  • Rectangle: parallelogram with four right angles; diagonals are equal.
  • Rhombus: parallelogram with four equal sides; diagonals are perpendicular bisectors of each other. Area = d1d22\dfrac{d_1 d_2}{2} where d1,d2d_1, d_2 are diagonal lengths.
  • Square: rectangle and rhombus simultaneously; diagonal =s2= s\sqrt{2} where ss is the side length.
  • Trapezoid: exactly one pair of parallel sides (bases b1b_1, b2b_2). Area = (b1+b2)2×h\dfrac{(b_1+b_2)}{2} \times h where hh is the perpendicular height.
  • Kite: two pairs of consecutive equal sides; one diagonal perpendicularly bisects the other. Area = d1d22\dfrac{d_1 d_2}{2}.
  • Shoelace formula: For a polygon with vertices (x1,y1),(x2,y2),,(xn,yn)(x_1,y_1),(x_2,y_2),\ldots,(x_n,y_n) listed in order (either direction): Area=12(x1y2x2y1)+(x2y3x3y2)++(xny1x1yn)\text{Area} = \frac{1}{2}\bigl|\,(x_1 y_2 - x_2 y_1) + (x_2 y_3 - x_3 y_2) + \cdots + (x_n y_1 - x_1 y_n)\,\bigr| This works for any simple (non-self-intersecting) polygon given coordinates.

Worked example 1

A rhombus has diagonals of length 1616 and 1212. Find its perimeter.

Approach: The diagonals of a rhombus bisect each other at right angles. Each half-diagonal has length 88 and 66, forming the legs of a right triangle whose hypotenuse is one side of the rhombus.

By the Pythagorean theorem: side=82+62=64+36=100=10\text{side} = \sqrt{8^2 + 6^2} = \sqrt{64 + 36} = \sqrt{100} = 10

Since all four sides are equal, the perimeter is 4×10=404 \times 10 = 40.

Why does this work? The diagonals of any rhombus are perpendicular bisectors of each other, so they cut the rhombus into four congruent right triangles. Finding one leg of those triangles immediately gives the side length.

Worked example 2

A convex polygon has interior angles in arithmetic progression. The smallest angle is 100°100° and the common difference is 10°10°. Find the number of sides.

Approach: Let the polygon have nn sides. The angles are 100°,110°,120°,100°, 110°, 120°, \ldots with common difference 10°10°. Their sum equals the interior angle sum formula:

n2(2(100)+(n1)(10))=(n2)×180\frac{n}{2}\bigl(2(100) + (n-1)(10)\bigr) = (n-2) \times 180

Simplify the left side: n2(200+10n10)=n2(190+10n)=n(95+5n)\frac{n}{2}(200 + 10n - 10) = \frac{n}{2}(190 + 10n) = n(95 + 5n)

Set equal to the right side: 5n2+95n=180n3605n^2 + 95n = 180n - 360 5n285n+360=05n^2 - 85n + 360 = 0 n217n+72=0n^2 - 17n + 72 = 0 (n8)(n9)=0(n-8)(n-9) = 0

So n=8n = 8 or n=9n = 9. Check convexity (all angles <180°< 180°):

  • n=8n = 8: largest angle =100+7(10)=170°<180°= 100 + 7(10) = 170° < 180°
  • n=9n = 9: largest angle =100+8(10)=180°= 100 + 8(10) = 180°, which is not strictly convex. ✗

The answer is n=8n = \boxed{8}.

Common traps

  • Using the slant side as height in a parallelogram or trapezoid. The height must be the perpendicular distance between the parallel sides, not the length of a non-perpendicular leg. Always check whether the given side is truly the altitude.
  • Off-by-one in the diagonal formula. Each vertex has n3n - 3 diagonals from it (excluding itself and its two neighbors), giving n(n3)2\frac{n(n-3)}{2} total. A common error is using n2n-2 (forgetting to exclude both neighbors) or forgetting the factor of 12\frac{1}{2}.
  • Assuming a parallelogram when only two sides are equal. Two pairs of equal sides alone does not guarantee a parallelogram — a kite also has two pairs of equal sides (but consecutive, not opposite). Check which sides are equal.
  • Forgetting that angle sum formulas give the total, not each angle. For irregular polygons, the formula (n2)×180°(n-2)\times 180° gives the sum of all interior angles, not each individual angle. Only for regular polygons can you divide by nn to get each angle.
  • Shoelace sign errors. When applying the Shoelace formula, list vertices consistently (all clockwise or all counterclockwise) and take the absolute value at the end. Mixing order midway through produces a wrong result.