Find the last non-zero digit in the terminating decimal representation of the number 5 2 0 0 3 1 ?
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.
i did it the same way..+1
Notice that 5 n 1 in decimal form is always: 0. | n-1 number of 0 | 2^n.
ϕ ( 1 0 ) = 4
2 2 0 0 3 ≡ 2 3 = 8 ( m o d 1 0 )
good approach..+1
The last digit of decimal representation of 5 − n follows the cyclic order 2,4,6,8,2... So for 2003, it is 8
Problem Loading...
Note Loading...
Set Loading...
Finding the last non-zero digit is same as finding the last digit of 5 2 0 0 3 1 × 1 0 2 0 0 3 . This can be simplified as
5 2 0 0 3 1 0 2 0 0 3 = 2 2 0 0 3
Last digit of 2 x follows a cyclic pattern of period 4. Hence the last digit of 2 2 0 0 3 is same as the last digit of 2 3 , which is 8.