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 ?