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.
to find last digit in b^i where b is base ans i is index.
Always find remainder of index ÷ 4,
if remainder is 1 then unit digit is, unit digit of base^1
if remainder is 2 then unit digit is, unit digit of base^2
if remainder is 3 then unit digit is, unit digit of base^3
if remainder is 0 then unit digit is, unit digit of base^4
in 2^35, 35 ÷ 4, remainder is 3
so unit digit is unit digit of 2^3 = 8
let's make a list using brute force:
2 4 ≡ 6 ( m o d 1 0 )
2 5 ≡ 2 ( m o d 1 0 )
the pattern here is [ 2 , 4 , 8 , 6 , 2 , 4 , 8 , 6 … 6 ]
so we need to divide the exponent by 4
3 5 ≡ 3 ( m o d 4 ) and if the remainder was 3 then the last digit is 8
1 2 3 4 5 6 7 8 |
|
2 1 = 2
2 2 = 4
2 3 = 8
2 4 = 1 6
2 5 = 3 2
The units digits repeat in every cycle of 4 . So we divide 3 5 by 4 . We have
4 3 5 = 8 remainder 3 . So the units digit is 8 .
Problem Loading...
Note Loading...
Set Loading...
2 3 5 = ( 1 0 2 4 ) 3 × 3 2 ≡ 4 3 × 2 5 ≡ 6 4 × 3 2 ≡ 4 × 2 ≡ 8 ( m o d 1 0 )