Proof By Induction Fibonacci Numbers

104 Views Asked by At

How do I prove that

$$ f_{ 2n+1 } = 3f_{ 2n } + 1 - f_{ 2n-3 } $$

I'm not sure how to prove it using the defining recurrence of Fibonacci numbers.

2

There are 2 best solutions below

1
On

Let's do this the most basic way:

$f_{2n+1} = 3f_{2n} + 1 - f_{2n-3}$

$f_{2n} + f_{2n-1} = 3f_{2n} + 1 - f_{2n-3}$

$f_{2n-1} = 2f_{2n} + 1 - f_{2n-3}$

$f_{2n-1} + f_{2n-3} = 2f_{2n} + 1$

$f_{2n-1} + f_{2n-3} = f_{2n} + f_{2n-1} + f_{2n-2} + 1$

$f_{2n-3} = f_{2n} + f_{2n-2} + 1$

$f_{2n-3} = f_{2n} + f_{2n-3} + f_{2n-4} + 1$

$0 = f_{2n} + f_{2n-4} + 1$

Right side is strictly positive, which shows that the first equation didn't hold at first.

1
On

As pointed out in Golob's answer, your equation is not in fact true. However we have $$\eqalign{f_{2n+1} &=f_{2n}+f_{2n-1}\cr &=(f_{2n-1}+f_{2n-2})+f_{2n-1}\cr &=2f_{2n-1}+(f_{2n-1}-f_{2n-3})\cr}$$ and therefore $$f_{2n+1}=3f_{2n-1}-f_{2n-3}\ .$$ Is there any possibility that this is what you meant?