Fibonacci: Are you squared yet?

Consider the Fibonacci sequence ( F n ) = ( 1 , 1 , 2 , 3 , 5 , 8 , 13 , ) (F_n) = (1,1,2,3,5,8,13,\ldots) defined recursively by F 0 = 0 ; F 1 = F 2 = 1 ; F n = F n 1 + F n 2 for n 3. F_0 = 0; \ \ F_1 = F_2 = 1;\ \ F_n = F_{n-1} + F_{n-2}\ \text{for}\ n \geq 3. Define a new sequence ( G n ) (G_n) by G n = F n 2 + F n + 1 2 for n 0. G_n = F_n^2 + F_{n+1}^2\ \text{for}\ n \geq 0. Remarkably, G 2017 G_{2017} is a Fibonacci number. If G 2017 = F k , G_{2017} = F_k, what is k k ?


The answer is 4035.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

Arjen Vreugdenhil
Jan 26, 2017

If you generate the first few values of G n G_n , you'll quickly recognize that all of them are Fibonacci numbers; in fact, G n = F 2 n + 1 . G_n = F_{2n+1}. Thus, with n = 2017 n = 2017 , we get k = 2 2017 + 1 = 4035 k = 2\cdot 2017 + 1 = \boxed{4035} as the answer.

For a more rigorous answer, one must prove the equation G n = F 2 n + 1 G_n = F_{2n+1} . Anyone?

The easiest way is probably to prove, by induction, that { F 2 n = F n + 1 2 F n 1 2 F 2 n + 1 = F n 2 + F n + 1 2 \begin{cases} F_{2n} = F_{n+1}^2 - F_{n-1}^2 \\ F_{2n+1} = F_n^2 + F_{n+1}^2 \end{cases}

Arjen Vreugdenhil - 4 years, 4 months ago

Log in to reply

Great! These are "well known" identities of the Fibonacci numbers.

I would prefer to standardize the Fibonacci sequence to F 0 = 0 , F 1 = 1 , F_0 = 0 , F_1 = 1, \ldots , so that the indexing of formulas remains constant.

Calvin Lin Staff - 4 years, 4 months ago

Log in to reply

I will do that.

Arjen Vreugdenhil - 4 years, 4 months ago
Chew-Seong Cheong
Jan 27, 2017

Defining F 0 = 0 F_0 = 0 , the matrix representation of Fibonacci numbers F n F_n is as follows:

( F n + 1 F n F n F n 1 ) = ( 1 1 1 0 ) n ( F n + 1 F n F n F n 1 ) 2 = ( 1 1 1 0 ) 2 n = ( F 2 n + 1 F 2 n F 2 n F 2 n 1 ) \begin{aligned} \begin{pmatrix} F_{n+1} & F_n \\ F_n & F_{n-1} \end{pmatrix} = \begin{pmatrix} 1 & 1 \\ 1 & 0 \end{pmatrix}^n \\ \implies \begin{pmatrix} F_{n+1} & {\color{#3D99F6}F_n} \\ {\color{#3D99F6}F_n} & {\color{#3D99F6}F_{n-1}} \end{pmatrix}^2 = \begin{pmatrix} 1 & 1 \\ 1 & 0 \end{pmatrix}^{2n} = \begin{pmatrix} F_{2n+1} & F_{2n} \\ F_{2n} & {\color{#3D99F6}F_{2n-1}} \end{pmatrix} \end{aligned}

F n 2 + F n 1 2 = F 2 n 1 F n + 1 n + F n 2 = F 2 n + 1 G n = F 2 n + 1 \begin{aligned} \implies F_n^2 + F_{n-1}^2 & = F_{2n-1} \\ F_{n+1}^n + F_n^2 & = F_{2n+1} \\ \implies G_n & = F_{2n+1} \end{aligned}

Therefore, G 2017 = F 4035 k = 4035 G_{2017} = F_{4035} \implies k = \boxed{4035} .

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...