Understanding Pythagoras' Theorem
Pythagoras' theorem states that in a right-angled triangle:
a² + b² = c²
where c is the length of the hypotenuse (the longest side, opposite the right angle) and a and b are the two shorter sides.
For example: a right-angled triangle with sides 3 and 4 has a hypotenuse of 5, because 3² + 4² = 9 + 16 = 25 = 5². The 3-4-5 triangle is a classic application of Pythagoras' theorem and is used by builders to check whether walls are truly square.
Finding a missing side with Pythagoras' theorem
You can rearrange Pythagoras' theorem to find any missing side: - To find the hypotenuse: c = √(a² + b²) - To find a shorter side: a = √(c² − b²)
If a ladder 10 m long leans against a wall and its base is 4 m from the wall, the theorem gives the height: √(100 − 16) = √84 ≈ 9.2 m.
Why the theorem works
There are hundreds of proofs of Pythagoras' theorem. One elegant proof arranges four identical right-angled triangles inside a square — the area left over equals c². Geometry is full of theorems that build on Pythagoras' theorem.
Pythagorean Triples and Patterns
A Pythagorean triple is a set of three positive whole numbers that satisfy Pythagoras' theorem. The most famous is 3-4-5. Others include 5-12-13, 8-15-17, and 7-24-25.
Any multiple of a triple is also a triple: 6-8-10 and 9-12-15 are both multiples of 3-4-5 and both satisfy the same relationship. Pythagorean triples are useful in construction because they give exact whole-number measurements — no irrational numbers, no rounding.
Is it always Pythagoras' theorem?
Pythagoras' theorem only applies to right-angled triangles. For triangles without a right angle, you need the cosine rule: c² = a² + b² − 2ab·cos(C), where C is the angle between sides a and b. The cosine rule is a generalisation of Pythagoras' theorem — when C is 90°, the equation reduces back to a² + b² = c².
Checking for right angles
Pythagoras' theorem works in reverse: if three sides satisfy a² + b² = c², the triangle must have a right angle. This converse lets you verify right angles without using a protractor — a practical tool in construction and carpentry.
Where Pythagoras' Theorem Appears in Real Life
Pythagoras' theorem is one of the most practically useful results in all of mathematics. Its applications appear everywhere.
Construction and architecture
Builders use Pythagoras' theorem to check that corners are square. A builder who knows two walls are 3 m and 4 m long can check the diagonal — if it measures 5 m, the corner is a right angle. Architects use Pythagoras' theorem when calculating roof pitches, staircase dimensions, and structural supports.
Navigation and distance
Pythagoras' theorem gives the straight-line distance between two points. On a grid, the distance between point (x₁, y₁) and (x₂, y₂) is √((x₂−x₁)² + (y₂−y₁)²) — a direct application of Pythagoras' theorem. GPS systems use this in three dimensions to calculate position.
Technology and computing
Pythagoras' theorem underlies the distance formula used in graphics, physics engines, and machine learning. When a computer calculates whether two objects have collided, it uses a form of this theorem. Recommendation algorithms use it to measure how similar two items are. Statistics uses a related concept when measuring how different data points are from each other.
Frequently asked questions
- Did Pythagoras discover Pythagoras' theorem?
- Pythagoras' theorem was known long before Pythagoras (c. 570–495 BCE). Babylonian clay tablets from around 1800 BCE contain Pythagorean triples, and ancient Indian and Chinese mathematicians also knew the result. Pythagoras or his school may have provided the first formal proof. The name Pythagoras' theorem reflects tradition rather than sole discovery.
- What is the hypotenuse?
- The hypotenuse is the longest side of a right-angled triangle — always the side opposite the right angle. In Pythagoras' theorem (a² + b² = c²), c represents the hypotenuse. It is always longer than either of the other two sides. You can identify the hypotenuse by finding the side directly across from the 90-degree angle.
- Does Pythagoras' theorem work in 3D?
- Yes. In three dimensions, the distance between two points (x₁,y₁,z₁) and (x₂,y₂,z₂) is √((x₂−x₁)²+(y₂−y₁)²+(z₂−z₁)²). This is Pythagoras' theorem applied twice. The theorem also extends to any number of dimensions — a key tool in physics, computer graphics, and data science, where distances in high-dimensional spaces are calculated routinely.
- What are the most common mistakes when using Pythagoras' theorem?
- The most common error is misidentifying the hypotenuse. Pythagoras' theorem only applies to right-angled triangles — using it on other triangles gives wrong answers. Another common mistake is forgetting to square root at the end: c² = 25 means c = 5, not 25. Always check which side is the hypotenuse before applying Pythagoras' theorem.