Ask Question
31 May, 09:02

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. 31 May, 11:18
    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?
Get 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 there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers