๐Ÿ”„ 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.

Find the cycle, then count within it.

๐ŸŽก 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.

Rotations:
8
8 รท 6 = 1 remainder 2
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.

The last person to kick before the ball returns to player 1 is player 9.

๐Ÿ“ 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.

๐Ÿง  Practice Quiz

Score: 0 / ?