Homepage › Solution manuals › Ivan Niven › An Introduction to the Theory of Numbers › Exercise 5.4.3 (Equation $(x^2 + y^2)^2 - 2(3x^2-5y^2)^2 = z^2$ )
Exercise 5.4.3 (Equation $(x^2 + y^2)^2 - 2(3x^2-5y^2)^2 = z^2$ )
Show that the equation has no integral solution.
Hint: Remove powers of common to and , then argue .
Answers
Proof. Suppose for the sake of contradiction that the integers satisfy .
Let be the largest integer such that and , so that for suitable integers . Then or , thus or , so or is odd (perhaps both).
Since and , then , hence . Thus for some integer . This gives
Simplifying by , we obtain
where or is odd.
For all integers ,
and if is odd,
-
If is odd,
-
If is odd,
But are not squares modulo , hence the equation has no integral solution. □
With Sagemath:
A = set()
for v in range(16):
for u in range(16):
if u % 2 == 1 or v % 2 == 1:
A.add((Mod(u,16)^2 + Mod(v, 16)^2)^2
-2*(3 * Mod(u,16)^2 - 5 * Mod(v, 16)^2)^2)
A
{7, 12, 15}