I am working on a Number Theory book and I have come across the following problem:
(Underwood Dudley 2nd Edition Section 5 Problem 3):
Solve the system:
x $\equiv 3(mod 5)$
x $\equiv 5(mod7)$
x $\equiv 7(mod11)$
I understand that I must use the Chinese Remainder theorem and I understand that the CRT states that if the GCD of these three numbers there exists a unique solution (mod 385), but my book gives me no instruction on how to go about finding this solution--other than cold hard calculation. Could I have some advice or direction on the method to solving this problem and the idea behind the method? Thank you!
Here's a method, sometimes called 'adding the modulus', that works fairly well for small moduli--I'll apply it to your problem:
Start with the congruence of the largest modulus, and as we go through each step, we watch for a number that satisfies any of the remaining congruences.:
$\pmod{11}: x\equiv 7\equiv 18$. We notice that $18$ also satisfies $x\equiv 3\pmod{5}$.
So $x\equiv 18 \pmod{55}$.
Then $\pmod{55}: x\equiv 18\equiv 73\equiv 128\equiv 183\equiv 238\equiv 293\equiv348 $. Here we notice that $348$ also satisfies $x\equiv 5\pmod{7}$.
Thus our solution is $x\equiv 348\pmod{385}$