I need to solve the given recurrence relation:$$L_n = L_{n-1} + L_{n-2},$$ $n\geq3$ and $ L_1 = 1, L_2 =3$
I'm confused as to what $n\geq3$ is doing there, since $L_1$ and $L_2$ are given I got $t = \frac{1\pm\sqrt 5}{2}$ Which got me the general solution, $ L_n = a $(golden ratio)$^n$ + $b$(silver ratio)$^n$
But when I try to plug in numbers and solve from there, the answers don't come out evenly...I feel I'm doing something wrong.
Any help would be appreciated!
$L_n=a(\frac{1+\sqrt 5}{2})^n+b(\frac{1-\sqrt 5}{2})^n$. Putting $n=1$ gives, $$ L_1=\frac{a+b}{2}+\frac{(a-b)\sqrt 5}{2}=1$$ and putting $n=2$ gives $$L_2=3\frac{(a+b)}{2}+\frac{(a-b)\sqrt 5}{2}=3$$ $$\implies a+b=2,a=b\implies a=b=1$$ which gives $$L_n=(\frac{1+\sqrt 5}{2})^n+(\frac{1-\sqrt 5}{2})^n$$ Condition $n\geq 3$ is there as the definition of the sequence(that this recurrence is defined for $n\geq 3$).