AMC // 10
LEARN>GEOMETRY>TRIANGLES
// CONCEPT // GEOMETRY

TRIANGLES

Triangle inequality, special right triangles, the Pythagorean theorem and triples, area formulas, and medians/altitudes.

Overview

Triangles are the most fundamental polygon, and they appear in nearly every AMC 10 geometry problem — either directly or hiding inside a more complex figure. Mastering the core toolkit here lets you attack circles, quadrilaterals, and 3-D solids because every polygon can be cut into triangles.

The AMC especially loves the interplay between area, similarity, and the Pythagorean theorem. A single triangle can have its area computed three different ways, and whichever computation is easiest to set up is usually the one that unlocks the problem. Getting comfortable switching between those representations is the most important habit to build here.

Similarity is the other great workhorse. When two triangles share angles, their sides are proportional — and that proportionality turns hard length problems into clean ratio problems. Look for parallel lines, shared angles, and angle bisectors as triggers for similarity or the angle bisector theorem.

Key facts

  • Angle sum: The interior angles of any triangle sum to 180°180°.
  • Triangle inequality: For sides aa, bb, cc: each side is strictly less than the sum of the other two. Equivalently, ab<c<a+b|a - b| < c < a + b. Use when counting possible integer side lengths.
  • Pythagorean theorem: For a right triangle with legs aa, bb and hypotenuse cc: a2+b2=c2a^2 + b^2 = c^2.
  • Common Pythagorean triples: (3,4,5)(3,4,5), (5,12,13)(5,12,13), (8,15,17)(8,15,17), (7,24,25)(7,24,25) and all multiples. Recognizing these saves enormous computation.
  • 45–45–90 triangle: Side ratios 1:1:21 : 1 : \sqrt{2}. Leg =hypotenuse2= \dfrac{\text{hypotenuse}}{\sqrt{2}}. Appears whenever a square's diagonal is drawn.
  • 30–60–90 triangle: Side ratios 1:3:21 : \sqrt{3} : 2 (opposite 30°30°, 60°60°, 90°90° respectively). Appears whenever an equilateral triangle is bisected.
  • Area formulas:
    • Base-height: Area=12bh\text{Area} = \tfrac{1}{2} \cdot b \cdot h
    • Two sides and included angle: Area=12absinC\text{Area} = \tfrac{1}{2} ab \sin C
    • Heron's formula: Area=s(sa)(sb)(sc)\text{Area} = \sqrt{s(s-a)(s-b)(s-c)} where s=a+b+c2s = \tfrac{a+b+c}{2}
  • Altitude from the right angle: In a right triangle with legs aa, bb and hypotenuse cc, the altitude to the hypotenuse has length h=abch = \dfrac{ab}{c}. Derive it by computing area two ways: 12ab=12ch\tfrac{1}{2}ab = \tfrac{1}{2}ch.
  • Median length formula: The length of the median from vertex AA to the midpoint of side a=BCa = BC is ma=122b2+2c2a2m_a = \frac{1}{2}\sqrt{2b^2 + 2c^2 - a^2} where b=CAb = CA and c=ABc = AB. In a right triangle the median to the hypotenuse equals half the hypotenuse.
  • Similar triangles: Two triangles are similar when their angles match. Corresponding sides are proportional; corresponding areas are proportional to the square of the scale factor.

Worked example 1

A right triangle has legs of length 55 and 1212. Find the length of the altitude from the right angle to the hypotenuse.

Step 1 — find the hypotenuse. c=52+122=169=13c = \sqrt{5^2 + 12^2} = \sqrt{169} = 13.

Step 2 — use area two ways. Using the legs: Area =12(5)(12)=30= \tfrac{1}{2}(5)(12) = 30. Using the hypotenuse and altitude hh: Area =12(13)(h)= \tfrac{1}{2}(13)(h).

Step 3 — solve. 13h2=30    h=6013\dfrac{13h}{2} = 30 \implies h = \dfrac{60}{13}.

Why does this work? The two area expressions describe the same triangle, so they must be equal. This "area two ways" trick appears constantly on AMC problems.

Worked example 2

Triangle ABCABC has AB=9AB = 9, BC=10BC = 10, CA=11CA = 11. Find its area.

Use Heron's formula. The semi-perimeter is s=9+10+112=15s = \dfrac{9 + 10 + 11}{2} = 15.

Area=s(sa)(sb)(sc)=15654=1800=302\text{Area} = \sqrt{s(s-a)(s-b)(s-c)} = \sqrt{15 \cdot 6 \cdot 5 \cdot 4} = \sqrt{1800} = 30\sqrt{2}

Sanity check: A 10×1010 \times 10 base with height roughly 66 would give area roughly 3030, and 30242.430\sqrt{2} \approx 42.4. That's consistent with a triangle that is slightly taller than the 1010-base estimate.

Common traps

  • Forgetting the strict inequality. The triangle inequality says c<a+bc < a + b, not ca+bc \leq a + b. A "triangle" with sides 3,4,73, 4, 7 is degenerate (collinear) and does not count.
  • Mixing up 30-60-90 ratios. The side opposite 30°30° is the shortest side (ratio 11), not the one adjacent to the 30°30° angle. Draw and label a sample triangle if unsure.
  • Area scale vs. length scale. If two similar triangles have a length scale factor of kk, their areas differ by a factor of k2k^2. Applying kk directly to areas is a very common error.
  • Median ≠ altitude ≠ angle bisector. These three cevians coincide only in equilateral triangles. In a general triangle they are distinct segments with different lengths and different endpoints.
  • Ignoring the Pythagorean triple shortcut. Reaching for the quadratic formula on a2+b2=c2a^2 + b^2 = c^2 before checking whether the numbers are a scaled (3,4,5)(3,4,5) or (5,12,13)(5,12,13) wastes time and introduces arithmetic errors.