๐ Patterns & Sequences
Spot repeating cycles and predict what comes next
๐ What are patterns?
A pattern is anything that repeats in a predictable way. Once you spot the pattern, you can predict what comes next โ even hundreds of steps ahead.
๐ก Rotation patterns
When something rotates, it eventually comes back to where it started. A paper divided into 6 parts rotated by 1 part each time returns to its original position after 6 rotations.
So after 8 rotations: 8 รท 6 = 1 remainder 2. That means 8 rotations = same as 2 rotations.
โฝ Circular passing
11 players in a circle, passing to the 3rd person on the left. Starting from player 1:
1 โ 4 โ 7 โ 10 โ 2 โ 5 โ 8 โ 11 โ 3 โ 6 โ 9 โ 1 (back to start!)
Everyone gets the ball exactly once before it returns. The key insight: since 3 and 11 share no common factors, the ball visits all 11 players.
๐ Repeating digit patterns
Writing "2025" over and over: 2,0,2,5,2,0,2,5,2,0,2,5...
The pattern repeats every 4 digits. To find the 100th digit: 100 รท 4 = 25 remainder 0, so it's the last digit in the cycle = 5.