everyone.
I have been assigned an induction problem which requires me to use induction with the Fibonacci sequence. The summation states:
n−2∑i=1Fi=Fn−2, with F0=F1=1.
I have tried going through the second one to see if it was right, but I came with a weird thing. F2 should be 2, but according to this statement, it equals zero.
What am I doing wrong? It got my attention.
Thank you for your time.
Answer
(First an aside: the Fibonacci sequence is usually indexed so that F0=0 and F1=1, and your F0 and F1 are therefore usually F1 and F2.)
The recurrence might be more easily understood if you substituted m=n−2, so that n=m+2, and wrote it
m∑i=1Fi=Fm+2−2.
Now see what happens if you substitute m=1: you get F1=F1+2−2, which is correct: F1=1=3−2=F3−2. You can try other positive values of m, and you’ll get equally good results. Now recall that m=n−2: when I set m=1,2,3,…, I’m in effect setting n=3,4,5,… in the original formula. That’s why one commenter suggested that you might want to start n at 3.
What if you try m=0? Then (1) becomes 0∑i=1Fi=F2−2=2−2=0, but as Cameron and others have pointed out, this is exactly what should happen: ∑bi=axi can be understood as the sum of all xi such that a≤i≤b, so here we have the sum of all Fi such that 1≤i≤0. There are no such Fi, so the sum is by convention 0.
The induction argument itself is pretty straightforward, but by all means leave a comment if you’d like me to say something about it.
No comments:
Post a Comment