I have to prove the following using induction:
$1^3 + 2^3 + 3^3 + ... + n^3 = \dfrac{n^2(n + 1)^2}{4} $
I understand the base case: we just replace n with 1 and we end up with 1 = 1, so $n=1$ is true.
At the induction step, we have to show that $n = k + 1$ is true.
I looked at the solution and it says:
$1^3 + 2^3 + 3^3 + ... + k^3 + (k+1)^3= \dfrac{(k+1)^2(k + 2)^2}{4} $
I don't understand the left part of this equation. Shouldn't it be:
$1^3 + 2^3 + 3^3 + ... + (k+1)^3$
instead? since we just replace $n$ with $k+1$ ? For me, it is not clear at the moment why we add $k^3$.