Fibonacci Numbers — Definition, Formula & Examples
Fibonacci numbers form a sequence where each number equals the sum of the two numbers before it, starting with 1, 1. The sequence begins 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, and continues forever.
The Fibonacci sequence is defined recursively by , , and for all integers . Some authors use and as the starting values, which shifts the indexing but produces the same sequence of values.
Key Formula
Where:
- = The nth Fibonacci number
- = The Fibonacci number just before F_n
- = The Fibonacci number two positions before F_n
How It Works
To build the Fibonacci sequence, start with 1 and 1, then keep adding the last two numbers to get the next one. For example, , then , then , and so on. This "add the previous two" rule is called a recursive rule because each term depends on earlier terms. Fibonacci numbers appear in surprising places — the number of petals on many flowers, the spiral pattern of seeds in a sunflower, and the branching of trees often follow Fibonacci patterns.
Worked Example
Problem: Find the 10th Fibonacci number.
Start: Write the first two Fibonacci numbers.
Build up: Apply the rule repeatedly: add the two most recent terms to get the next.
Continue: Keep going through positions 6 to 10.
Answer: The 10th Fibonacci number is 55.
Another Example
Problem: Two consecutive Fibonacci numbers are 21 and 34. What is the next Fibonacci number after them?
Identify: The two most recent terms are 21 and 34.
Apply the rule: Add the two terms together.
Answer: The next Fibonacci number is 55.
Visualization
Why It Matters
Fibonacci numbers appear in pre-algebra and algebra courses whenever students study patterns and recursive sequences. Computer science students use Fibonacci numbers to learn about recursion, algorithm efficiency, and dynamic programming. In nature, biologists observe Fibonacci counts in flower petals, pinecone spirals, and shell growth, making this sequence one of the most widely recognized bridges between mathematics and the real world.
Common Mistakes
Mistake: Starting the sequence with 1, 2 instead of 1, 1.
Correction: The standard Fibonacci sequence begins 1, 1 (or 0, 1). The number 2 is the third term, not the second.
Mistake: Confusing the Fibonacci rule with doubling or multiplying consecutive terms.
Correction: Each Fibonacci number is the sum (not the product) of the two before it. For example, , not .
