AMC 10 · 2016 · #5

Grade 4 arithmetic
modular-arithmeticperiodic-functionpattern-recognition pattern-recognitionmodular-arithmetic ↑ Prerequisites: modular-arithmetic
📏 Medium solution 💡 2 insights
Problem
A known weekday is followed by a large whole number of days. Find the later weekday.

Pick an answer.

(A)
Friday
(B)
Saturday
(C)
Sunday
(D)
Monday
(E)
Tuesday
How to solve
Strategy Look for a Pattern

The problem looks like a calendar problem, with two and a half years, three different Decembers and a leap year to worry about. It is not. The names of the weekdays repeat in a cycle of length 7, and the problem already hands over the total number of days elapsed, 919. So the pattern (Tool #5) is the whole engine: after any multiple of 7 days you are back on the same weekday name. That turns the messy calendar question into a far easier one (Tool #9): what is left over when 919 is split into whole weeks? The one piece of real computation, dividing 919 by 7 and keeping the remainder, is the subproblem to isolate (Tool #7). Everything else is counting two steps forward from Thursday.

1STEP 1

Keep only the day count

Only the day count matters.

Thursday + 919 days = ?
2STEP 2

Weekdays repeat every 7 days

Weekdays repeat every seven days.

Thursday + 7k days = Thursday for every whole number k
3STEP 3

Divide 919 by 7

Dividing leaves a remainder of 2.

919 = 7 × 131 + 2, 0 ≤ 2 < 7
4STEP 4

Discard the 131 whole weeks

The whole weeks change nothing.

Thursday + 917 days = Thursday
5STEP 5

Step 2 days forward from Thursday

Stepping forward gives Saturday, choice (B).

Thursday → Friday → Saturday = (B)
Answer
Saturday
The remainder 2 must satisfy 0 ≤ 2 < 7, and it does, so the answer is exactly two names forward from Thursday and lands inside the list of choices. The direction is also right: 919 days later means forward, giving Saturday, whereas counting backward would have given Tuesday, which is choice (E) and is the trap. The problem's own numbers are consistent too. Counting the calendar directly, June 18, 1812 to June 18, 1814 is 365 + 365 = 730 days, because February 29, 1812 falls before June 18 and neither 1813 nor 1814 is a leap year. Then June 18 to December 18, 1814 is 30 + 31 + 31 + 30 + 31 + 30 = 183 days, and December 18 to December 24 is 6 more. Total: 730 + 183 + 6 = 919, matching the given figure exactly.
💡Key takeaway

Weekdays run in a loop of 7, so divide the number of days by 7 and only the remainder moves you.

  • Keep only the day count
  • Weekdays repeat every 7 days
  • Divide 919 by 7
  • Discard the 131 whole weeks
  • Step 2 days forward from Thursday