Method of successive substitution Guide, Meaning , Facts, Information and Description
In modular arithmetic, the method of successive substitution is a method of solving problems of simultaneous congruences by using the definition of the congruence equation.For example, consider the simple set of simultaneous congruences
- x ≡ 3 (mod 4)
- x ≡ 5 (mod 6)
- 3+4j ≡ 5 (mod 6)
Subtract 3 from both sides (this is permitted in modular arithmetic)
- 4j ≡ 2 (mod 6)
- 2j ≡ 1 (mod 3)
- j ≡ 2 × 1 (mod 3)
- j ≡ 2 (mod 3)
- x=3+4(2+3k)
- x=11+12k
- x ≡ 11 (mod 12)
- write the first equation in its equivalent form
- substitute it into the next
- simplify, use the multiplicative inverse if necessary
- continue until the last equation
- back substitute, then simplify
- rewrite back in the congruence form
