If today is Sunday, then which day is it exactly on 1010 th day?
AWednesdayAnswer
BThursday
CFriday
DSaturday
Worked rationale
Number the days with today (Sunday) as the 1st day. Then the 1010th day is 1010−1 days
after today, so the weekday is Sunday shifted by (1010−1)mod7.
Compute 1010mod7. Since 10≡3(mod7), use the cycle of 3:
31≡3,32≡2,33≡6,34≡4,35≡5,36≡1(mod7).
The order is 6; 10≡4(mod6), so 1010≡310≡34≡4(mod7).
Thus (1010−1)≡4−1=3(mod7). Sunday +3 days = Wednesday.
Sun+1Mon+2Tue+3Wed.
Answer: (a) Wednesday.
Why the other options miss
B
a convention slip: counts 1010 days after today (offset 1010≡4,
giving Sun+4= Thursday) instead of treating the 1010th day as position 1010 (offset
1010−1).
C
an arithmetic slip: reduces the exponent wrongly (e.g. 10mod6=5), landing on
35≡5, Sun+(5−1)= Friday-ish.
D
misapplies the cycle-length rule: uses the wrong repeating cycle for powers of 10 mod 7
(mistaking the order 6 for 7, or reducing the exponent against the wrong modulus), drifting the offset by a day.
Specialist insight
Two disciplines: (1) reduce the power mod 7 via the order of 10, which is 6 — so reduce the
exponent 10 mod 6 to get 1010≡34≡4; (2) read the phrase precisely — the “1010th
day” is the day at position1010 counting today as the 1st, an offset of 1010−1≡3. The
Thursday distractor is the ”N days later” reading; the scoring move is matching the offset convention to
the wording, landing on Wednesday.
The trap, in one line
ord7(10)=6, 1010≡34≡4; the 1010th day is offset 4−1=3 from Sunday ⇒ Wednesday (a).