I'm working on a task where I'm a bit unsure if the answer I've got is correct.
Here is the task:
Show by induction that the following assertion is true for all natural numbers $n$
$n^3 - n$ is divisible by $3$
Here is my answer:
For $n = 1$,
$n^3 - n = 1 - 1$ which is divisible by $3$Assume the statement is true for some number $n$, that is, $n^3 - n$ is divisible by $3$. Now,
$(n + 1)^3 - (n + 1) = n^3 + 3n^2 + 3n + 1 - n - 1 = (n^3 - n) + 3(n^2 + n) = (n^3 - n) + 3n(n+1)$
which is $n^3 - n$ plus a multiple of $3$.
Since we assumed that $n^3 - n$ was a multiple of $3$, it follows that $(n + 1)^3 - (n + 1)$ is also a multiple of $3$.
So, since the statement "$n^3 - n$ is divisible by $3$" is true for $n = 1$, and its truth for $n$ implies its truth for $n + 1$, the statement is true for all whole number $n$.
I would appreciate if someone could go through the task and the answer and see if I've done this correctly.
Thanks a lot!