- So far I have only been able to complete the base case for which I got the following:
$$f(n) = 3n^5 + 5n^3 + 7n$$
$$f(n) = 3(1)^5 = 5(1)^3 + 7(1)$$
$$f(n) = 3 + 5 + 7$$
$$15/15 = 1$$
From here I got a bit confused with the inductive step in terms of number manipulation, a hint that my professor gave me was $f(-n) = -f(n)$. Any further help is appreciated.
First work with $\mathbb{Z^+},$
Assume $3n^5+5n^3+7n = 15k$, then consider $$f(n+1) = 3(n+1)^5+5(n+1)^3+7(n+1)$$
$$ = 3n^5+15n^4+35n^3+45n^2+37n+15$$
$$ =(3n^5+5n^3+7n) + 15(n^5+2n^3+3n^2+2n+1)$$
$$ = 15(k+n^5+2n^3+3n^2+2n+1)$$
Now do something similar using the hint your professor gave you for $n\in \mathbb{Z^-}$.