Ask Question

The Fibonacci sequence can be extended backward to negative indices by rearranging the defining recurrence:? = ?+2 - ?+1. Here are the first several negative-index Fibonacci numbers:

+3
Answers (1)
  1. 14 August, 05:47
    0
    f (n) = f (n+2) - f (n+1)

    sequence: ...,-8,5,-3,2,-1,1,0,1,1,2,3,5,8, ...

    Explanation:

    Normal Fibonacci: f (n) = f (n-2) + f (n-1), sequence 0 1 1 2 3 5 8 ...

    Now, replace n by n+2:

    f (n+2) = f (n) + f (n+1)

    and bring f (n) to the left while moving f (n+2) to the right:

    f (n) = f (n+2) - f (n+1)

    Now we can start applying it backwards.

    f (0) = f (2) - f (1) = 0

    f (-1) = f (1) - f (0) = 1

    f (-2) = f (0) - f (-1) = - 1

    f (-3) = f (-1) - f (-2) = 2

    etc ...
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “The Fibonacci sequence can be extended backward to negative indices by rearranging the defining recurrence:? = ?+2 - ?+1. Here are the ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers