I am getting confused on adding Fibonacci numbers. For example I know that:
$\mathrm{F}_\mathrm{K+1}+\mathrm{F}_\mathrm{K}=\mathrm{F}_\mathrm{K+2}$
But I believe my logic is flawed. The way I am thinking about this is that if you add $\mathrm{F}_\mathrm{K+1}$ to $\mathrm{F}_\mathrm{K}$ it would become $\mathrm{F}_\mathrm{K+2}$ because you have added a $\mathrm{F}_\mathrm{K}$. I do not understand why or how the following is true
$\mathrm{F}_\mathrm{K}+\mathrm{F}_\mathrm{K-1}=\mathrm{F}_\mathrm{K+1}$
The efinition of Fibonacci numbers is: $$ \begin{align} F_{k} &= F_{k-1} + F_{k-2}, k \ge 2 \\ F_0 &= 0 \\ F_1 &= 1 \end{align} $$ where $k$ is an integer.
Everything else you write about them can be inferred from that.
Of course, assuming $K \ge 0$, writing $F_{K+2} = F_{K+1} + F_K$ is equivalent to above, which means it's right simply by definition. Your second statement, however, is wrong.