Prove that no "prime triplet" exists after 3,5,7

  • Thread starter Thread starter kvkenyon
  • Start date Start date
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
7 replies · 12K views
kvkenyon
Messages
21
Reaction score
0
So,

Prime triplet: if p is prime, then p+2 and p+4 are also prime.
Prove that 3,5,7 is the only prime triplet.

I have figured out that

p = 2k+1, k > 1

then p+2 = 2k + 3 and p + 4 = 2k+5.

I figure there will be three cases to prove i.e.

p (prime), p + 2 (prime), p + 4 (not prime)

p (prime), p + 2 (not prime), p + 4 (prime)

p (prime), p + 2 (not prime), p +4 (not prime)

Not sure how to continue. The solution is in the book, but I just want a little hint in the right direction...and I hoped writing it out again would give me some hint. I am just starting with number theory and haven't done many proofs in my life so this feels a little tough.
 
on Phys.org
Your first hint is to look at a group of them and then understand what is special about the anomaly.

3, 5, 7 works
5, 7, 9 doesn't
7, 9, 11 doesn't
9, 11, 13 doesn't
11, 13, 15 doesn't

What do all of these have? How does 3, ,5, 7 get away with it? Can you prove that any triplet will have the same problem?
 
Hopefully that's enough hints to get OP started.

Note how I refrained myself from posting another hint.
 
haha thanks so much everyone!
Every triplet has a multiple of 3. The first triplet survives this because the multiple is 3 itself, and 3 is prime. However, every triplet after the first will contain a multiple of 3 which by the definition of prime numbers means one element is not prime.

So let's assume p = 3j where j is a positive integer. Then every integer can be formed by 3j + 1 or 3j + 2.

Then for the first case j = 1 we have p = 3, p + 2 = 5 and p + 4 = 7. No contradiction since we have a prime triplet.

For the next case 3j + 1 we get p = 3j + 1, p + 2 = 3j + 3 = 3 (j + 1), contradiction since it is a multiple of 3.
So we can't have a triplets where p is this form.

Finally, for p = 3j + 2 we get p = 3j + 2, p + 2 = 3j + 4, and p + 4 = 3j + 6 = 3 (j + 2) --> contradiction multiple of 3. Thus, we cannot have prime triplet of this form.

Therefore no prime triplets exist after 3, 5, 7

Thanks all!