The Fibonacci sequence $(0, 1, 1, 2, 3, 5, 8, 13, ...)$ is defined by $F_0 = 0, F_1 = 1$ and $F_n = F_{n-1} + F_{n-2}$ for all n >= 2.
Prove that for all positive integers n that $F_1^2 + F_2^2 + ... + F_n^2 = F_nF_{n+1}$
My question concerns the base case of this induction. It says to prove this "statement" / equation for all positive integers; but, shouldn't the base case start at $n = 2$?
I'm looking for clarification at this step; hence, the proof-explanation tag.
Edit: Regarding the possible duplicate; my question is just focusing on whether I have potentially two base cases. I'm pretty sure I could be overthinking the base case (due to seeing that expression being true "for all n >= 2". As for actually finishing the proof; I'll be fine with that.