If a number is divisible by two or more co-prime numbers, then that number is also divisible by the product of the co-prime numbers also. How to prove this using modular arithmetic?
Let $N$ be an integer
Let $p_1,p_2,p_3$ be co-prime numbers.
$N \equiv 0 \pmod{p_1}\cdots(1)\\ N \equiv 0 \pmod{p_2}\cdots(2)\\ N \equiv 0 \pmod{p_3}\cdots(3)$
Then, $N \equiv 0 \pmod{p_1p_2p_3}\cdots(4)$
i.e., if first three equations are true, 4th equation must be true.
I hope, I have written this correctly. But, how to prove this. please help
I tried to rewrite the first first three equations as follows, to reach the fourth, but it did not help
$(1) \implies N = k_1p_1\\ (2) \implies N = k_2p_2\\ (3) \implies N = k_3p_3$
Note: modular arithmetic is not in my syllabus. But I am learning as it is a very interesting topic. appreciated if anybody can provide links to any online material or book to understand these kind of concepts.