Find the number of integer solution of the equation
x 2 + y 2 + z 2 = 2 x y z .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
How will you prove the only case you chose for the three powers of two adding to another power
To study the behavior of this equation we must first notice that it is a part of the wider family x 2 + y 2 + z 2 = 2 w x y z , with w > 0 . Let S be the set of all non-zero solutions of this equation and let's define a function f : S → N as follows: f ( x , y , z , w ) = ∣ x y z w ∣ . Now, let S ′ = { f ( x , y , z , w ) , ( x , y , z , w ) ∈ S }
Let's suppose that x 2 + y 2 + z 2 = 2 w x y z is the smallest solution in the sense that f ( x , y , z , w ) is the smallest element of S ′ . First of all, as the right-hand side is even, and 3 odd numbers added together would be odd, at least one of the variables is even. By symmetry, and without loss of generality, let x = 2 x 0 . Then 4 x 0 2 + y 2 + z 2 = 2 w + 1 x 0 y z . Thus, y 2 + z 2 ≡ 0 m o d 4 . This is a finite congruence that can be easily solved by checking. The only solutions are y 2 ≡ z 2 ≡ 0 m o d 4 ⟹ y , z ≡ 2 , 4 m o d 4 . In each case, we have that both variables are also even so let y = 2 y 0 , z = 2 z 0 .
Plugging these substitutions into the equation, and dividing by four we get x 0 2 + y 0 2 + z 0 2 = 2 w + 1 x 0 y 0 z 0 . So we have found that if ( x , y , z , w ) is a solution of the equation, ( 2 x , 2 y , 2 z , w + 1 ) is also a solution. But f ( 2 x , 2 y , 2 z , w + 1 ) = ∣ ∣ ∣ 8 x y z ( w + 1 ) ∣ ∣ ∣ < ∣ x y z w ∣ = f ( x , y , z , w ) which contradicts that this was the minimal element of S ′ . Thus, no solution of this equation exists.
However, we assumed at first that S only contained non-zero solutions. It is a trivial exercise to show that if at least one of the variables is 0, all of them are. And that indeed ( 0 , 0 , 0 , 1 ) is a solution.
Consider the quadratic in x and find the discriminant. It is clearly less than 0 except when z=y=0, in which case x=0.
Problem Loading...
Note Loading...
Set Loading...
Clearly x = y = z = 0 is a solution to the system
Now consider x = 0 y = 0 z = 0
As the right hand side of the equation is even then the left side must also be even. Then either two or none of the variables are odd. First suppose that two of them are odd:
wlog assume x = 2 k , y = 2 n + 1 , z = 2 m + 1
Then we have 4 k 2 + 4 n 2 + 4 n + 1 + 4 m 2 + 4 m + 1 = 4 k ( 2 n + 1 ) ( 2 m + 1 ) ⟹ 4 ( k 2 + n 2 + n + m 2 + m ) + 2 = 4 k ( 2 n + 1 ) ( 2 m + 1 ) but then the right hand side is a multiple of 4 while the left hand side isn't so we have no solution in this case. Now suppose that all the variables are even:
wlog assume x = 2 k , y = 2 n , z = 2 m
Then we have 4 k 2 + 4 n 2 + 4 m 2 = 1 6 k n m ⟹ k 2 + n 2 + m 2 = 4 k n m but then this is the same case we had at the beginning (with k , n and m instead of x , y , z ) which means that k , n and m are all even and if we set k = 2 k ′ , n = 2 n ′ , m = 2 m ′ we will get the same case again implying that k ′ , n ′ and m ′ are all even and so on. Thus we get that x , y , z are all powers of 2.
Now let x = 2 k , y = 2 n , z = 2 m
Then we have 2 2 k + 2 2 n + 2 2 m = 2 k + n + m + 1 so we have that 3 powers of 2 add up to another power of 2. But this can only happen if the powers are of the form 2 a , 2 a and 2 a + 1 ( 2 a + 2 a + 2 a + 1 = 2 a + 2 )
But then we have that ( x 2 , y 2 , z 2 ) = ( 2 a , 2 a , 2 a + 1 ) and either 2 a or 2 a + 1 will not have an integral square root.
So we have no solutions and thus the only solution to the equation is x = y = z = 0