I am really bummed out on this problem, can't find any helpful links. But the problem asks:
1.) Find the solution of the congruences modulo 4199:
$x ≡ 11 \ (mod \ 13), \ x ≡ 5 \ (mod \ 17), \ x ≡ 17 \ (mod \ 19)$
I really need a good explanations on solving this problem, if anyone can help out, that would be appreciated.
Let's write the solution as:
$$x = 11 A + 5 B + 17 C\tag{1}$$
where we choose $A$ such that it equals $1$ when reduced modulo $11$ but it is zero when evaluated modulo $17$ and $19$ and we choose $B$ and $C$ analogously such that $x$ manifestly satisfies the 3 congruence relations. So, all we need to know is how to find a number that's equal to $1$ modulo some given number $y_1$ while it's zero modulo some other numbers $y_2, y_3$ etc. that are relatively prime. The product of the numbers $y_2, y_3,\ldots$ will clearly be zero modulo these numbers, and if you multiply that by the inverse of that number modulo $y_1$ it will obviously remain zero modulo $y_2, y_3,\ldots$, but it will now be equal to $1$ modulo $y_1$.
We can thus write down the coefficients in Eq. (1) as:
$$ \begin{split} A &= 17\times 19 \times \left(\left(17\times 19\right)^{-1}\bmod 13\right) =17\times 19\times 6 \\ B &= 13\times 19 \times \left(\left(13\times 19\right)^{-1}\bmod 17\right) = 13\times 19 \times 2\\ C &= 13\times 17 \times \left(\left(13\times 17\right)^{-1}\bmod 19\right) = 13\times 17 \times 8 \end{split} $$
This method is known as the Chinese remainder theorem, but i.m.o., it's best to use the logic behind the theorem to solve the problem rather than to just look it up and use the formula when you are not yet familiar with the details.