Difficulty: Easy
Correct Answer: Friday
Explanation:
Introduction / Context:
Day-of-week problems require translating verbal offsets into movements on a 7-day cycle. Here, we are told “day before yesterday was Friday,” and we are asked for the day that is “the third day after the day after tomorrow.” We will anchor “today” as an unknown T, convert each phrase into an offset from T, and then evaluate.
Given Data / Assumptions:
Concept / Approach:
First find T by moving forward two days from Friday; then compute T + 5 and reduce modulo 7 if needed. Working symbolically clarifies the offsets and avoids counting mistakes.
Step-by-Step Solution:
Verification / Alternative check:
Directly compute T + 5 = Sunday + 5 = Friday. Also, mod 7: +5 ≡ −2; since T is Sunday, Sunday − 2 = Friday—consistent.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing “day before yesterday” with “yesterday before yesterday,” or miscounting the “third day after.” Always express phrases as precise offsets (e.g., T − 2, T + 5) before evaluating.
Final Answer:
Friday
Discussion & Comments