1. What is the Pythagorean Theorem?
The Pythagorean Theorem is one of the oldest and most important results in all of mathematics. It describes a fundamental relationship between the three sides of any right triangle — a triangle that contains one 90° angle (called a right angle). The theorem has been known for at least 2,500 years, and evidence suggests ancient Babylonian and Indian mathematicians understood it even before Pythagoras, the Greek philosopher whose name it now bears.
Today, the theorem appears in geometry, trigonometry, calculus, physics, engineering, computer graphics, and even GPS technology. It is likely the most-used theorem in all of applied mathematics.
2. Statement and Formula
In any right triangle, the square of the length of the hypotenuse (the side opposite the right angle) equals the sum of the squares of the lengths of the two legs (the sides that form the right angle).
where c is the hypotenuse and a, b are the two legs
If you know any two sides of a right triangle, you can always find the third. If you know both legs a and b, then c = √(a² + b²). If you know the hypotenuse and one leg, you can rearrange: a = √(c² − b²).
Example
A right triangle has legs of length 3 and 4. What is the hypotenuse?
c = √25 = 5
3. Three Classic Proofs
Proof 1: Rearrangement (Visual Proof)
Arrange four copies of the right triangle inside a large square of side (a + b). The area of the big square is (a+b)². The four triangles together have area 4 · (½ab) = 2ab. The remaining space in the middle forms a square with side c, so its area is c². Therefore: (a+b)² − 2ab = c², which simplifies to a² + b² = c².
Proof 2: Algebraic (Similar Triangles)
Drop an altitude from the right angle to the hypotenuse. This divides the triangle into two smaller triangles, both of which are similar to the original. Using the proportionality of corresponding sides in similar triangles and a small bit of algebra, you can derive that a² + b² = c².
Proof 3: Euclid's Proof
Euclid's original proof in Elements (Book I, Proposition 47) constructs a square on each side of the triangle and shows that the area of the square on the hypotenuse equals the combined area of the squares on the two legs. This proof uses only the properties of parallelograms and triangle area — no algebra required.
4. Pythagorean Triples
A Pythagorean triple is a set of three positive integers (a, b, c) such that a² + b² = c². The most famous is (3, 4, 5). Any multiple of a triple is also a triple — so (6, 8, 10), (9, 12, 15) etc. all work. Here are the most commonly tested triples:
- (3, 4, 5) — the classic; appears constantly in geometry
- (5, 12, 13) — very common on tests; check: 25 + 144 = 169 ✓
- (8, 15, 17) — check: 64 + 225 = 289 = 17² ✓
- (7, 24, 25) — check: 49 + 576 = 625 = 25² ✓
- (20, 21, 29) — less common but important for competitions
5. The Converse of the Pythagorean Theorem
The theorem runs the other direction too: if the sides of a triangle satisfy a² + b² = c², then the triangle must be a right triangle. This gives us a way to test whether a triangle is right, acute, or obtuse:
- If a² + b² = c², the triangle is a right triangle
- If a² + b² > c², the triangle is acute (all angles less than 90°)
- If a² + b² < c², the triangle is obtuse (one angle greater than 90°)
6. Applications: The Distance Formula
The distance formula for two points in the coordinate plane is a direct application of the Pythagorean theorem. Given two points (x₁, y₁) and (x₂, y₂), you can always form a right triangle where the horizontal leg has length |x₂ − x₁| and the vertical leg has length |y₂ − y₁|. The straight-line distance between the points is the hypotenuse:
7. Real-World Applications
The Pythagorean theorem isn't just a classroom concept — it shows up everywhere in the real world:
- Construction: Builders use the 3-4-5 rule to create perfect right angles when laying out foundations and walls.
- Navigation & GPS: The distance between two GPS coordinates uses a spherical version of the theorem.
- Computer Graphics: Calculating distances between pixels or 3D points in game engines and rendering software.
- Carpentry: The "diagonal rule" for squaring a room uses 3-4-5 or other triples.
- Astronomy: Measuring stellar distances using right triangle relationships.
- Physics: Vector addition uses the theorem to find the resultant magnitude of perpendicular force components.
8. Extension to 3 Dimensions
The theorem extends naturally to three dimensions. The length of the space diagonal of a rectangular box with dimensions l, w, and h is:
This is simply applying the 2D theorem twice. First find the diagonal of the base (√(l² + w²)), then use that as one leg and h as the other to find the space diagonal.
9. Common Mistakes to Avoid
- ❌ Forgetting which side is the hypotenuse — it's ALWAYS the side opposite the right angle and ALWAYS the longest side.
- ❌ Adding sides instead of squaring first — a + b ≠ c. You must square each side first.
- ❌ Using the theorem on non-right triangles — the theorem only works for right triangles. Use the Law of Cosines for other triangles.
- ❌ Forgetting to take the square root — once you find c², take the square root to get c.