I've run into a very fun little problem.
You start out with a four digit number, $N$; you multiply it by 4 to get another $4$ digit number, $4N.$ $4N$ is the reverse of $N$ (i.e., $1234$ and $4321$). I managed to solve for $N,$ but was curious as to how other people approach this problem. If you have a purely logical solution, please let me know.
I found only $2178$. Unfortunately NOT logic
Call $abcd$ the number where $a$ is thousands etc
$4 (1000 a+100 b+10 c+d)=a+10 b+100 c+1000 d$
which means
$3999 a+390 b-60 c-996 d=0$
$d=\dfrac{1}{332} (1333 a+130 b-20 c)$
Then by trial and error I found that $a=2;\;b=1;\;c=7$