I Matrix representation for closed-form expression for Fibonacci numbers

murshid_islam
Messages
468
Reaction score
21
TL;DR
Matrix representation for closed-form expression for Fibonacci numbers:
From the wikipedia page for Fibonacci numbers, I got that the matrix representation for closed-form expression for Fibonacci numbers is:

\begin{pmatrix}<br /> 1 &amp; 1 \\<br /> 1 &amp; 0\\<br /> \end{pmatrix} ^ n =<br /> \begin{pmatrix}<br /> F_{n+1} &amp; F_n \\<br /> F_n &amp; F_{n-1}\\<br /> \end{pmatrix}

That only works when F_0 = 0 and F_1 = 1. How can I find the matrix representation for arbitrary starting values, for example, when F_0 = a and F_1 = b?
 
Physics news on Phys.org
murshid_islam said:
Summary:: Matrix representation for closed-form expression for Fibonacci numbers:

From the wikipedia page for Fibonacci numbers, I got that the matrix representation for closed-form expression for Fibonacci numbers is:

\begin{pmatrix}<br /> 1 &amp; 1 \\<br /> 1 &amp; 0\\<br /> \end{pmatrix} ^ n =<br /> \begin{pmatrix}<br /> F_{n+1} &amp; F_n \\<br /> F_n &amp; F_{n-1}\\<br /> \end{pmatrix}

That only works when F_0 = 0 and F_1 = 1. How can I find the matrix representation for arbitrary starting values, for example, when F_0 = a and F_1 = b?
Start with
\begin{pmatrix}<br /> a+b &amp; b \\<br /> b &amp; a\\<br /> \end{pmatrix} =<br /> <br /> \begin{pmatrix}<br /> F_2 &amp; F_1 \\<br /> F_1 &amp; F_0\\<br /> \end{pmatrix}<br />

Then multiply repeatedly on the left by
\begin{pmatrix}<br /> 1 &amp; 1 \\<br /> 1 &amp; 0\\<br /> \end{pmatrix} <br />
 
  • Like
Likes PeroK and murshid_islam
Though same as post #2,
2022-05-10 14.01.44.jpg
 
  • Like
Likes martinbn and murshid_islam
The world of 2\times 2 complex matrices is very colorful. They form a Banach-algebra, they act on spinors, they contain the quaternions, SU(2), su(2), SL(2,\mathbb C), sl(2,\mathbb C). Furthermore, with the determinant as Euclidean or pseudo-Euclidean norm, isu(2) is a 3-dimensional Euclidean space, \mathbb RI\oplus isu(2) is a Minkowski space with signature (1,3), i\mathbb RI\oplus su(2) is a Minkowski space with signature (3,1), SU(2) is the double cover of SO(3), sl(2,\mathbb C) is the...

Similar threads