Find the value of prime numbers x and y satisfying x 2 − 2 y 2 = 1 .
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.
Working modulo 4, we can obtain that y must be even, hence it is equal to 2.
More generally, x 2 − 2 y 2 = 1 is known as a pell's equation, and the solutions are of the form ( x n + y n 2 = ( 3 + 2 2 ) n .
As we know that 3 and 2 both are prime numbers. Hence let if x=3 and y=2 than by putting these in the given equation. 1 is the answer that we get.
Hence x=3 and y=2 both prime numbers satisfied the equation. So these values are the answer.
Problem Loading...
Note Loading...
Set Loading...
However, the problem can be easily solved by verifying solutions method via checking out each option if it satisfies the given equation. But let us try to solve it by general approach:
x 2 − 2 y 2 = 1 gives x 2 = 2 y 2 + 1 . Now the RHS of the equation is an odd number, therefore x must be an odd number. If x = 2 n + 1 , then x 2 = ( 2 n + 1 ) 2 = 4 n 2 + 4 n + 1 = 2 y 2 + 1 .
Therefore y 2 = 2 n ( n + 1 ) . This means y 2 is an even number and hence y is also an even number. And the only even prime number is 2. Now we can easily conclude that y = 2 . Putting this in the equation we get x = 3 .
Hence x = 3 , y = 2 is the only solution of the given equation provided x , y are prime numbers. □