a = A positive integer representing one leg of a right triangle
b = A positive integer representing the other leg of a right triangle
c = A positive integer representing the hypotenuse (longest side) of a right triangle
Worked Example
Problem: Verify that (5, 12, 13) is a Pythagorean triple, and then use it to generate a new triple by multiplying each number by 3.
Step 1: Square each of the two smaller numbers and add them together.
52+122=25+144=169
Step 2: Square the largest number and check if it equals the sum.
132=169
Step 3:Since 169=169, the equation a2+b2=c2 holds, confirming this is a Pythagorean triple.
Step 4: Multiply each value by 3 to generate a new triple.
3×5=15,3×12=36,3×13=39
Step 5:Verify the new triple: 152+362=225+1296=1521 and 392=1521. It works.
152+362=392
Answer: (5, 12, 13) is a Pythagorean triple, and multiplying by 3 gives another valid triple: (15, 36, 39).
Another Example
Problem: Use the formula for generating primitive Pythagorean triples to find the triple produced by m = 4 and n = 1.
Step 1:A primitive triple (one where the three numbers share no common factor greater than 1) can be generated using two positive integers m>n with the formulas a=m2−n2, b=2mn, c=m2+n2.
Step 2:Substitute m=4 and n=1.
a=42−12=16−1=15
Step 3:Calculate b.
b=2(4)(1)=8
Step 4:Calculate c.
c=42+12=16+1=17
Step 5:Verify: 82+152=64+225=289=172. The triple checks out.
82+152=172
Answer: Using m = 4 and n = 1, the generated primitive Pythagorean triple is (8, 15, 17).
Frequently Asked Questions
How many Pythagorean triples are there?
There are infinitely many Pythagorean triples. You can always take any known triple and multiply all three numbers by the same positive integer to get a new one. Beyond that, there are infinitely many primitive triples (where a, b, and c share no common factor), which can be generated using the formula a=m2−n2, b=2mn, c=m2+n2 for coprime integers m>n where m and n are not both odd.
What is the difference between a Pythagorean triple and a primitive Pythagorean triple?
A primitive Pythagorean triple is one where the three integers share no common factor other than 1. For example, (3,4,5) is primitive because gcd(3,4,5)=1, but (6,8,10) is not primitive because all three numbers are divisible by 2. Every Pythagorean triple is either primitive or a multiple of a primitive triple.
Why It Matters
Pythagorean triples give you exact integer side lengths for right triangles, which is useful in construction, navigation, and any setting where you need precise measurements without messy decimals. They also appear throughout number theory — Fermat's Last Theorem, one of the most famous results in mathematics, asks whether the equation an+bn=cn has positive integer solutions for n>2 (it does not). Knowing common triples like (3,4,5) and (5,12,13) also speeds up standardized test problems involving right triangles.
Common Mistakes
Mistake:Assuming any three numbers that satisfy a2+b2=c2 form a Pythagorean triple.
Correction:All three values must be positive integers. For instance, (1,1,2) satisfies the equation but is not a Pythagorean triple because 2 is not an integer.
Mistake: Thinking there is only a small, fixed list of Pythagorean triples.
Correction:There are infinitely many. You can generate new ones by scaling (multiplying all three numbers by the same integer) or by using the formula a=m2−n2, b=2mn, c=m2+n2 with different choices of m and n.