CSAT Solved Papers/ 2021/Q75
2021 CSAT — Q75
Joseph visits the club on every th day, Harsh visits on every th day, while Sumit visits on every th day. If all three of them met at the club on a Sunday, then on which day will all three of them meet again?
Worked rationale
They all meet again after days. Factorise:
Now find the weekday days after Sunday: , so the day is .
Answer: (b) Wednesday.
Why the other options miss
- A a remainder slip: takes (a remainder slip) and adds one day.
- C an arithmetic slip: uses or a wrong LCM that shifts the offset.
- D the wrong assumption: assumes the meeting cycle is a whole number of weeks (), ignoring the remainder.
Specialist insight
Two independent steps, each with a classic trap: the LCM must use the highest power of each prime (, not ), and then the weekday is the remainder mod (), not the raw day count. Compute the LCM cleanly, then reduce mod and step forward from Sunday. The “Sunday” distractor is the bait for anyone who forgets isn’t a multiple of .
The trap, in one line
, and , so Sunday Wednesday (b).