I want to show that if we are given a $4$-digit number and "double" it, the $8$-digit number that we become is divided by $137$.
How can we show this? Could you give me a hint?
We have to find what the number that we get is equal to modulo $137$ . But how can we get such an info?
Take any number: ( $n,m,s,t \in \{0,1,...,9\}, n\neq 0$ )
We form 4-digit number : W = $1000n+100m+10s+t $
Now, we "double" it, getting:
$1000\cdot10000n + 100\cdot10000m + 10\cdot10000s + 10000t + 1000n+100m+10s+t$
We can take $(1000n+100m+10s+t)(10000 + 1) $ = $10001\cdot W$
The question is, whether $10001$ is divisible by $137$.
It clearly is, because $10001 = 137\cdot73$
So
$137 \ | \ 10001\cdot W$