Given that and are prime numbers that satisfy Find all possible solutions, if any, and give your answer as the sum of of each pair.
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.
It is possible to bash this problem but here is another way:
Note that ( p − q ) ( p + q ) = p 2 − q 2 . Now apart from 3 , all primes squared are 1 m o d 3 , so if both primes are not 3 , then the LHS must be divisible by 3 , and so there cannot be a solution as 2 0 8 is not divisible by 3 . Also if p = q = 3 it is clear that the equation is not satisfied.
Therefore one of p and q must be 3 . If p = 3 then q = 2 , as otherwise the LHS is negative. This does not work. Therefore q = 3 . Checking shows that p = 5 works, and it is clear that the LHS will only increase as p increases.
And so the only solution is ( 5 , 3 ) giving the answer 1 5 as required.