Does there exist a positive integer $n$ such that it will be twice of $n$ when its digits are reversed?
We define $f(n)=m$ where the digits of $m$ and $n$ are reverse. Such as $f(12)=21,f(122)=221,f(10)=01=1$,so we cannot say $f(f(n))=n$,but $f(f(n))=n/10^k$.
So we need to find a solution to $f(n)=2n$.
If $f(n)=2n$ and the first digit of $n$ is 2,then the last digit of $n$ is 1 or 6,and so on.So the first digit of $n$ is even.
There are some solutions to the equation $f(n)=\frac{3}{2}n$,such as $n=4356,43956$,but there is no solution to $f(n)=2n$ when $n<10^7$.
Edit:Since Alon Amit has proved that $f(n)=2n$ has no positive solution,so I wonder whether $f(n)=\frac{3}{2}n$ has only finite solutions.
Any suggestion is grateful,thanks in advance!