We know the Fibonacci sequence is { F n } = 0 , 1 , 1 , 2 , 3 , 5 , 8 , 1 3 , 2 1 , 3 4 , 5 5 ⋯ and that F n = F n − 1 + F n − 2 .
What is F 1 + F 2 + F 3 + ⋯ + F n ?
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.
Mathematical induction! What a great solution!
You can see my another problem: What is the sum of all the values of x?
Let S = F 1 + F 2 + F 3 + ⋯ + F n . So 2 S = ( F 1 + F 1 ) + ( F 2 + F 2 ) + ( F 3 + ⋯ F n − 2 ) + ( F n − 1 + F n − 1 ) + ( F n + F n ) = F 1 + ( F 1 + F 2 ) + ( F 2 + F 3 ) + ⋯ ( F n − 2 + F n − 1 ) + ( F n − 1 + F n ) + F n . And we also know: F n = F n − 1 + F n − 2 . So 2 S = F 1 + F 3 + F 4 + ⋯ + F n + 1 + F n = S − F 2 + ( F n + 1 + F n ) 2 S = S − 1 + F n + 2 S = F n + 2 − 1
Problem Loading...
Note Loading...
Set Loading...
Let S n = k = 0 ∑ n F k . Then we have S 0 = 0 = F 2 − 1 , S 1 = 1 = F 3 − 1 , S 2 = 2 = F 4 − 1 , S 3 = 4 = F 5 − 1 , ⋯ . It would appear that S n = F n + 2 − 1 . We can prove the claim is true for all n ≥ 0 by induction . The claim is true for n = 0 . Assuming the claim is true for n , then
S n + 1 = S n + F n + 1 = F n + 2 − 1 + F n + 1 = F n + 3 − 1
The claim is also true for n + 1 , therefore k = 0 ∑ n F k = F n + 2 − 1 is true for all n ≥ 0 .