Results 1 to 5 of 5

Thread: Fibonacci Corrected

  1. #1

    Thread Starter
    New Member
    Join Date
    Jun 2006
    Posts
    8

    Fibonacci Corrected

    You all getting wrong the first terms of the series. The correct one is:

    0, 1, 1, 2, 3, 5, 8, 13 ...

    Hence, F(0)=0, F(1)=1
    and F(n)=F(n-1)+F(n-2)


    Joe Back

  2. #2

  3. #3
    Member
    Join Date
    Jul 2006
    Posts
    49

    Re: Fibonacci Corrected

    Difficult really, since that is simply the definition of an even function. It's like saying prove dy/dx = lim delta(y)/delta(x) as delta tends towards 0. It's just the definition.

  4. #4
    Smitten by reality Harsh Gupta's Avatar
    Join Date
    Feb 2005
    Posts
    2,938

    Re: Fibonacci Corrected

    !LKH's formula can be written as:

    F(-n) = -(-1)nF(n)

    Proof: For Fib series we know,

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

    So, F(n-2) = F(n) - F(n-1).

    Therefore, Fib series, when extended to negative numbers become:
    Code:
    ... -8, 5, -3, 2, -1, 1, 0, 1, 1, 2, 3, 5, 8, ...
    When n is -1, answer is 1 (for n=1, ans=1), and when n = -2, answer is -1 (for n=2, ans=1) and so on.
    Show Appreciation. Rate Posts.

  5. #5
    Junior Member
    Join Date
    Aug 2006
    Posts
    16

    Re: Fibonacci Corrected

    Quote Originally Posted by Mattywoo2
    Difficult really, since that is simply the definition of an even function. It's like saying prove dy/dx = lim delta(y)/delta(x) as delta tends towards 0. It's just the definition.
    You're misunderstanding the question - the question stated you should prove the result when N is even, not when the function is even.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width