04 is the answer.
2^1 = 2; last digit 2
2^2 = 4; last digit 4
2^3 = 8; last digit 8
2^4 = 16; last digit 6
last digit 2 (the cycle 2-4-8-6 is repeating)
etc.
2^x will end in 6 if x divisible by 4
2^x will end in 2 if x-1 divisible by 4
2^x will end in 4 if x-2 divisible by 4
2^x will end in 8 if x-3 divisible by 4
likewise, every value of 2^x where x-2 divisible by 4 cycles:
(multiply each by 16 to get the next)
04 (2^2, 2^22, 2^42, ...)
64 (or -36)(2^6, 2^26, 2^46,...)
24 (or -76)(2^10, 2^30, 2^50, ...)
84 (or -16)(2^14, 2^34, ...)
44 (or -56)(2^18, 2^38,...)
so 2^222 ends in 04.
2006-11-28 19:42:09
·
answer #1
·
answered by Scott R 6
·
5⤊
1⤋
use mod 100
we know
2^13 = 8192 mod 100 or -8 mod 100 (as easy to compute with 8)
so 2^221 = (2^13)^17 = (-8)^17 = - 2^51 mod 100
multiply by 2
2^222 = -2^52 mod 100
= - (2^13)^4 mod 100
= -(-8)^4 mod 100
= -2^12 mod 100
= -4096 mod 100
= -96 mod 100
= 04
These are last 2 digits that is 04
2006-11-28 20:09:04
·
answer #2
·
answered by Mein Hoon Na 7
·
1⤊
1⤋
Maybe this might help.
2^222 (take logs).
Log 2^222
222 Log 2
222*0∙301 029 995
66∙828 659 04 (take Anti-log).
6∙739 986 66... x 10^66
It looks like the last two digits are 66.
2006-11-28 19:53:06
·
answer #3
·
answered by Brenmore 5
·
0⤊
3⤋
04:
2¹º = 1024 ≡ -1 (mod 25)
2²²² = 4 * 2²²º = 4 * (2¹º)²² ≡ 4 (mod 25)
so two digits of 2^222 is: 04, 29, 54, 79
On the other hand, 2²²² = 4 * 2²²º , it follow two digits of 2^222 is multiple of 4.
Thus it is 04
2006-11-28 19:48:49
·
answer #4
·
answered by can_t_get_enough 2
·
0⤊
4⤋
by using mod 10
only the last one digit can be found.
2006-11-28 19:55:24
·
answer #5
·
answered by iyiogrenci 6
·
0⤊
2⤋
if:
2^1= ...000010
2^2= ...000100
2^3= ...001000
...
for 2^222 or 2^n where n>1
the last two digits would be 00
at least written in binary
2006-11-28 19:47:21
·
answer #6
·
answered by igot4onit 2
·
0⤊
4⤋
only the last one digit can be found.
2006-11-28 20:00:24
·
answer #7
·
answered by csp 2
·
0⤊
2⤋