Both $p, q$ are prime
$x \equiv y \pmod p$
$x \equiv y \pmod q$
Using Chinese remainder theorem,
$M = p*q$
$x = a1*b1*M/p + a2*b2*M/q$
$x = a1*b1*q + a2*b2*p$
$a1 = y$
$a2 = y$
$b1$ is solution of $(M/p)*x \equiv 1 \pmod p$
i.e. soln of $qx \equiv 1 \pmod p$
Likewise $b2$ is solution of $px \equiv 1 \pmod q$
$q$ & $q$ are prime - so they are co-prime to each other.
So $b1 \equiv (1/q) \pmod p$ ----> (1)
$b2 \equiv (1/p) \pmod q$ ----> (2)
So $x \equiv y*b1*q + a2*b2*q$ ---> (3)
From (1), (2) & (3) is it possible to arrive at
$x \equiv y \pmod{p*q}$
I know it's possible to prove the above in a much more easy way, but I was wondering if it's possible to prove this using CRT?