How can this linear congruence system be solved by using Chinese remainder theorem?
\begin{align} 12x&\equiv -7 \pmod {13}\\ 4x&\equiv 7 \pmod {9}\\ 2x&\equiv -3 \pmod {11} \end{align}
As far as I understand, we have to create some M numbers as it follows: \begin{align} M = 13 * 9 * 11 = 1287\\ M_1 = 9 * 11 = 99\\ M_2 = 13 * 11 = 143\\ M_3 = 13 * 9 = 117 \end{align}
But from here forward it becomes confusing for me. What should be done next?
Thank you in advance.
You can start by simplifying each of the given equations into the form $x\equiv k_i \bmod m_i$.
For example, $4x \equiv 7 \equiv 16 \implies x\equiv 4 \bmod 9$
Then the generalized solution to the Chinese remainder theorem becomes more accessible.
However it's often at least as efficient to construct the answer by combining $2$ modulus equations at a time to make a resulting single equation, especially if some of the $k_i$ turn out to be the same (as here).