Right-Angled Triangles and Pythagorean Theorem
TL;DR
Right-angled triangles are special because one angle is exactly 90 degrees. The Pythagorean Theorem, $a^2 + b^2 = c^2$, helps you find unknown side lengths in these triangles. This theorem is fundamental for many real-world measurements and calculations.
1. The Mental Model
Imagine a perfect square corner—that's your 90-degree angle. Now, draw a straight line connecting the two ends of that corner. You've just made a right-angled triangle.
2. The Core Material
A right-angled triangle is a triangle where one of its three angles measures exactly 90 degrees (a right angle). This special angle makes it very useful in math and practical applications.
The two sides that form the right angle are called legs (often labeled 'a' and 'b'). The side opposite the right angle is always the longest side and is called the hypotenuse (always labeled 'c').
The Pythagorean Theorem: $a^2 + b^2 = c^2$
This famous theorem states that in a right-angled triangle, the square of the length of the hypotenuse ($c$) is equal to the sum of the squares of the lengths of the other two sides ($a$ and $b$).
It's a powerful tool because if you know the lengths of any two sides of a right-angled triangle, you can always find the length of the third side.
Here's how you'd use it:
* To find the hypotenuse ($c$): $c = \sqrt{a^2 + b^2}$
* To find a leg ($a$): $a = \sqrt{c^2 - b^2}$
* To find a leg ($b$): $b = \sqrt{c^2 - a^2}$
What if you don't have a right angle?
It's crucial to remember that the Pythagorean Theorem only works for right-angled triangles. If a triangle doesn't have a 90-degree angle, you cannot use this theorem.
The Pythagorean Theorem also helps you check if a triangle is right-angled. If you have a triangle with sides $a$, $b$, and $c$, and you find that $a^2 + b^2 = c^2$ (where $c$ is the longest side), then you know it must be a right-angled triangle.
```mermaid
graph TD
A["Have a triangle?"] -->|Yes| B("Know all three side lengths (a, b, c)?");
B -->|No| C["Know any two side lengths?"];
C -->|Yes| D{"Is it a right-angled triangle?"};
D -->|Yes| E("Use Pythagorean Theorem (a² + b² = c²) to find 3rd side");
D -->|No| F("Pythagorean Theorem WON'T work here.");
B -->|Yes| G{"Is a² + b² = c² (where 'c' is longest side)?"};
G -->|Yes| H("YES! It's a right-angled triangle.");
G -->|No| I("NO! Not a right-angled triangle.");
A -->|No|