Problem
Add 7 repeatedly from the 1st
Starting at the 1st, a Tuesday, keep adding 7 to reach each next Tuesday.
Tuesday comes back every 7 days because weekday names run in a fixed loop of 7 that returns to its start after 7 steps. Seven single days joined together raise the date by exactly 7.
Look For A Pattern2.NBT.A.2Adding 7 again and again, starting from the first Tuesday on the 1st, lands on the date of each following Tuesday.
Why?
Each following Tuesday sits a full 7 days after the Tuesday before it, so its date is 7 larger.
Why?
Tuesday comes back every 7 days because the weekday names run in a fixed loop of 7 that returns to where it started after 7 steps.
Why?
A gap of 7 single days raises the date by 7, since each day forward adds 1 and the seven days join with no gaps into one step of 7.
Why?
Reaching every later Tuesday means taking that same 7-day step over and over, which is just adding the same 7 repeatedly.
Check whether it passes 30
The next value, 36, passes June's 30 days, so it's dropped from the list.
List every Tuesday in June
Keeping only values of 30 or less gives Tuesdays 1, 8, 15, 22, and 29.
Reaching every later Tuesday means taking that same 7-day step over and over, which is just adding the same 7 repeatedly.
Make A Systematic List2.OA.B.2Finding PatternsWeekdays repeat every 7 days. Adding 7 from the 1st and keeping only values within 30 days finds every Tuesday this month.
- Add 7 repeatedly from the 1st
- Stop once it passes 30 days
- Tuesdays are 1, 8, 15, 22, and 29