Find number of integral values of n for which n 4 + 4 is a prime number.
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.
I think just putting -1 and 1 works .. all other cases it has to be composite no
Log in to reply
You have to prove your claim though. You can never be sure...
Let n be an arbitrary integer. We consider n 4 + 4 mod 5.
Fermat's Little Theorem tells us that n 4 ≡ 1 m o d 5 .
Therefore we see n 4 + 4 ≡ 1 + 4 ≡ 0 m o d 5 , so that 5 will divide n 4 + 4 for all n , since it was arbitrary.
The only integers that will make the equation be prime is ± 1 , since ( ± 1 ) 4 + 4 = 5 , and for all other values of integers, then the equation will be bigger than 5, thus having 5 as a divisor (by the above argument), so it cannot be prime.
We should also consider the case where n is multiple of 5, in this case n 4 ≡ 0 m o d 5
Problem Loading...
Note Loading...
Set Loading...
n⁴+4 ( add & subtract 4n² )
n⁴+4+4n²-4n²
(n²+2)²-(2n)²
(n²+2+2n)(n²+2-2n)
This is prime so
(i) n²+2n+2=1
From here n=-1 & n⁴+4=5 (a prime no.)
(ii) n²-2n+2=1
From here n=1 & n⁴+4=5 (a prime no.)
(iii) n²+2n+2=-1
From here n is not an integer
(iv) n²-2n+2=-1
From here n is not an integer
So n=1,-1 (2 values of n)