Function takes a positive integer and puts the rightmost digit at the leftmost position. For instance . Find the smallest positive integer , with four digits, such that .
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.
1 0 6 is a multiple of 5 3 , so one may think of 1 0 6 0 as the solution. but, to be sure, we need to check numbers from 1 0 0 0 to 1 0 5 9 . If there is one, it would be of form 1 0 a b , where 0 ≤ a ≤ 5 and 0 ≤ b ≤ 9 .
then we need the following to be satisfied
f ( 1 0 a b ) ≡ b 1 0 a ≡ 1 0 3 b + 1 0 2 + a ≡ 4 6 ( b + 1 ) + 1 + a ≡ 0 ( m o d 5 3 )
now, we may find 4 6 ( b + 1 ) + 1 ≡ ( m o d 5 3 ) for all 0 ≤ b ≤ 9 . the result would be as below
4 7 , 4 0 , 3 3 , 2 6 , 1 9 , 1 2 , 5 , 5 1 , 4 4 , 3 7
from the list, above, only one has the possibility to be added to a number 0 ≤ a ≤ 5 and become equal to 5 3 . That would be 5 1 , which is achieved when b = 7 and, then, we add a = 2 . Therefore, the smallest possible number would be 1 0 2 7 .