mindmind
Find the remainder when the sum of \(2^{100} + 2^ {200} + 2^ {300}+........+ 2^ {10000}\) is divided by 7
2^0 = 1. 1/7 => R=1, R = remainder
2^1 = 2. 2/7 => R=2
2^2 = 4. 4/7 => R=4
2^3 = 8. 8/7 => R=1
2^4 = 16. 16/7 => R=2 .... and the cycle repeats.
We know that the cycle repeats after every 3rd term - 1,2,4,1,2,4.... So, divide the power by 3 to find the number of complete cycles and the remaining powers.
2^100 = (2^99)*2 = R1*2 = 2. 2/7 => R=
2 -------
(99/3 complete cycles and one 2 left.)2^200 = (2^198)*(2^2) = R1*4 = 4. /7 => R=
4 -------
(198/3 complete cycles and two 2 left.)2^300 = R1. 1/7 => R=
1 -------
(100 complete cycles and no 2 left.)Similarly, 2^400 => R=2, 2^500 => R=4, 2^600 => R=1 and the cycle repeats. 2^10000 = (2^9999)*2 => R2.
So, \(2^{100} + 2^ {200} + 2^ {300}+........+ 2^ {10000}\) in terms of remainders is equal to 2 + 4 + 1 + 2 + 4 + 1 +....... 2
Number of terms in the sequence = 10000/100 = 100 = 99 + 1. Each remainder cycle consists of 3 digits - 2,4,1. There are 99/3 = 33 complete cycles and 1 left out 100th term
Therefore, 2 + 4 + 1 + 2 + 4 + 1 +....... 2 = (2+4+1)*33 + 2 = > 7*33 + 2. On dividing this result by 7,
the remainder is 2.
Why do you start the cycle (2^0; 2^1; 2^2 etc) from 2^0? Is it a special case? I've always started from n^1 and the answer was right. Thank you!