0

If you start with $u_1 = 1$ and $u_2 = 1$, then the sequence can be generated using the formula $$u_{n+1} = u_n + u_{n-1}\ .$$ If $u_n = r^n$, what is r?

Can anyone figure this out? I am so stuck please help!

savick01
  • 4,499

1 Answers1

0

$F_n$ is approximately equal to $\dfrac{\Phi^n}{\sqrt{5}}$, where $\Phi$ is the golden ratio, $\Phi = \dfrac{\sqrt{5}+1}{2}$.

If $F_{n+2} = F_{n+1} + F_n$ and $F_{n+1} = rF_n$, then $r^2F_n = rF_n + F_n$ and $r^2 = r + 1$ or $r^2 - r - 1 = 0$. This quadratic has roots $\Phi$ and $1 - \Phi = \dfrac{1 - \sqrt{5}}{2}$ which is negative.

NovaDenizen
  • 4,216
  • 15
  • 23
  • my problem is where does n+2 come in? and where did we get phi from? – user130520 Jun 19 '14 at 17:22
  • It's better style to deal with $F_{n+2}, F_{n+1}, $ and $F_n$ than $F_{n+1}, F_n, $ and $ F_{n-1}$. And $\Phi$ is a root of the quadratic $r^2 - r - 1$, long associated with the Fibonacci sequence. – NovaDenizen Jun 24 '14 at 23:13