If are prime numbers such that the above conditions hold simultaneously, then how many tuples of the form exist?
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.
the prime numbers are in the form x, x+2, x+4
let us assume that x is not divisible by three.
CASE 1=> x is in the form 3k + 1, k>1
then,x+2 will be in the form 3k, which is divisible by 3, hence x+2 is not prime. this is a contradiction.
CASE 2=> x is in the form 3k + 2, k>1
then x+2 maybe prime, but x + 4 is in the form 3k, hence it is divisible by 3 and not prime. this is a contradiction.
if x is divisible by three
CASE 3=> x = 3
then x+2 and x+4 are not divisible by three. 3 is the only multiple of 3 which is prime. 5 and 7 are prime. thus, (3,5,7) is the only set of prime triplets.