Homepage › Solution manuals › Ivan Niven › An Introduction to the Theory of Numbers › Exercise 5.4.8 (Diophantine equation with $18$ variables)
Exercise 5.4.8 (Diophantine equation with $18$ variables)
Let . Show that unless all three variables are even. Deduce that if for integral values of the variables, then all variables are .
Answers
Proof. If all three variables are even, then . It remains verifications with Sagemath
A = set()
for x1 in Integers(4):
for x2 in Integers(4):
for x3 in Integers(4):
r = x1^4 + x2^4 + x3^4 - x1^2 * x2^2 - x2^2 * x3^2 -
x3^2 * x1^2 - x1 * x2 * x3 * (x1 + x2 + x3)
if x1.lift() % 2 != 0 or x2.lift() % 2 != 0 or x3.lift() % 2 != 0:
A.add(r)
A
{1}
This shows that unless all three variables are even.
Suppose for the sake of contradiction that
where .
If we divide by , where is the gcd of these values, we obtain a similar equation, where the new values are relatively prime. So we can assume that in (1),
(We use the same Fermat’s method of descent as in the previous problems.)
Reducing modulo 4, we obtain
Since , this congruence implies
By the first part,
Then , thus by (1), . This shows that
By the same reasoning,
Therefore
This contradiction shows that the equation has no nontrivial integral solution. □