#Fibonacci sequence

23 messages · Page 1 of 1 (latest)

small sonnet
#

Heres the paper but i am stuck on question 3B

astral flowerBOT
quasi wharf
#

first, lets find out what F(n+2) , F(n+1) , F(n) are:

#

$F(n+2) = \frac{\alpha^{n+2} - \beta^{n+2}}{\sqrt{5}}\$
$F(n+1) = \frac{\alpha^{n+1} - \beta^{n+1}}{\sqrt{5}}\$
$F(n) = \frac{\alpha^{n+2} - \beta^{n}}{\sqrt{5}}$

peak kiteBOT
quasi wharf
#

now we are going to find the sum of F(n+1) + F(n):

#

$F(n+1) + F(n) = \frac{\alpha^{n+1} + \alpha^{n} - \beta^{n+1} - \beta^{n}}{\sqrt{5}}$

peak kiteBOT
quasi wharf
#

here, we can use exponent rules to simplify the numerator:

#

$= \frac{\alpha^{n} \cdot \alpha + \alpha^{n} \cdot 1 - \beta^{n} \cdot \beta - \beta^{n} \cdot 1}{\sqrt{5}}\ = \frac{\alpha^{n} \cdot (\alpha + 1) - \beta^{n} \cdot (\beta + 1)}{\sqrt{5}}$

peak kiteBOT
quasi wharf
#

as you have already proven in question 1 , you can do this:

#

$x^{2} = x + 1 \quad \to \quad \alpha^{2} = \alpha +1 \quad , \quad \beta^{2} = \beta+1$

peak kiteBOT
quasi wharf
#

and now the last step is to plug in your values:

#

$F(n+1) + F(n) = \frac{\alpha^{n} \cdot (\alpha^{2}) - \beta^{n} \cdot (\beta^{2})}{\sqrt{5}}\
= \frac{\alpha^{n+2} - \beta^{n+2}}{\sqrt{5}} = F(n+2)$

peak kiteBOT
quasi wharf
#

$F(n+2) = \frac{\alpha^{n+2} - \beta^{n+2}}{\sqrt{5}}\$
$F(n+1) = \frac{\alpha^{n+1} - \beta^{n+1}}{\sqrt{5}}\$
$F(n) = \frac{\alpha^{n} - \beta^{n}}{\sqrt{5}}\$
$F(n+1) + F(n) = \frac{\alpha^{n+1} + \alpha^{n} - \beta^{n+1} - \beta^{n}}{\sqrt{5}}\$
$= \frac{\alpha^{n} \cdot \alpha + \alpha^{n} \cdot 1 - \beta^{n} \cdot \beta - \beta^{n} \cdot 1}{\sqrt{5}}\$
$= \frac{\alpha^{n} \cdot (\alpha + 1) - \beta^{n} \cdot (\beta + 1)}{\sqrt{5}}\$
$x^{2} = x + 1 \quad \to \quad \alpha^{2} = \alpha +1 \quad , \quad \beta^{2} = \beta+1\$
$F(n+1) + F(n) = \frac{\alpha^{n} \cdot (\alpha^{2}) - \beta^{n} \cdot (\beta^{2})}{\sqrt{5}}\$
$= \frac{\alpha^{n+2} - \beta^{n+2}}{\sqrt{5}} = F(n+2)$

peak kiteBOT
quasi wharf
#

this is the full length of the calculation without my notes

quasi wharf
# peak kite **Valle**

I accidentally miss spelt F(n) here. The alpha is ofc only to the power of n, not n+2. my bad

small sonnet
#

That’s beyond incredible

#

Thank you so much Valle!!!