For example, if it is the problem of
Find the smallest integer that leave a remainder of 3 when divided by 5, a remainder of 5 when divided by 7, and a remainder of 7 when divided by 11
In some explanation such as in this article it started to use mod, and the whole explanation seemed to very difficult to understand. Is there a more plain English explanation of how this is solved?
First you solve $5a + 7 b = 1$ and then $35c + 11 d = 1.$
$$ \gcd( 7, 5 ) = ??? $$
$$ \frac{ 7 }{ 5 } = 1 + \frac{ 2 }{ 5 } $$ $$ \frac{ 5 }{ 2 } = 2 + \frac{ 1 }{ 2 } $$ $$ \frac{ 2 }{ 1 } = 2 + \frac{ 0 }{ 1 } $$ Simple continued fraction tableau:
$$ \begin{array}{cccccccc} & & 1 & & 2 & & 2 & \\ \frac{ 0 }{ 1 } & \frac{ 1 }{ 0 } & & \frac{ 1 }{ 1 } & & \frac{ 3 }{ 2 } & & \frac{ 7 }{ 5 } \end{array} $$ $$ $$ $$ \begin{array}{ccc} \frac{ 1 }{ 0 } & \mbox{digit} & 1 \\ \frac{ 1 }{ 1 } & \mbox{digit} & 2 \\ \frac{ 3 }{ 2 } & \mbox{digit} & 2 \\ \frac{ 7 }{ 5 } & \mbox{digit} & 0 \\ \end{array} $$
$$ 7 \cdot 2 - 5 \cdot 3 = -1 $$
======================================
$$ \gcd( 35, 11 ) = ??? $$
$$ \frac{ 35 }{ 11 } = 3 + \frac{ 2 }{ 11 } $$ $$ \frac{ 11 }{ 2 } = 5 + \frac{ 1 }{ 2 } $$ $$ \frac{ 2 }{ 1 } = 2 + \frac{ 0 }{ 1 } $$ Simple continued fraction tableau:
$$ \begin{array}{cccccccc} & & 3 & & 5 & & 2 & \\ \frac{ 0 }{ 1 } & \frac{ 1 }{ 0 } & & \frac{ 3 }{ 1 } & & \frac{ 16 }{ 5 } & & \frac{ 35 }{ 11 } \end{array} $$ $$ $$ $$ \begin{array}{ccc} \frac{ 1 }{ 0 } & \mbox{digit} & 3 \\ \frac{ 3 }{ 1 } & \mbox{digit} & 5 \\ \frac{ 16 }{ 5 } & \mbox{digit} & 2 \\ \frac{ 35 }{ 11 } & \mbox{digit} & 0 \\ \end{array} $$
$$ 35 \cdot 5 - 11 \cdot 16 = -1 $$
===========================================
More to come. Checking typesetting..
$$ 7 \cdot (-2) + 5 \cdot 3 = 1. $$ Now multiply $7(-2),5(3)$ by the $3,5$ $$ 3 \cdot 7 \cdot (-2) + 5 \cdot 5 \cdot 3 = -42 + 75 = 33. $$ and
We now want remainder $33$ when divided by $35$ and $7$ when divided by $11$ and $$ 35 \cdot (-5) + 11 \cdot 16 = 1, $$ Now multiply $35(-5),11(16)$ by the $7,33$ $$ 7 \cdot 35 \cdot (-5) + 33 \cdot 11 \cdot 16 = -1225 + 5808= 4583. $$
You can check that the remainder when $4583$ is divided by $5$ really is $3,$ when divided by $7$ really is $5,$ when divided by $11$ really is $7.$
Now, $$ 5 \cdot 7 \cdot 11 = 385. $$ If we subtract $385$ we get the same remainders. So, solutions are $$ 4583, \; 4198, \; 3813, \;3428, \; 3043, , \ldots, \; 733, \; 348, \; -37 $$