Binet’s Formula
I’ve been working through proving some identities for the Fibonacci numbers, all of which have so far been provable using induction:
for 
for 
for 
- for
, the successive Fibonacci numbers
and
are co-prime.
for 
- if
, then 

However, I’m stuck on proving Binet’s formula,
,I’m pretty sure this isn’t easily provable by induction, but it probably can be proven more easily than from scratch by using the identities above. I’ve seen it done before, e.g. in TAOCP, but I don’t remember how it was done. Besides, that would be cheating.
January 22nd, 2005 at 11:46 pm
Try solving the recurrence realtionship, i.e x^n = a*x^(n-1) + b*x^(n-2) for x, where a and b are constants. Then find a and b by using the fact that f_0 = 0 and f_1 = 1.
January 23rd, 2005 at 5:22 pm
Thanks for the tip. Actually, today I realized something similar about the generalized Fibonacci series:
. If
is a root of the equation
,
satisfies the recursion relation given. So does the sum of the roots, so I’m thinking that’s where the Binet formula comes from.
February 2nd, 2005 at 10:56 pm
Hi, actually Binet’s formula yields very easily to induction, the key being x^2-x-1=0. See Knuth et al’s Concrete Mathematics, very insightful.
June 18th, 2005 at 5:42 pm
Hi, try to proof Binet’s formula by going the way, the formula originally comes from. See my website for the proof; a comment would be kind.