Find the smallest natural number $n$ such that the following conditions are fulfilled:
- It's decimal representation ends with the number 6.
- If the 6 is moved to the beginning of the number, the resulting number is 4 times the original.
I am not sure where to begin with such a question. Any ideas?
Well, if your $n$ ends with 6, then you may write it as $10m+6$. Also, suppose it was $k$ digits long; then with 6 moved to the beginning it would be $6\cdot10^k+m$. The rest is simple: $$4(10m+6)=6\cdot10^k+m\\ 39m=6\cdot(10^k-4)\\ m=2\cdot(10^k-4)/13\\$$ ...and we only have to check a handful of values for $k$ to find the smallest one that fits.