CSAT Solved Papers/ 2024/Q38
2024 CSAT — Q38
The calendar for the year is same for
Worked rationale
A year’s calendar repeats when (i) the total odd days elapsed since it is a multiple of (same weekday start) and (ii) the new year has the same leap status. is an ordinary year (, not divisible by ).
A common year contributes odd day, a leap year . Accumulate odd days from onward (each year’s contribution moves the next year’s start):
| year | odd days | cumulative |
|---|---|---|
| 2025 | 1 | 1 |
| 2026 | 1 | 2 |
| 2027 | 1 | 3 |
| 2028 (leap) | 2 | 5 |
| 2029 | 1 | 6 |
| 2030 | 1 | 7 ≡ 0 |
The cumulative reaches a multiple of at the end of , so the calendar repeats in . And is an ordinary year (matching ‘s leap status). Both conditions met.
Answer: (c) 2031.
Why the other options miss
- A counted one too few: stops after years (cumulative ), guessing the usual ” years” shortcut without accounting for the leap year’s extra odd day.
- B a convention slip: counts the start year or shifts the boundary by one, landing on the year before the true repeat.
- D an arithmetic slip: over-accumulates past (e.g. miscounts ‘s leap day), overshooting the cycle.
Specialist insight
Calendar-repeat problems are pure odd-day accounting mod , and the leap year in the run is the trap: adds odd days, breaking the naive “calendars repeat every or years” reflex. Tabulate cumulative odd days year by year and stop at the first multiple of — here end of , giving repeat year , which is conveniently also non-leap (so no further adjustment). Mishandling the leap-year contribution is the single biggest source of error.
Accumulate odd days mod with the leap year counting as ; the cumulative hits at end of , so 's calendar repeats in .