A Pythagorean triplet a 2 + b 2 = c 2 has the value of a = 9 7 .
Find the sum of the values of b and c .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Only thing needed for solving this problem is knowing the fact that 9 7 is a prime.
Solution:
a 2 + b 2 = c 2 → 9 7 × 9 7 = ( c − b ) ( c + b )
Now since 9 7 is prime and we know that for positive integral values of b and c , ( c + b ) > ( c − b ) hence it is obligatory that c + b = 9 7 2 → c + b = 9 4 0 9
There's also a fancier (and definitely much harder solution using the fact that all Pythagorean triplets can be found using the formula below:
( x , y , z ) = ( d ( a 2 − b 2 ) , 2 a b d , d ( a 2 + b 2 ) )
Where g c d ( a , b ) = 1
Problem Loading...
Note Loading...
Set Loading...
Euclid's formula is a fundamental formula for generating Pythagorean triples given an arbitrary pair of positive integers m and n with m > n. The formula states that the integers a = m 2 − n 2 , b = 2 m n , c = m 2 + n 2 form a Pythagorean triple. a = 9 7 = ( m − n ) ( m + n ) 97 is a prime number ⇒ m − n = 1 ⇒ m = 4 9 , n = 4 8 ⇒ b + c = ( m + n ) 2 = 9 7 2 = 9 4 0 9