I have to show that
$F_{n+k} = F_{k}F_{n+1} + F_{k-1}F_{n}$, where $F_{n}$ is nth Fibonacci element.
I was trying with mathematical induction applied to n and saying k is constant.
step for $n=1$ $F_{k+1} = F_{k}F_{2} + F_{k-1}F_{1}$ which is true, because $F_1=F_2=1$
step let say our theorem is true for some n
step I was trying to do it like this: $F_{n+1+k} = F_{n+k}+F_{n+k-1} = F_{k}F_{n+1} + F_{k-1}F_{n} + F_{n+k-1}$
but there is $F_{n+k-1}$and I do not know what to do with it.
Thanks!