Assume I have a list of even integers where none can evenly divide into any of others. Is it true that if I multiply them all by $2$ then they still cannot divide into each other?
For example say my list is $12, 14, 22, 54$
None can dived another evenly.
If I multiply by $2$ I get $24, 28, 44, 108$
And still it is true.
If $a$ does not divide $b$, then $2a$ does not divide $2b$. This is simply because
$$\frac ba=\frac{2b}{2a}$$
If $\dfrac ba$ is not an integer, neither is $\dfrac{2b}{2a}$.