Homepage › Solution manuals › Ivan Niven › An Introduction to the Theory of Numbers › Exercise 2.6.5 (Solve $x^3 + 10x^2 +x + 3 \equiv 0 \pmod{3^3}$)
Exercise 2.6.5 (Solve $x^3 + 10x^2 +x + 3 \equiv 0 \pmod{3^3}$)
Solve
Answers
Proof. The solutions of are modulo . Moreover , then and , so is a nonsingular root, but is singular.
The nonsingular solution lifts to a unique solution modulo , and an unique solution modulo , where
The singular solution satisfies, using (2.4),
Since , does not lift to any solution modulo , a fortiori modulo .
Therefore
□
Check with Sage:
Z27 = IntegerModRing(27) R.<x> = PolynomialRing(Z27) f(x) = x^3 + 10*x^2 + x + 3 [a for a in Z27 if f(a) == 0] [15]