$$ \forall \text{ } n \in \mathbb{P} , \text{prove } 1*2 + 2 * 3 + ... + n (n+1) = \frac{1}{3}n(n+1)(n+2) $$
Proof via Induction
Base Case: n=1 $\implies 1(1+1)=\frac{1}{3}(1)(2)(3) \implies 2=2$
Induction: Assume that n=k and $1*2 + 2 * 3 + ... + k(k+1) = \frac{1}{3}k(k+1)(k+2)$ Show that this holds for k+1
$$ (k^{2}+k) + (k+1)(k+2) = \frac{1}{3} (k+1)(k+2)(k+3) $$ $$ 2(k+1)^{2} = \frac{1}{3}k^{3} +2(k+1)^{2} - \frac{1}{3}k$$
I'm so close here, but I know I'm missing something in making $k^{3}$ and $k$ equivalent on the right hand side of the equation. Any suggestions?