Find the sum of all positive three-digit numbers such that
This is part of the set Fun With Problem-Solving .
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.
a b c = 1 0 0 a + 1 0 b + c
1 0 0 a + 1 0 b + c = 2 a 3 + b 2 + 8 c
( 1 0 0 a − 2 a 3 ) + ( 1 0 b − b 2 ) = 7 c
2 a ( 5 0 − a 2 ) + b ( 1 0 − b ) = 7 c
It is obvious that a , b , c are positive integers with 1 ≤ a ≤ 9 and 0 ≤ b , c , ≤ 9
We consider the endpoints at a = 1 and a = 9
When a = 1 ,
2 a ( 5 0 − a 2 ) = 9 8
b ( 1 0 − b ) ≥ 0
7 c ≥ 0 + 9 8
c ≥ 1 4 , which is impossible.
When a = 9 ,
2 a ( 5 0 − a 2 ) = − 5 5 8 < 0
Note that b ( 1 0 − b ) = − ( b − 5 ) 2 + 2 5 ≤ 2 5
2 a ( 5 0 − a 2 ) + b ( 1 0 − b ) < 0
7 c < 0 ,which is impossible.
The same argument holds for a = 8 .
When a = 7 ,
2 a ( 5 0 − a 2 ) = 1 4
⇒ 1 4 + b ( 1 0 − b ) = 7 c
It is obvious that b ( 1 0 − b ) is divisible by 7
If so, b = 0 or b = 3 or b = 7
When b = 0 , c = 2
When b = 3 , c = 5
When b = 7 , c = 5
When a = 6 ,
2 a ( 5 0 − a 2 ) = 1 6 8
2 a ( 5 0 − a 2 ) + b ( 1 0 − b ) ≥ 1 6 8 + 0
7 c ≥ 1 6 8
c ≥ 2 4 , which is impossible.
The same argument holds for a = 2 , 3 , 4 , 5
We conclude that there are only 3 possible sets of solutions.
The 3 three-digit integers are 7 0 2 , 7 3 5 , 7 7 5 .
Their sum = 7 0 2 + 7 3 5 + 7 7 5 = 2 2 1 2