Question:
Fibonacci Sequence - the matrix approach
The Fibonacci sequence is defined recursively as ƒn+1 = ƒn+fn-1,n>3 with ƒ1 = 1 and ƒ = 2 .
Obtain a closed form formulas for fn using the iteration matrix (0,1) applied to the vector [ƒn-1,ƒn]T.
(1,1)
Hint: Consider a similarity transform to diagonalize the iteration matrix.