Find the sum of all primes for which the system
has a solution in integers .
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.
Rewrite: p + 1 = 2x^2 <=> p = 2x^2-1 factorize it and let a = (2^0,5)x we then get: p = (a-1)(a+1). Since one of the fractions has to be 1 and the other a prime. Since a = 2 is the only solution we need to check if it is fact is a solution.
a = 2 <=> 2 = 2^(0,5)x , x = 2. We check if this is fact is a prime:
2*2^2 -1 = 7. Now we only have to check if we can find a integer, y, which satisfy the second equation:
p^2 + 1 = 2y^2 <=> 7^2 + 1 = 2y^2. We see that y = 5 gives us a right solution. Hence the sum of all primes for which the system has a solution in integers x,y is equal to 7