Difference between revisions of "Pythagorean Theorem"

(remove nonexistent category)
m
(15 intermediate revisions by 7 users not shown)
Line 32: Line 32:
 
</center>
 
</center>
  
Since <math>ABC, CBH, ACH</math> are similar right triangles, and the areas of similar triangles are proportionate to the squares of corresponding side lengths,
+
Since <math>ABC, CBH, ACH</math> are similar right triangles, and the areas of similar triangles are proportional to the squares of corresponding side lengths,
 
<center>
 
<center>
 
<math> \frac{[ABC]}{AB^2} = \frac{[CBH]}{CB^2} = \frac{[ACH]}{AC^2} </math>.
 
<math> \frac{[ABC]}{AB^2} = \frac{[CBH]}{CB^2} = \frac{[ACH]}{AC^2} </math>.
Line 44: Line 44:
 
<center>[[Image:Pyth2.png]]</center>
 
<center>[[Image:Pyth2.png]]</center>
  
Evidently, <math>AY = AB - BC </math> and <math>AX = AB + BC </math>.  By considering the [[power of a point | power]] of point <math>A </math> with respect to <math>\omega </math>, we see
+
Evidently, <math>AY = AB - BC </math> and <math>AX = AB + BC </math>.  By considering the [[Power of a Point | power of point]] <math>A </math> with respect to <math>\omega </math>, we see
  
 
<center>
 
<center>
 
<math>AC^2 = AY \cdot AX = (AB-BC)(AB+BC) = AB^2 - BC^2 </math>.  {{Halmos}}
 
<math>AC^2 = AY \cdot AX = (AB-BC)(AB+BC) = AB^2 - BC^2 </math>.  {{Halmos}}
 
</center>
 
</center>
 +
 +
=== Proof 3 ===
 +
 +
<math>ABCD</math> and <math>EFGH</math> are squares.
 +
<center>
 +
<asy>
 +
pair A, B,C,D;
 +
A = (-10,10);
 +
B = (10,10);
 +
C = (10,-10);
 +
D = (-10,-10);
 +
 +
pair E,F,G,H;
 +
E = (7,10);
 +
F = (10, -7);
 +
G = (-7, -10);
 +
H = (-10, 7);
 +
 +
draw(A--B--C--D--cycle);
 +
label("$A$", A, NNW);
 +
label("$B$", B, ENE);
 +
label("$C$", C, ESE);
 +
label("$D$", D, SSW);
 +
 +
draw(E--F--G--H--cycle);
 +
label("$E$", E, N);
 +
label("$F$", F,SE);
 +
label("$G$", G, S);
 +
label("$H$", H, W);
 +
 +
label("a", A--B,N);
 +
label("a", B--F,SE);
 +
label("a", C--G,S);
 +
label("a", H--D,W);
 +
label("b", E--B,N);
 +
label("b", F--C,SE);
 +
label("b", G--D,S);
 +
label("b", A--H,W);
 +
label("c", E--H,NW);
 +
label("c", E--F);
 +
label("c", F--G,SE);
 +
label("c", G--H,SW);
 +
</asy>
 +
</center>
 +
<math>(a+b)^2=c^2+4\left(\frac{1}{2}ab\right)\implies a^2+2ab+b^2=c^2+2ab\implies a^2 + b^2=c^2</math>. {{Halmos}}
  
 
== Common Pythagorean Triples ==
 
== Common Pythagorean Triples ==
Line 55: Line 100:
 
<cmath>3-4-5</cmath>
 
<cmath>3-4-5</cmath>
 
<cmath>5-12-13</cmath>
 
<cmath>5-12-13</cmath>
<cmath>9-12-15</cmath>
 
 
<cmath>7-24-25</cmath>
 
<cmath>7-24-25</cmath>
 
<cmath>8-15-17</cmath>
 
<cmath>8-15-17</cmath>
Line 61: Line 105:
 
<cmath>12-35-37</cmath>
 
<cmath>12-35-37</cmath>
 
<cmath>20-21-29</cmath>
 
<cmath>20-21-29</cmath>
 +
<cmath>11-60-61</cmath>
 +
 +
 +
Also Pythagorean Triples can be created with the a Pythagorean triple by multiplying the lengths by any integer.
 +
For example,
 +
<cmath>6-8-10 = (3-4-5)*2</cmath>
 +
<cmath>21-72-75 = (7-24-25)*3</cmath>
 +
<cmath>10-24-26 = (5-12-13)*2</cmath>
  
 
== Problems ==
 
== Problems ==
Line 66: Line 118:
 
* [[2006_AIME_I_Problems/Problem_1 | 2006 AIME I Problem 1]]
 
* [[2006_AIME_I_Problems/Problem_1 | 2006 AIME I Problem 1]]
 
* [[2007 AMC 12A Problems/Problem 10 | 2007 AMC 12A Problem 10]]
 
* [[2007 AMC 12A Problems/Problem 10 | 2007 AMC 12A Problem 10]]
 +
=== Sample Problem ===
 +
Right triangle <math>ABC</math> has legs of length <math>333</math> and <math>444</math>. Find the hypotenuse of <math>ABC</math>.
 +
==== Solution 1 (Bash) ====
 +
<math>\sqrt{333^2 + 444^2} = 555</math>.
 +
==== Solution 2 (Using 3-4-5) ====
 +
We see <math>333-444</math> looks like the legs of a <math>3-4-5</math> right triangle with a multiplication factor of 111. Thus <math>5*111 = 555</math>.
 +
 +
=== Another Problem ===
 +
Right triangle <math>ABC</math> has side lengths of <math>3</math> and <math>4</math>. Find the sum of all the possible hypotenuses.
 +
