I have these notes, but I'm confused on what is happening at the inductive step.
Theorem:
$\forall n \in \mathbb{N} 3 | (n^3-n) $
Inductive Step:
For $n \geq 0, show P(n) \Rightarrow P(n+1) is True$
Assume P(n) true i.e. $3 | (n^3-n) $
Examine:
$(n+1)^3 - (n+1) $ = $n^3 + 3n^2 + 3n + 1 - (n+1)$
= $n^3 + 3n^2 + 2n $
= $n^3 - n + 3n^2 + 3n$
I understand what we're trying to prove but
- where does $(n+1)^3 - (n+1) $ come from?
- What is happening here $n^3 - n + 3n^2 + 3n$, how did we get there from the previous point? I assume $n^3 + 3n^2 + 2n $ is not obvious if it was divisible by 3, thus we assumed $3 | (n^3-n) $ is true... But how does step 2 become 3?
Thanks in advance