Fibonacci Formula: Find Nth Term in Sequence

  • Context: High School 
  • Thread starter Thread starter brandy
  • Start date Start date
  • Tags Tags
    Formula
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
8 replies · 18K views
brandy
Messages
156
Reaction score
0
im just curious. is there a formula for the fibonacci formula in terms of..well terms. like the nth term =..?
iv been trying to figure it out for a couple of days now but am not that smart.
 
Mathematics news on Phys.org
You could derive it, if you know enough elementary linear algebra and in particular diagonalisation of matrices. It's not that difficult. You start off with recursive definition of the n+1 and nth term and n-1 term, put them all into a matrix and show that it is diagonalisable, then write out the matrix equation.
 
done the algebra but have only learned +-x/ matrices.
how does the n+1 thing work
like i said am not that smart.
 
The terms in a Fibonacci sequence obey the recursive rule Fn+2= Fn+1+ Fn. One common way of solving such equations is to try a solution of the form Fn= an. Then Fn+1= an+1 and Fn+2= an+2 so the equation becomes an+2= an+1+ an. Dividing by an gives a2= a+ 1 or a2- a- 1= 0. Solving that by the quadratic formula,
[tex]a= \frac{1\pm\sqrt{5}}{2}[/tex]
In other words,
[tex]F_n= \left(\frac{1+\sqrt{5}}{2}\right)^n[/tex]
and
[tex]F_n= \left(\frac{1-\sqrt{5}}{2}\right)^n[/tex]
both satisfy Fn+2= Fn+1+ Fn.

Since that is a linear equation, any solution of that equation can be written
[tex]A\left(\frac{1+\sqrt{5}}{2}\right)^n+ B\left(\frac{1-\sqrt{5}}{2}\right)^n[/tex]

Now, looking at the first two terms of the Fibonacci sequence
[tex]F_0= A+ B= 1[/tex]
and
[tex]F_1=A\left(\frac{1+\sqrt{5}}{2}\right)+ B\left(\frac{1-\sqrt{5}}{2}\right)= 1[/tex]
gives two equations to solve for A and B.
 
Sorry for the bump, but could you show me how you would solve for A and B?

I'm not able to solve simultaneous equations in this form;

A + B = 1
Ax + By = 1

Thanks.
 
Simply let B=1-A and then substitute this into the second equation, solve for A there and then substitute back into the first to find B.