-1

Given integers $a,b,c,d$ with $d\not\equiv0\bmod5$ and $m$ an integer for which $am^3+b m^2+cm+d\equiv0\bmod5$, prove that there exists an integer $n$ for which $dn^3+cn^2+bn+a\equiv0\bmod5$.

Parcly Taxel
  • 103,344

4 Answers4

1

Since $5$ is prime, there exists an multiplicative inverse $n$, for $m$ such that $mn\equiv1\bmod5$
$$am^3+b m^2+cm+d\equiv0\bmod5$$ Multiply both sides by $n^3$ $$am^3n^3+b m^2n^3+cmn^3+dn^3\equiv0\bmod5$$ $$a+bn+cn^2+dn^3\equiv0\bmod5$$
Hence proved!

maverick
  • 1,319
1

$$am^3+bm^2+cm+d\equiv0\bmod5$$ $m$ is not zero because $d$ would then be zero. The modulus of 5 is prime, so $m$ has an inverse $n$: $$an^{-3}+bn^{-2}+cn^{-1}+d\equiv0\bmod5$$ Multiplying by $n^3$ yields the desired result: $$dn^3+cn^2+bn+a\equiv0\bmod5$$

Parcly Taxel
  • 103,344
1

Hint: Since $d\ne 0$, we have $m\ne 0$. Thus $m$ is invertible modulo 5. Take the inverse $n$ of $m$ modulo 5 and multiply the equation with $n^3$.

Wuestenfux
  • 20,964
1

Hint: Consider the analogous statement over the reals:

If $r \in \mathbb R$ is a root of a real polynomial $a_n x^n + a_{n-1} x^{n-1} + \cdots + a_1 x + a_0$ with $a_0\ne0$, then $r\ne0$ and $1/r$ is a root of $a_0 x^n + a_{1} x^{n-1} + \cdots + a_{n-1} x + a_n$.

lhf
  • 216,483