Find the sum of the last three digits of .
Try applying the Binomial Theorem instead of the usual mod.
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.
So, here's a solution based on the Binomial Theorem.
We have that : 7 9 5 0 = ( 8 0 − 1 ) 5 0 .
And based on the Binomial Theorem, the above expression is equal to:
( 8 0 − 1 ) 5 0 = k = 0 ∑ 5 0 ( k 5 0 ) 8 0 k ( − 1 ) 5 0 − k .
Notice that the expansion consists 5 1 terms, where the first 5 0 are easily proved to be divisible by 1 0 0 0 , and the last term is equal to 1 .
Hence, k = 0 ∑ 5 0 ( k 5 0 ) 8 0 k ( − 1 ) 5 0 − k ≡ 1 ≡ 7 9 5 0 ( mod 1 0 0 0 ) .
Thus, the sum of the last three digits of 7 9 5 0 is 1 .