An ascending series of numbers satisfied the following conditions
- When divided by 3, 4, 5 and 6 the number leaves the remainder of 2.
- When divided by 11, The number leaves no reminder.
The 6th number in this series will be...
I want to know how will we solve this
I tried LCM(3, 4, 5, 6) which is 60
As said that when divides reminder will be 2
So the number will be in the form of : 60x+2
and it is also said that it divides by 11 and get reminder 0 so the number will be in the form of : 11y
We can say
60x + 2 = 11y
Now what I have to do ?
Consider the 11 numbers mod $60\times 11 = 660$:
$$60x+2 \in \{60(11z+0)+2, 60(11z+1)+2, \ldots, 60(11z+10)+2\}$$
Figure out which ones are zero (mod 11)
This gives:
$$660z+2, 660z+62, 660z+122, \ldots, 660z+602$$
You get:
$$660z+242 = 11(60z+22)$$
$$660z+242 = 60(11z+4)+2$$
So, I believe the 6th number will be when $z=5$ (assuming a 0-indexed sequence). So, 3542 satisfies all of the modular congruences and is the 6th positive integer to do so.