All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Just Math
Fibonacci Determinant (Posted on 2016-04-19) Difficulty: 3 of 5
A size n determinant has all 1s on the main diagonal and the first superdiagonal. It has all -1s on the first subdiagonal. It has zeros in all other places.

Show that this determinant evaluates to Fibonacci number F(n+1).

The determinant corresponding to n=5 is depicted below:
 | 1  1  0  0  0 |
 |-1  1  1  0  0 |
 | 0 -1  1  1  0 | = 8 = F(6)
 | 0  0 -1  1  1 |
 | 0  0  0 -1  1 |

  Submitted by Brian Smith    
No Rating
Solution: (Hide)
Let D[x] denote the determinate of size x.

The determinant for n=1 is trivial:
| 1 | = 1 = F(2).
The determinant for n=2:
| 1  1 | = 2 = F(3)
|-1  1 |
To evaluate higher orders, use cofactor expansion along the bottom row. Only the last two terms need to be evaluated as they are the only nonzero entries in the bottom row.

The minor for the last entry is D[x-1], so its cofactor is (-1)^(2n)*|D[n-1]| = |D[n-1]|

The minor for the other entry has its rightmost column of n-2 0s and one 1. Then cofactor expansion along that column yields a subminor of D[n-2].

Then the second cofactor is (-1)^(2n-1)*(1*(-1)^(2n-2))*|D[n-2]| = -|D[n-2]|

Then |D[n]| = 1*|D[n-1]| + (-1)*(-|D[n-2]|) = |D[n-1]| + |D[n-2]|. This is the same formula as the Finonacci sequence; since the first two terms are the second and third Fibonacci numbers then the sequence of determinants is the Fibonacci numbers shifted by 1 term. Hence |D[n]| = F(n+1).

Comments: ( You must be logged in to post comments.)
  Subject Author Date
Visual solutionarmando2016-04-19 11:23:17
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (0)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (12)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2024 by Animus Pactum Consulting. All rights reserved. Privacy Information