Find the number of ordered pairs ( a , b ) where a and b are natural numbers for which a 4 + 4 b 4 is a prime.
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.
Right, Sophie Germain identity kills this question too quickly. Bonus question: What would the answer be if I replace the words "natural numbers" with "integers"?
a 4 + b 4 = ( a 2 + 2 a b + 2 b 2 ) ( a 2 − 2 a b + 2 b 2 )
Since we are looking for primes, the lowest factor must be equal to 1, so:
a 2 − 2 a b + 2 b 2 = 1
( a − b ) 2 + b 2 = 1
( a − b ) 2 = ( 1 + b ) ( 1 − b )
From here we can tell that the absolute value of b must be less than 2 otherwise it would make the RHS negative, this is not possible when the LHS is square.
We can consider the case b = ± 1
( a − b ) 2 = ( 1 + 1 ) ( 1 − 1 )
( a − b ) 2 = 0
a = b = 1
Where a 4 + 4 b 4 = 1 + 4 = 5
Then if b = 0
( a − b ) 2 = 1
a = b + 1 = 2
Where a 4 + 4 b 4 = 1 6 + 4 = 2 0
So the only such pair ( a , b ) is ( 1 , 1 ) which gives the solution 5, which is prime.
Problem Loading...
Note Loading...
Set Loading...
According to the Sophie Germain Identity,
a 4 + 4 b 4 = a 4 + 4 a 2 b 2 + 4 b 4 − 4 a 2 b 2 = ( a 2 + 2 b 2 ) 2 − ( 2 a b ) 2 = ( a 2 + 2 b 2 − 2 a b ) ( a 2 + 2 b 2 + 2 a b )
Thus, a 4 + 4 b 4 can be factorized and there is only one ordered pair for which a 4 + 4 b 4 which is 1 , 1 .