I am stuck at this step in the inductive process and I was wondering if someone can help me out from where I am stuck.
Question:
if $n$ is a positive integer, prove that,
$$1\cdot2+2\cdot3+3\cdot4+\cdots+n\cdot(n+1) = \frac{n(n+1)(n+2)}3$$
Basic step is $1$, then assume $k$ is true and we get,
$$1\cdot2+2\cdot3+3\cdot4+\cdots+k\cdot(k+1) = \frac{k(k+1)(k+2)}3$$
After that I am stuck because the answer key is telling me that the next step is to add $(k+1)(k+2)$, but I don't know why we do that. Aren't we supposed to just plugin $k+1$ into all $k$ variables. Why are we adding $(k+1)(k+2)$ to both sides?
So we want to prove that
$$1\cdot2+2\cdot3+3\cdot4+\cdots+n(n+1)=\sum_{i=1}^{n}{i(i+1)}=\frac{n(n+1)(n+2)}{3}\forall n\in\mathbb{N}$$
The base case ($n=1$):
Note that $1\cdot2=2$ and that $\frac{1\cdot2\cdot3}{3}=2$. Thus the base case holds.
Suppose that $\exists k\in\mathbb{N}$ such that $\sum_{i=1}^{k}{i(i+1)}=\frac{k(k+1)(k+2)}{3}$. Now consider the case that $n=k+1$:
$$\sum_{i=1}^{k+1}{i(i+1)}=(n+1)(n+2)+\sum_{i=1}^{k}{i(i+1)}$$.
By the induction hypothesis (we claimed that for $n=k$ the formula held) we have:
$$\sum_{i=1}^{k+1}{i(i+1)}=(k+1)(k+2)+\frac{k(k+1)(k+2)}{3}=\frac{k^3+6k^2+11k+6}{3}=\frac{(k+1)(k+2)(k+3)}{3}$$
Therefore, by induction, the formula is true $\forall n\in\mathbb{N}$