Let’s understand this theorem with an example:
Q.5) – Rahul has certain number of cricket balls with him. If he divides them into 4 equal groups, 2 are left over. If he divides them into 7 equal groups, 6 are left over. If he divides them into 9 equal groups, 7 are left over. What is the smallest number of cricket balls could Rahul have?
Let N be the number of cricket balls.
N = 2(mod4) ————–> equation 1
N = 6(mod7) ————–> equation 2 &
N = 7(mod9) ————–> equation 3.
From N=2(mod4) we get, N=4a+2
Substituting this in equation 2, we get the following equation:
4a + 2 = 6(mod7)
Therefore, 4a = 4(mod7)
Hence, 2 x 4a = 2 x 4(mod7)
This gives us a = 1(mod7)
Hence a = 7b+1.
Plugging this back to N=4a+2, we get….
N = 28b + 6
Substituting this to equation 2;
28b + 6 = 7(mod9)
28b = 1(mod9)
Therefore, b=1(mod9)
Hence b = 9c + 1.
Substituting this back to equation N=28b+6;
N = 28(9c+1) + 6
N = 252c + 34
The smallest positive value of N is obtained by setting c=0.
It gives us N = 34
TB – All prime numbers greater than 3 can be expressed as 6K+1 or 6K-1, this is another important result. You would be using this result a lot when it comes to number system problems...