Natasha1 said:
But,
F(k)^2-F(k+1)(k-1)=(-1)^{k-1}
Thus,
F(k+1)^2-F(k+1)F(k)=(-1)(-1)^{k-1}=(-1)^k
Thus, it hold true for k+1.
Why? This is what you have to prove! You
cannot assume things like that. You
must prove it.
The idea for
Proof By Induction is that say if the statement holds for n = 1, and you can prove that
if the statement holds for n = k
then it also holds for n = k + 1. Then the statement holds for every n \geq 1. Why? Besause say the statement is true for n = 1 (you can test to see if it's true), then the statement is also true for n = 1 + 1 = 2.
And because the statement is true for n = 2, it's also true for n = 2 + 1 = 3, and because the statement is true for n = 3, it's also true for n = 3 + 1 = 4, and so on... So the statement is true for all n greater than or equal to 1.
--------------
Example:
Prove that:
\sum_{i = 1} ^ n i = \frac{n (n + 1)}{2}, \ n \geq 1
Proof:
Step 1: For n = 1, we have:
LHS : \sum_{i = 1} ^ 1 i = 1
RHS : \frac{1 (1 + 1)}{2} = \frac{2}{2} = 1
So LSH = RHS, hence the equation holds for n = 1.
Step 2: Assume that the equation is true for n = k (
inductive hypothesis), we have:
\sum_{i = 1} ^ k i = \frac{k (k + 1)}{2}
Step 3: We then have to use our
inductive hypothesis to prove that the statement is also true for n = k + 1, i.e we have to prove:
\sum_{i = 1} ^ {k + 1} (i) = \frac{(k + 1) (k + 2)}{2}
So we have:
\sum_{i = 1} ^ k i = \frac{k (k + 1)}{2} (this is our
inductive hypothesis, we'll start from it)
\Leftrightarrow \sum_{i = 1} ^ k (i) + k + 1 = \frac{k (k + 1)}{2} + k + 1
\Leftrightarrow \sum_{i = 1} ^ {k + 1} (i) = \frac{k (k + 1) + 2 (k + 1)}{2}
\Leftrightarrow \sum_{i = 1} ^ {k + 1} (i) = \frac{(k + 1) (k + 2)}{2} (factor (k + 1) out in the RHS)
Hence the equation holds true for n = k + 1.
--------------
This means you have proven that:
If the statement is true for n = k => it's true for n = k + 1
You have tested that it's true for n = 1 (the first step)
So the equation holds for n = 1 => it holds for n = 1 + 1 = 2 => it holds for n = 2 + 1 = 3 => it holds for n = 3 + 1 = 4 => ... => it holds for all n greater than or equal to 1.
Can you get this?
--------------
Back to your problem, now you have to test to see if it's true for n = 0 first, then you have to prove
IF (F_k \cdot F_{k+2}) - (F_{k+1})^2 = (-1)^{k+1}
THEN
(F_{k + 1} \cdot F_{k+3}) - (F_{k+2})^2 = (-1)^{k+2}
Can you go from here? :)
Hint: You can re-read
HallsofIvy's post to have some ideas on how to start off the problem.