Repeating Patterns
A repeating pattern is a sequence where a group of elements cycles continuously in the same order. The key insight is identifying the repeating unit: the smallest group that, when repeated, generates the entire pattern. For example, in the sequence A, B, C, A, B, C, A, B, C, the repeating unit is A, B, C with a cycle length of 3.
Why it matters
Repeating patterns appear throughout mathematics and daily life, from the 7-day weekly cycle to the 12-hour clock face. In nature, patterns repeat in flower petals, tree rings, and seasonal cycles. Mathematically, repeating patterns form the foundation for understanding periodic functions, modular arithmetic, and sequences in Key Stage 3 algebra. Students encounter these concepts in Year 2 when working with simple AB patterns, progressing to more complex cycles by Year 6. The modular arithmetic used to find the nth term in a repeating pattern directly connects to GCSE topics like remainder division and cyclical phenomena. Understanding these patterns develops logical reasoning skills essential for computer programming, where loops and cycles are fundamental concepts. Pattern recognition also supports statistical analysis, where periodic data appears in weather patterns, economic cycles, and population studies.
How to solve repeating patterns
Repeating Patterns
- Identify the repeating unit — the part that keeps coming back.
- Mark the start and end of one full cycle.
- Count the length of the cycle to find items at a given position.
- Use position divided by cycle length: the remainder tells you where in the cycle you are.
Example: A B C A B C ... The cycle is A B C (length 3). Position 10: 10 ÷ 3 = 3 remainder 1, so position 10 is A.
Worked examples
What comes next? Circle, Square, Circle, Square, Circle, ?
Answer: Square
- Identify the repeating unit → Circle, Square — The pattern alternates between Circle and Square.
- Determine what comes next → Square — After Circle, the next element is Square.
What comes next? Red, Green, Blue, Red, Green, Blue, Red, ?
Answer: Green
- Identify the repeating unit → Red, Green, Blue — The pattern repeats every 3 elements: Red, Green, Blue.
- Find the next element → Green — Position 8 in the pattern: (8) mod 3 tells us the next is Green.
What comes next? 3, 7, 2, 3, 7, 2, 3, 7, 2, 3, ?
Answer: 7
- Look for a repeating group of numbers → 3, 7, 2 — The repeating unit is: 3, 7, 2. It repeats throughout the sequence.
- Determine the next number → 7 — After the partial unit [3], the next number in the unit is 7.
Common mistakes
- Confusing the starting position when counting cycles, leading to answers like position 7 being C instead of A in the pattern A, B, C when 7 ÷ 3 = 2 remainder 1.
- Identifying an incomplete repeating unit, such as seeing A, B, A, B, C, A, B, C and thinking the unit is A, B instead of A, B, C.
- Forgetting that remainder 0 corresponds to the last element of the cycle, so position 6 in A, B, C gives 6 ÷ 3 = 2 remainder 0, which is C, not A.
- Mixing up position numbers with element values in numeric patterns, such as confusing the 5th position with the number 5 in the sequence 2, 7, 4, 2, 7, 4.