karishmasparmar
Can the matrix method suggested by stne also be used in the case where we are dividing the number three times?
For example:
On dividing a certain number by 5,7,8 successively, the remainders are 2,3 and 4 respectively. What would be the remainders if order of division is reversed.
Most certainly! As I said in my post before, the matrix method is just another representation of algebra/logic. Finally you are doing the same thing in every case.
Divisors: a, b, c
Remainders: m, n, p
a b c
m n p
Use matrix method twice: First focus on two right columns: you get b*p + n. Then multiply this result i.e. (b*p + n) by a and add m to it to get a*(b*p + n) + m
To look at your example:
5 7 8
2 3 4
First step: 7*4 + 3 = 31
Second step 5*31 + 2 = 157
157 is the first such number. Divide 157 by 8, 7, 5 in that order:
157/8 Quotient = 19, Remainder = 5
19/7 Quotient = 2, Remainder = 5
2/5 Quotient = 0, Remainder = 2
Remainders are 5, 5, 2
But preferably, don't use this method. Just use logic. Why? Because, say, you knew this 'matrix method' and used it to solve 2 divisor problems. What if you get 3 divisor problems in the test? Can you use matrix method at that time? No! I derived the method for 3 divisor problems by first working out the logic and then putting it in the matrix form. So why not use logic only?
Think this way:
Divisors: 5, 7, 8
Remainders: 2, 3, 4
You start by considering the last step first. At the end, when you divide by 8, you want remainder to be 4 (let's assume the quotient we get is 0 in this case). This means that after division by 7, we should get 4 as the quotient (so that we can get 4 as remainder when we divide by 8 in the next step). So, when you divide by 7, the quotient must be 4 and remainder must be 3. At this step, the number must be 7*4 + 3 = 31
Now, when you divide by 5, you need the quotient to be 31 and remainder to be 2 so number must be 5*31 + 2 = 157
157 is the first such number. (If this is not very clear, divide 157 successively by 5, 7, and 8 and see what goes on).
Now you proceed as before!
I hope you see that you can follow the same logic and solve even with 5 or more divisors very quickly!
Also, there is nothing wrong with 'such a question'. It's very logical and hence fair game as far as GMAT is concerned.