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 x 3 + 10 x 2 + x + 3 0 ( mod 3 3 )

Answers

Proof. The solutions of x 3 + 10 x 2 + x + 3 0 ( mod 3 ) are 0 , 1 modulo 3 . Moreover f ( x ) = 3 x 2 + 20 x + 1 , then f ( 0 ) = 1 ( mod 3 ) and f ( 1 ) 0 ( mod 3 ) , so 0 is a nonsingular root, but 1 is singular.

The nonsingular solution a 1 = 0 lifts to a unique solution a 2 modulo 9 , and an unique solution a 3 modulo 27 , where

a 2 = a 1 f ( 0 ) f ( 0 ) ¯ = 3 6 ( mod 9 ) , a 3 = a 2 f ( a 2 ) f ( 0 ) ¯ = 6 585 15 ( mod 27 ) .

The singular solution b 1 = 1 satisfies, using (2.4),

f ( 1 + tp ) f ( 1 ) = 15 6 ( mod 9 ) .

Since f ( 1 ) = 15 0 ( mod 9 ) , 1 does not lift to any solution modulo 9 , a fortiori modulo 27 .

Therefore

x 3 + 10 x 2 + x + 3 0 ( mod 3 3 ) x 15 ( mod 3 3 ) .

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]

User profile picture
2024-08-30 10:17
Comments