Question
Find the next term in the sequence: 1, 1, 2, 3, 5, 8, …
Also explain the pattern that governs this sequence.
Solution — Step by Step
List the terms with their positions:
Check if each term is the sum of the two before it:
- ✓
- ✓
- ✓
- ✓
The rule is clear: each term equals the sum of the two immediately preceding terms. This is the defining rule of the Fibonacci sequence, named after the Italian mathematician Leonardo of Pisa (Fibonacci), who introduced it to Europe in 1202.
The recurrence relation is: for , with and .
The next term is :
The sequence continues: 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, …
Why This Works
The Fibonacci recurrence is one of the simplest second-order recurrence relations. The reason this specific pattern is so famous is that it shows up naturally in biological growth — the spiral arrangement of seeds in a sunflower, the branching of trees, the spiral of a nautilus shell, and the arrangement of leaves on a stem all follow Fibonacci numbers.
In mathematics, the ratio of consecutive Fibonacci numbers approaches the Golden Ratio as increases. For example, and — both close to .
Alternative Method
We can verify using the closed-form formula (Binet’s formula), though this is beyond school level:
For school exams, simply applying the recurrence is sufficient and expected.
For pattern recognition questions in competitive exams, always check three operations: (1) constant difference (arithmetic), (2) constant ratio (geometric), and (3) each term = sum/product of previous terms. If none work, look for alternating patterns or squares. The Fibonacci rule — each term = sum of two preceding — is specifically tested in olympiad papers and aptitude tests.
Common Mistake
Some students see the pattern 1, 1, 2, 3, 5, 8 and think it’s arithmetic or geometric because the early terms look deceivingly simple. Check: , , , — the differences are themselves 1, 1, 2, 3… which is the Fibonacci pattern again! So this is NOT arithmetic (constant differences) and NOT geometric (constant ratio). It’s a recurrence — each term depends on the two before it.