If $x \equiv 0 \pmod{a}$ and $x \equiv 0 \pmod{b}$ then $x \equiv 0 \pmod{ab}$?
Use of CRT, but that doesnt seem to work here?
If $x \equiv 0 \pmod{a}$ and $x \equiv 0 \pmod{b}$ then $x \equiv 0 \pmod{ab}$?
Use of CRT, but that doesnt seem to work here?
Note that $x\equiv0\bmod a$ and $x\equiv0\bmod b$ can be written more concisely as $a\mid x$ and $b\mid x$. Given these two conditions, only $\operatorname{lcm}(a,b)\mid x$ is always true; $ab\mid x$ is true if $\gcd(a,b)=1$.
For example, if $a=6$, $b=15$ ($\operatorname{lcm}(a,b)=30$) and $x=120$, $a\mid x$ and $b\mid x$ are true, but $ab\mid x$ is not true; only $30\mid x$ is true.