==== Solution (Casework) ====
 +
Case 1: 3 and 4 are the legs. Then 5 is the hypotenuse.
 +
Case 2: 3 is a leg and 4 is the hypotenuse.
 +
There are no more cases as the hypotenuse has to be greater than the leg.
 +
This makes the sum <math>4+5=9</math>.
  
 
== External links ==
 
== External links ==
*[http://www.cut-the-knot.org/pythagoras/index.shtml 75 proofs of the Pythagorean Theorem]
+
*[http://www.cut-the-knot.org/pythagoras/index.shtml 118 proofs of the Pythagorean Theorem]
  
 
[[Category:Geometry]]
 
[[Category:Geometry]]

Revision as of 19:38, 26 January 2020

The Pythagorean Theorem states that for a right triangle with legs of length $a$ and $b$ and hypotenuse of length $c$ we have the relationship ${a}^{2}+{b}^{2}={c}^{2}$. This theorem has been know since antiquity and is a classic to prove; hundreds of proofs have been published and many can be demonstrated entirely visually(the book The Pythagorean Proposition alone consists of more than 370). The Pythagorean Theorem is one of the most frequently used theorems in geometry, and is one of the many tools in a good geometer's arsenal. A very large number of geometry problems can be solved by building right triangles and applying the Pythagorean Theorem.

This is generalized by the Pythagorean Inequality and the Law of Cosines.

Proofs

In these proofs, we will let $ABC$ be any right triangle with a right angle at ${} C$.

Proof 1

We use $[ABC]$ to denote the area of triangle $ABC$.

Let $H$ be the perpendicular to side $AB$ from ${} C$.

[asy] pair A, B, C, H; A = (0, 0); B = (4, 3); C = (4, 0); H = foot(C, A, B);  draw(A--B--C--cycle); draw(C--H); draw(rightanglemark(A, C, B)); draw(rightanglemark(C, H, B)); label("$A$", A, SSW); label("$B$", B, ENE); label("$C$", C, SE); label("$H$", H, NNW); [/asy]

Since $ABC, CBH, ACH$ are similar right triangles, and the areas of similar triangles are proportional to the squares of corresponding side lengths,

$\frac{[ABC]}{AB^2} = \frac{[CBH]}{CB^2} = \frac{[ACH]}{AC^2}$.

But since triangle $ABC$ is composed of triangles $CBH$ and $ACH$, $[ABC] = [CBH] + [ACH]$, so $AB^2 = CB^2 + AC^2$.

Proof 2

Consider a circle $\omega$ with center $B$ and radius $BC$. Since $BC$ and $AC$ are perpendicular, $AC$ is tangent to $\omega$. Let the line $AB$ meet $\omega$ at $Y$ and $X$, as shown in the diagram:

Pyth2.png

Evidently, $AY = AB - BC$ and $AX = AB + BC$. By considering the power of point $A$ with respect to $\omega$, we see

$AC^2 = AY \cdot AX = (AB-BC)(AB+BC) = AB^2 - BC^2$.

Proof 3

$ABCD$ and $EFGH$ are squares.

[asy] pair A, B,C,D; A = (-10,10); B = (10,10); C = (10,-10); D = (-10,-10);  pair E,F,G,H; E = (7,10); F = (10, -7); G = (-7, -10); H = (-10, 7);  draw(A--B--C--D--cycle); label("$A$", A, NNW); label("$B$", B, ENE); label("$C$", C, ESE); label("$D$", D, SSW);  draw(E--F--G--H--cycle); label("$E$", E, N); label("$F$", F,SE); label("$G$", G, S); label("$H$", H, W);  label("a", A--B,N); label("a", B--F,SE); label("a", C--G,S); label("a", H--D,W); label("b", E--B,N); label("b", F--C,SE); label("b", G--D,S); label("b", A--H,W); label("c", E--H,NW); label("c", E--F); label("c", F--G,SE); label("c", G--H,SW); [/asy]

$(a+b)^2=c^2+4\left(\frac{1}{2}ab\right)\implies a^2+2ab+b^2=c^2+2ab\implies a^2 + b^2=c^2$.

Common Pythagorean Triples

A Pythagorean Triple is a set of 3 positive integers such that $a^{2}+b^{2}=c^{2}$, i.e. the 3 numbers can be the lengths of the sides of a right triangle. Among these, the Primitive Pythagorean Triples, those in which the three numbers have no common divisor, are most interesting. A few of them are:

\[3-4-5\] \[5-12-13\] \[7-24-25\] \[8-15-17\] \[9-40-41\] \[12-35-37\] \[20-21-29\] \[11-60-61\]


Also Pythagorean Triples can be created with the a Pythagorean triple by multiplying the lengths by any integer. For example, \[6-8-10 = (3-4-5)*2\] \[21-72-75 = (7-24-25)*3\] \[10-24-26 = (5-12-13)*2\]

Problems

Introductory

Sample Problem

Right triangle $ABC$ has legs of length $333$ and $444$. Find the hypotenuse of $ABC$.

Solution 1 (Bash)

$\sqrt{333^2 + 444^2} = 555$.

Solution 2 (Using 3-4-5)

We see $333-444$ looks like the legs of a $3-4-5$ right triangle with a multiplication factor of 111. Thus $5*111 = 555$.

Another Problem

Right triangle $ABC$ has side lengths of $3$ and $4$. Find the sum of all the possible hypotenuses.

Solution (Casework)

Case 1: 3 and 4 are the legs. Then 5 is the hypotenuse. Case 2: 3 is a leg and 4 is the hypotenuse. There are no more cases as the hypotenuse has to be greater than the leg. This makes the sum $4+5=9$.

External links