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:
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.)