a < b < c , for which a 2 + b 2 = c 2 . For example, 3 2 + 4 2 = 9 + 1 6 = 2 5 = 5 2 .
A Pythagorean triplet is a set of three natural numbers,There exists exactly one Pythagorean triplet such that a + b + c = 1 0 0 0 . Find the value of 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.
How to classify all values k such that there is a Pythagorean triplet that satisfies a + b + c = k ?
How to classify all values k such that there is a unique Pythagorean triplet with satisfies a + b + c = k ?
Log in to reply
In general we can represent the lengths of the sides of a Pythagorean triangle as
d ( m 2 − n 2 ) , 2 d m n , d ( m 2 + n 2 )
for integer d ≥ 1 and coprime positive integers m , n such that m > n with precisely one of m , n being even. The perimeter k of such a triangle will then be
k = 2 d m 2 + 2 d m n = 2 d m ( m + n )
with the aforementioned conditions on d . m . n . This then serves as the generating formula for the desired values of k , as listed here .
Uniqueness is a bit harder to generalize, I think. I'll look at a couple of examples for guidance. With ( d , m , n ) = ( 1 , 3 , 2 ) we have k = 2 ∗ 3 ∗ 5 = 3 0 . We can only have d m = 3 and m + n = 5 , for if:
d m = 1 then d = m = 1 , but m must be at least 2 ;
d m = 5 then d = 1 , m = 5 , (as m ≥ 2 ), which makes it impossible for m + n = 3 , n ≥ 1 ;
d m = 1 5 then m + n = 1 , which is not possible under our conditions.
With d m = 3 , m ≥ 2 we must then have d = 1 , m = 3 and thus n = 2 . Thus a perimeter of k = 3 0 corresponds to a unique Pythagorean triplet, namely ( d , m , n ) = ( 1 , 3 , 2 ) ⟹ ( a , b , c ) = ( 5 , 1 2 , 1 3 ) .
However, k = 1 6 8 can be generated by ( d 1 , m 1 , n 1 ) = ( 2 , 6 , 1 ) , corresponding to ( a 1 , b 1 , c 1 ) = ( 2 4 , 7 0 , 7 4 ) , and by ( d 2 , m 2 , n 2 ) = ( 3 , 4 , 3 ) , corresponding to ( a 2 , b 2 , c 2 ) = ( 2 1 , 7 2 , 7 5 ) . The coinciding values result because both d 1 m 1 = d 2 m 2 and m 1 + n 1 = m 2 + n 2 .
This is an interesting problem, more analysis of which is provided here .
@Brian Charlesworth , we really liked your solution. You can receive upcoming notifications in the solution discussion by subscribing to the comment sections.
If we consider the triplet (15,8,17) we find that a+b+c=40. On multiplying each side by 25 we have (375,200,425) which satisfies the necessary conditions.
Isn't there a more logical solution to such a problem
Log in to reply
Solving a Diophantine Equation.
Log in to reply
correct but how i tried but failed
Log in to reply
@Kaustubh Miglani – (This comment has been converted into a solution)
Log in to reply
@Brian Charlesworth – thanks sir
@Brian Charlesworth – Exactly Same Way Sir
Key fact on Pythagorean triples: Up to permutation of a and b , they can be written as a = p 2 − q 2 , b = 2 p q , c = p 2 + q 2 , q < p .
Thus, a + b + c = ( p 2 − q 2 ) + 2 p q + ( p 2 + q 2 ) = 2 p 2 + 2 p q = 2 p ( p + q ) = 1 0 0 0 .
Note that the last factor, p + q , must be less than 2 p . We must therefore split 500 into two factors, and the greater factor should be less than twice the smaller. In other words, we are looking for p such that p ∣ 5 0 0 , 2 5 0 < p < 5 0 0 , 1 6 ≤ p ≤ 2 2 . The only factor of 500 that satisfies this condition is p = 2 0 , which immediately gives p + q = 2 5 , q = 5 , and therefore a = 2 0 2 − 5 2 = 3 7 5 , b = 2 ⋅ 2 0 ⋅ 5 = 2 0 0 , c = 2 0 2 + 5 2 = 4 2 5 .
Key concept: Similarity Related problem: See Project Euler
But really, if you want to copy paste the exact same wording except to change a b c to c , at least tell us the source.
Problem Loading...
Note Loading...
Set Loading...
We have that c = 1 0 0 0 − ( a + b ) , and so
a 2 + b 2 = ( 1 0 0 0 − ( a + b ) ) 2
⟹ a 2 + b 2 = 1 0 0 0 2 − 2 0 0 0 ( a + b ) + ( a + b ) 2
⟹ a 2 + b 2 = 1 0 0 0 2 − 2 0 0 0 ( a + b ) + a 2 + b 2 + 2 a b
⟹ a b − 1 0 0 0 a − 1 0 0 0 b = − 5 0 0 0 0 0
⟹ ( a − 1 0 0 0 ) ( b − 1 0 0 0 ) = 5 0 0 0 0 0 ⟹ ( 1 0 0 0 − a ) ( 1 0 0 0 − b ) = 2 5 5 6 .
So we require 0 < a < b < 1 0 0 0 such that 1 0 0 0 − a > 1 0 0 0 − b form a positive divisor pair whose product is 5 0 0 0 0 0 . The only possibility is 1 0 0 0 − a = 8 0 0 and 1 0 0 0 − b = 6 2 5 , giving us a = 2 0 0 and b = 3 7 5 , with a 2 + b 2 = 2 0 0 2 + 3 7 5 2 = 4 2 5 2 , i.e., c = 4 2 5 .