How many prime numbers p such that 4 p 2 + 1 and 6 p 2 + 1 are also 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.
If p ≡ ± 1 ( m o d 5 ) then 4 p 2 + 1 ≡ 0 ( m o d 5 ) , so 4 p 2 + 1 is not prime. If p ≡ ± 2 ( m o d 5 ) then 6 p 2 + 1 ≡ 0 ( m o d 5 ) , so 6 p 2 + 1 is not prime. Thus the only possible prime is p = 5 , and that one works.
Problem Loading...
Note Loading...
Set Loading...
It's easy to see that p = 2 is not a solution. Thus, p must be odd.
With a odd prime, its last digit when it got square is 1 ; 5 ; 9 .
Or we can say p 2 's last degit is 1 ; 5 ; 9 .
● But except when p = 5 , there's no way p 2 's last degit is 5 . Checking for p = 5 , we can see it's one of our solutions.
● If p 2 's last degit is 1 , then 4 p 2 + 1 always divisible by 5.
● If p 2 's last degit is 9 , then 6 p 2 + 1 always divisible by 5.
So, p = 5 is our only solution