Fibonacci Sequence
Problem
Given the Fibonacci sequence 1, 1, 2, 3, 5, 8, 13, ... defined by the second order recurrence relation, Fn+2 = Fn + Fn+1. Prove that the nth term, Fn, is given by:
Solution
We shall prove this by induction, starting by showing that F1 = F2 = 1.
Now we shall consider Fn + Fn+1.
Fn + Fn+1 | = | |
| = | |
| = | Fn+2 |
Which is consistent with the result expected; that is, Fn+2 = Fn + Fn+1. As it works for F1 and F2 it must work for all n.
Problem ID: 135 (Nov 2003) Difficulty: 4 Star
Only Show Problem