CSAT Solved Papers/ 2024/Q18
2024 CSAT — Q18
and , when divided by the same number, leave the same remainder . How many numbers can be used as the divisor in order to get the same remainder ?
Worked rationale
If a divisor leaves remainder on both and , then divides both and . Hence
Compute the gcd by subtraction (fast under the clock): , and . So is a divisor of : .
The load-bearing constraint: a divisor that leaves remainder must be strictly greater than (you cannot have a remainder of when dividing by ). Drop .
Valid divisors: — three of them. (Quick check: , , etc., all give remainder .)
Answer: (c) 3.
Why the other options miss
- A solved the wrong question: stops at and answers ” itself” as the one divisor, missing that every divisor of above works.
- B missed a case: finds but drops one (often , thinking “the divisor can’t equal the gcd”) — or counts only .
- D a convention slip: counts all four divisors of including , forgetting that you cannot leave a remainder of when dividing by . This is the planted trap.
Specialist insight
“Same remainder on two numbers” is a gcd-of-the-differences template, every single time. The key fact volume-players skip: subtract the common remainder first, then the divisors are exactly the divisors of the gcd that exceed the remainder. Here the remainder is , so we keep divisors . Had the remainder been , we’d keep divisors (only and , giving ). That single guard — divisor must exceed the remainder — is the whole difference between (c) and (d), and it is the most common silent error on this template across years. Sanity check: you can ignore the original numbers entirely once you have ; the problem is now pure divisor-counting.
Counting as valid — but no remainder of exists when dividing by , so it's excluded (this is the (d)-vs-(c) line).