Given that , , find sum of all possible values of and .
Try more problems from set Challenges for champions!!!
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.
Let m be a natural number and r be the last digit of m .
Then m ≡ r ( m o d 1 0 ) ⟹ m 1 0 ≡ r 1 0 m o d ( 1 0 2 )
⟹ ( m 1 0 ) 1 0 ≡ ( r 1 0 ) 1 0 m o d ( 1 0 3 )
i.e. m 1 0 0 ≡ r 1 0 0 ( m o d 1 0 0 0 )
Case 1:-
If r = 0 , r 1 0 0 ≡ 0 ( m o d 1 0 0 0 ) . So last three digits are 0 0 0
Case 2:-
If r = 1 , 3 , 7 , 9 , then r 2 ≡ 1 ( m o d 8 ) , so r 1 0 0 ≡ 1 ( m o d 8 ) , Also ∅ ( 1 2 5 ) = 1 0 0 By Euler's Theorem, as ( r , 5 ) = 1 , r 1 0 0 ≡ 1 ( m o d 1 2 5 ) . Hence, r 1 0 0 ≡ 1 ( m o d 1 0 0 0 ) . So last 3 digits are 0 0 1
Case 3:-
If r = 5 then r 2 ≡ 1 ( m o d 8 ) . Hence r 1 0 0 ≡ 1 ( m o d 8 ) and r 1 0 0 ≡ 0 ( m o d 1 2 5 ) . Using Chinese remainder theorem, r 1 0 0 ≡ 6 2 5 ( m o d 1 0 0 0 ) . So last 3 digits are 6 2 5
Case 4:-
If r = 2 , 4 , 6 , 8 then r 1 0 0 ≡ 0 ( m o d 8 ) . Since ( r , 5 ) = 1 we get r 1 0 0 ≡ 1 ( m o d 1 2 5 ) . By Chinese remainder theorem, r 1 0 0 ≡ 3 7 6 ( m o d 1 0 0 0 ) . So last 3 digits are 3 7 6
Adding all the above numbers we get addition as 1 0 0 2