Homepage › Solution manuals › Ivan Niven › An Introduction to the Theory of Numbers › Exercise 3.1.19* ($x^8 \equiv 16 \pmod p$ is always solvable)
Exercise 3.1.19* ($x^8 \equiv 16 \pmod p$ is always solvable)
For all primes prove that is solvable.
Hint. Use Theorem 2.37.
Answers
Proof. An integer is a solution of if and only if
- If , then is a solution.
-
If , then is a quadratic nonresidue modulo .
- If is a quadratic residue modulo , then there is some integer such that , so is a solution.
- If is a quadratic nonresidue modulo , then is a quadratic residue, because is a quadratic nonresidue. Thus there is some integer such that , and is a solution.
-
If , there are two subcases.
- if , then , thus has a solution, which is a solution of .
-
If , then is a quadratic nonresidue modulo .
Since , is a quadratic residue. There is some integer such that . Then
- If is a quadratic nonresidue modulo , then (and ) are quadratic residues, thus , has a solution, which also a solution of .
-
If is a quadratic residue modulo , then for some integer , which satisfies
Then is a fourth power modulo . By Theorem 2.37,
Thus for some integer , thus . This is impossible, because , so this case doesn’t happen. Therefore is a quadratic nonresidue if .
This shows that is solvable in all cases. □
Example. In the more delicate case , the polynomial splits entirely, but not . For ,
sage: F = GF(13) sage: R.<x> = F[] sage: p = x^8 - 16 sage: p.factor() (x + 4) * (x + 6) * (x + 7) * (x + 9) * (x^2 + 2) * (x^2 + 11)