Here's the problem: Use induction to prove: For every integer $n\geq 1$, the number $n^5 − n$ is a multiple of 5.
This is what I have so far:
Basis: $ n= 1$, $n^5-n = 1-1 = 0 = (5)(0)$ so $1^5 - 1$ is a multiple of 5.
Inductive step: Suppose $n^5 -n$ is a multiple of 5 for some $n\geq 1$, then
$(n+ 1)^5 - (n + 1)$
I'm not sure how to proceed and I'm feeling a little lost on this one...
Don't be afraid to expand it.
$$(n + 1)^5 - (n + 1) = (n^5 + 5 n^4 + 10 n^3 + 10 n^2 + 5 n + 1) - (n + 1)$$
$$= n^5 + 4 n + 5 (n^4 + 2 n^3 + 2 n^2 + n)$$
But $4 n = -n + 5 n$ so
$$(n + 1)^5 - (n + 1) = (n^5 - n) + 5 \underbrace{(n^4 + 2 n^3 + 2 n^2 + 2 n)}$$
The underbraced part is an integer, so when multiplied by $5$ is obviously a multiple of $5$. And $n^5 - n$ is a multiple of $5$ by hypothesis.