There are many triples of positive integers that satisfy the following properties:
Find the smallest of such triples. Submit your answer as the ratio of the product and the sum of the three integers.
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.
Interestingly, the requested ratio turns out to be quite simple in this form; it's just t ( 2 t 2 + 2 t + 1 ) .
Let the three positive integers be a , b , and c . Then we have:
{ a + c = b 2 a 2 + b 2 = c 2 . . . ( 1 ) . . . ( 2 )
From ( 2 ) , since a + c = b 2 :
a 2 + a + c a + c c − a ⟹ c = c 2 = c 2 − a 2 = ( c + a ) ( c − a ) = 1 = a + 1
From ( 1 ) , since c = a + 1 : a + c = 2 a + 1 = b 2 . This means that b is odd. The smallest odd perfect square is 1 , then a = 0 , which is unacceptable. The next smallest odd perfect square is 3 2 , then a = 4 and c = 4 + 1 = 5 .
Therefore ( a , b , c ) = ( 4 , 3 , 5 ) and a + b + c a b c = 4 + 3 + 5 4 × 3 × 5 = 5 .
nice solution sir
Log in to reply
Glad that you like it.
Problem Loading...
Note Loading...
Set Loading...
Let the three positive integers be (respectively) a , b , c . From the question, we have b 2 = a + c = c 2 − a 2
Since a , c are positive, we can divide by a + c to find that c − a = 1
So we're looking for Pythagorean triples with the hypotenuse one more than the length of one of the legs. The obvious candidate - 3 , 4 , 5 - works, with a = 4 , b = 3 , c = 5 giving an answer of 5 .
We can find all solutions: since c − a = 1 , we have b 2 = 2 a + 1 . So b must be odd, and greater than 1 ; if we let b = 2 t + 1 , then a = 2 t 2 + 2 t , b = 2 t + 1 , c = 2 t 2 + 2 t + 1
for positive integer t .