http://scottsievert.github.io/blog/2015/01/31/the-mysterious-eigenvalue/
The Fibonacci problem is a well known mathematical problem that models population growth and was conceived in the 1200s. Leonardo of Pisa aka Fibonacci decided to use a recursive equation: with the seed values . Implementing this recursive function is straightforward:1
Since the Fibonacci sequence was conceived to model population growth, it would seem that there should be a simple equation that grows almost exponentially. Plus, this recursive calling is expensive both in time and memory.2. The cost of this function doesn’t seem worthwhile. To see the surprising formula that we end up with, we need to define our Fibonacci problem in a matrix language.3
Calling each of those matrices and vectors variables and recognizing the fact that follows the same formula as allows us to write
where we have used to mean matrix multiplications. The corresponding implementation looks something like this:
While this isn’t recursive, there’s still an unnecessary matrix multiplications. These are expensive time-wise and it seems like there should be a simple formula involving . As populations grow exponentially, we would expect this formula to involve scalars raised to the th power. A simple equation like this could be implemented many times faster than the recursive implementation!
The trick to do this rests on the mysterious and intimidating eigenvalues and eigenvectors. These are just a nice way to view the same data but they have a lot of mystery behind them. Most simply, for a matrix they obey the equation
for different eigenvalues and eigenvectors . Through the way matrix multiplication is defined, we can represent all of these cases. This rests on the fact that the left multiplied diagonal matrix just scales each . The column-wise definition of matrix multiplication makes it clear that this is represents every case where the equation above occurs.
Or compacting the vectors into a matrix called and the diagonal matrix of ’s into , we find that
Because the Fibonacci eigenvector matrix is invertible,4
And then because a matrix and it’s inverse cancel
is a simple computation because is a diagonal matrix: every element is just raised to the th power. That means the expensive matrix multiplication only happens twice now. This is a powerful speed boost and we can calculate the result by substituting for
For this Fibonacci matrix, we find that . We could define our Fibonacci function to carry out this matrix multiplication, but these matrices are simple: is diagonal and . So, carrying out this fairly simple computation gives
We would not expect this equation to give an integer. It involves the power of two irrational numbers, a division by another irrational number and even the golden ratio phi ! However, it gives exactly the Fibonacci numbers – you can check yourself!
This means we can define our function rather simply:
As one would expect, this implementation is fast. We see speedups of roughly , milliseconds vs microseconds. This is almost typical when mathematics are applied to a seemingly straightforward problem. There are often large benefits by making the implementation slightly more cryptic!
I’ve found that mathematics5 becomes fascinating, especially in higher level college courses, and can often yield surprising results. I mean, look at this blog post. We went from a expensive recursive equation to a simple and fast equation that only involves scalars. This derivation is one I enjoy and I especially enjoy the simplicity of the final result. This is part of the reason why I’m going to grad school for highly mathematical signal processing. Real world benefits neat theory <3.
-
Yes, in some languages some compilers are smart enough to get rid of recursion for some functions.↩
-
I’m assuming you have taken a course that deals with matrices.↩
-
This happens when a matrix is diagonalizable.↩
-
Not math. Courses beyond calculus deserve a different name.↩