I will first let you know the problem, then I will tell you what I tried : I have to solve the congruence system,
$20x \equiv{9} \mod{30}$
$9x \equiv{12} \mod{33}$
$36x \equiv{49} \mod{60}$
With the Chinese remainder theorem, I tried to replace the equations because $30$, $33$ and $60$ have commons factors. I found prime decomposition for all modulo $30$, $33$ and $60$ and replaced those prime factor as new modulars. By simplifying I found :
$2x \equiv{0} \mod{4}$
$x \equiv{3} \mod{5}$
$9x \equiv{1} \mod{11}$
I found $x=1728$ for the new system but it does not match with the first system. Maybe there is no solution?