How to resolve this problem with induction? $24|n^{6}-3n^{5}+6n^{4}-7n^{3}+5n^{2}-2n$ Is there some way to make induction step without use of Binomial formula and all that calculating?
2026-03-26 05:54:20.1774504460
On
On
Induction $24|n^{6}-3n^{5}+6n^{4}-7n^{3}+5n^{2}-2n$
86 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
3
There are 3 best solutions below
3
On
Every polynomial of degree $6$ satisfies the recursion $$f(n) = 7f(n-1) - 21f(n-2)+35f(n-3)-35f(n-4)+21f(n-5)-7f(n-6)+f(n-7)$$ So by induction if the first $7$ values are divisible by $24$ then all of them are.
0
On
If you let $m=n(n-1)$ then your polynomial is $m(m+1)(m+2)$. This is a multiple of $3$, which you could show by induction. And $m$ is even, therefore $m+2$ is even and one of them must be a multiple of $4$, so the expression is a multiple of $8$. It's probably easier to show both of these facts by induction than to do the whole thing at once. For divisibility by $8$, you could drop the $m+1$ factor.
First, the base case $n=1$ is trivial but necessary.
This part is slightly tedious, but since you asked for induction, here.
Basically, we wish to prove that if we replace all occurrences of $n$ with $n+1$, we still have a multiple of 24.
From here, we can see that if $f(n) = n^6-3n^5+6n^4-7n^3+5n^2-2n$, then $f(n+1) = n^6 + 3 n^5 + 6 n^4 + 7 n^3 + 5 n^2 + 2 n$. From induction, it suffices to prove that the second expression is a multiple of 24 given that the first is.
Subtracting, we need to show that $$2n(3n^2+1)(n^2+2)$$ is a multiple of 24. If $n$ is odd, then $2n$ contains one factor of 2, $3n^2+1$ contains at least 2 factors of 2 (take modulo 4). If $n$ is even, then $2n$ contains two factors of 2, and $n^2+2$ contains one factor of $n$. We have shown that this is divisble by $8$ - we just need to show that this is divisible by 3 now.
If $n\equiv0\mod3$, then $2n$ is divisible by 3 and the proof is complete.
Or else, $n\equiv1, 2\mod3$, $n^2+2$ is divisible by 3 and we're done.
(Wolfram Alpha is not needed, but a time saver)