Is the Goldbach Conjecture part of a larger pattern?

  • Context: Graduate 
  • Thread starter Thread starter raycb
  • Start date Start date
  • Tags Tags
    Conjecture
Click For Summary
SUMMARY

The discussion centers on the extension of the Goldbach Conjecture, specifically regarding even numbers that lie halfway between two primes differing by 4n + 2. The author provides examples illustrating that while some midpoints, such as 8, cannot be expressed as the sum of two primes from pairs differing by 10, others, like 108, can be expressed as the sum of 29 and 89. The author notes numerous exceptions to this conjecture, citing 48 exceptions for primes under 100, 1805 for those under 1000, and 77732 for those under 10000. A testing code is provided to explore these relationships further.

PREREQUISITES
  • Understanding of the Goldbach Conjecture
  • Familiarity with prime numbers and their properties
  • Basic knowledge of mathematical programming or coding
  • Experience with mathematical conjectures and proofs
NEXT STEPS
  • Explore advanced concepts in number theory related to the Goldbach Conjecture
  • Learn about prime number generation algorithms
  • Investigate mathematical programming techniques for testing conjectures
  • Study the distribution of prime numbers and their gaps
USEFUL FOR

Mathematicians, number theorists, and programming enthusiasts interested in exploring prime number relationships and conjectures.

raycb
Messages
4
Reaction score
0
I wonder if the Goldbach Conjecture could be extended, so that the even number halfway between two primes that differ by 4n + 2 can be written as the sum of two primes from pairs that differ by 4n + 2? This conjecture often fails for the first few numbers, but then seems to begin working.

For example, the midpoint of 3 and 13 is 8, which cannot be written as the sum of two primes from pairs that differ by 10, but the midpoint of 103 and 113 is 108, which can be written as the sum of 29 and 89, which come from the pairs 19 and 29, and 79 and 89.
 
Physics news on Phys.org
raycb said:
I wonder if the Goldbach Conjecture could be extended, so that the even number halfway between two primes that differ by 4n + 2 can be written as the sum of two primes from pairs that differ by 4n + 2? This conjecture often fails for the first few numbers, but then seems to begin working.

For example, the midpoint of 3 and 13 is 8, which cannot be written as the sum of two primes from pairs that differ by 10, but the midpoint of 103 and 113 is 108, which can be written as the sum of 29 and 89, which come from the pairs 19 and 29, and 79 and 89.

Your question seems to be:
Is it true that for every pair of odd primes p < q with q - p = 4n + 2 that there are r,s with p + 2n + 1 = r + s, where r, s, r + 4n + 2, and one of s ± (4n + 2) are prime?​
or rather whether this is true for large enough p+q.

I find lots of exceptions to this: 48 exceptions with p < q < 100, 1805 exceptions up with p < q < 1000, and 77732 exceptions with p < q < 10000.

Testing code:
Code:
test(p,q)=my(diff=q-p,m=p+diff/2);forprime(r=2,m\2,if(isprime(m-r)&isprime(r+diff)&(isprime(m-r+diff)|isprime(m-r-diff)),return(r)));0
upto(lim)=my(s=0);forprime(p=3,lim,forprime(q=p+2,lim,if((q-p)%4==0,next);if(!test(p,q),print1([p,q]);s++)));s
 

Similar threads

  • · Replies 10 ·
Replies
10
Views
3K
  • · Replies 7 ·
Replies
7
Views
8K
  • · Replies 6 ·
Replies
6
Views
8K
  • · Replies 36 ·
2
Replies
36
Views
29K
  • · Replies 3 ·
Replies
3
Views
1K
  • · Replies 6 ·
Replies
6
Views
5K
  • · Replies 2 ·
Replies
2
Views
4K
  • · Replies 1 ·
Replies
1
Views
4K
  • · Replies 2 ·
Replies
2
Views
3K
Replies
6
Views
3K