Patterns & Reasoning

Problem

Use the seven-day weekday cycle

On a June calendar the first Tuesday is the 1st. Using the rule that the same weekday repeats every 7 days, find the dates of all the Tuesdays in the month.
Sun Mon Tue Wed Thu Fri Sat 12345 6789101112 13141516171819 20212223242526 27282930
Operations
Your answer
How to solve
Strategy Look for a Pattern — Weekdays repeat on a 7-day cycle, so I add 7 repeatedly starting from the first Tuesday and list each date until I pass the end of the month.
1STEP 1

Add 7 from the first Tuesday

Add 7 starting at the 1st: 8, 15, 22, 29. Next is 29+7=36, past June 30, so stop.

1, 1+7=8, 8+7=15, 15+7=22, 22+7=29
2STEP 2

List the Tuesdays within June

Keep only dates 30 or less: the Tuesdays are 1, 8, 15, 22, 29 — 36 is dropped.

{1, 8, 15, 22, 29}
Answer
June 1, 8, 15, 22, and 29
Consecutive Tuesdays differ by exactly 7 (8-1, 15-8, 22-15, 29-22), and the last one, 29, is within 30, while the next, 36, is not. So June 1, 8, 15, 22, and 29 is correct for this month.
Takeaway

Tuesdays repeat every 7 days, so just keep adding 7: 1, 8, 15, 22, 29!

  • Add 7 from the first Tuesday
  • List the Tuesdays within June
Where next?
Another one like thissuggested
Same look, different logicsuggested

▶ Practice — 10 problems