Goldbach’s Conjecture and the 2-Way Sieve

  • Thread starter liulangzhuhai
  • Start date
  • Tags
    Conjecture
In summary, Mr. Hui Sai Chuen, an amateur mathematician, has created a new sieve method called the 2-Way Sieve for finding odd prime number pairs. This method has been verified by experts and uses a combination of forward and backward subsets of non-negative integers to find pairs that add up to a given even number. However, the method is not considered practical due to its slow processing time and high memory usage.
  • #1
liulangzhuhai
1
0
Detail attached

Goldbach’s Conjecture and the 2-Way Sieve

Intro:
Mr. Hui Sai Chuen is an amateur mathematician born in May 1937 in the Canton province of China. After graduating with an engineering and construction degree, he proceeded to do research on architecture and material science before moving to Hong Kong in 1981. From there he enjoyed a successful career with various construction and interior design companies until his retirement in 1993. The ever-curious mathematician, Mr. Hui then dedicated his time to studying number theory, particularly Goldbach’s conjecture and its uses. He published his findings in several papers, two of which were the ‘2-Way Sieve’ and the ‘Double-Key Lock Cipher Theory’, both highly commended for its novelty in several national symposiums (the latter discovery was patented in China in 2004).
The 2-Way Sieve is a new sieve method created by Mr. Hui that can sieve odd prime number pairs. Although the formula has been verified by Professor Jong Ji of the South China Normal University and by the “Mathematics Journal” published by the Mathematics Research Institute of the Chinese Academy of Social Sciences in 2001, the theory is nonetheless somewhat novel, a new mathematical concept of a multifunctional sieve. Put simply, it can be explained as follows. For example:

Take any even number, w = 26 say.
We look at the set of its non-negative integers:
Forward Subset: S+ = 0, 1, 2, … , 24, 25, 26
Backward Subset: S- = 26, 25, 24, … , 2, 1, 0

S+= 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
S-= 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0

By combining the two subsets, we can see that the sum of any arbitrary pair of numbers is equal w = 26.
The prime factors of the subsets S+ and S- are:
√w = √26 = 5.099, which after rounding, the prime factors are 2, 3 and 5.
By sieving the numbers that can be divided exactly by 2, 3 and 5 in the subsets S+ and S-, we obtain the forward and reverse collection as follows:

S+= x 1 2 3 x 5 x 7 x x x 11 x 13 x x x 17 x 19 x x x 23 x x x
S-= x x x 23 x x x 19 x 17 x x x 13 x 11 x x x 7 x 5 x 3 2 1 x
 
Last edited by a moderator:
Mathematics news on Phys.org
  • #2
I couldn't find anything on Mr. Hui and his cipher (or its patent):
Google search

The "forward subset" and "backward subset" {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26} and {26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0} are equal (as sets). If you want them to be distinct, you'd need to call them 27-tuples or sequences rather than sets.

Sets don't have natural prime factors. The gcd of the set is 1, and its lcm is undefined/infinite/zero depending on your definition of lcm(0, 26771144400).

This sieving method takes time [itex]2\pi(\sqrt n)\sim \sqrt n/\log n[/itex] and memory [itex]2n[/itex] which is too slow for any practical use.

I don't understand why you sieve twice, what the correspondance between the two sieves is, or why 2, 3, and 5 remain.
 
Last edited:
  • #3
Sieving is good for some applications. For example, if you seek all prime numbers in a large range, you should first sieve it by small primes. It's much faster than doing trial division by small numbers on each one, which is the first step you'd normally do in a primailty test.
 
  • #4
I've written large segmented sieves, one running past 100 trillion to find a particular Sloane sequence. Certainly they're much faster than testing sequential numbers. But what possible advantage could this sieve have? First, I'm not entirely sure what it's claiming to find; second, it seems to use several times more memory and processing power than is needed.
 
  • #5
Oh, sorry, I didn't notice you said "THIS sieving method". I thought you were talking about sieving in general.
 
  • #6
If I understood correctly, by yuxtaposing the forward and backward sequences, he was trying to obtain pairs of primes that add to 26 (3+23, 7+19, 13+13), in the example. Though it seems more of a visual aid than a practical method.
 
  • #7
Dodo said:
If I understood correctly, by yuxtaposing the forward and backward sequences, he was trying to obtain pairs of primes that add to 26 (3+23, 7+19, 13+13), in the example. Though it seems more of a visual aid than a practical method.

Ah. For that problem (assuming the length was not trivially short, say n > 1 billion) I'd determine the amount of RAM (in bits) that was free for the problem, less the size of the executable and some overhead (64sqrt(n) plus room for processing) and set that equal to 2C. I would then store an array of the primes up to sqrt(n) and make two bit arrays of length C, one from 1 to C and the other from n - C to n. I'd sieve each for primes, test them for equality from each end, then move each interval inward until they met.

Memory: 2C + 64sqrt(n) + other overhead
Time: 60n sqrt(n) / C + 2C sqrt(n)/ln(n) + 1.5n (roughly; with large C this becomes [itex]O(C\sqrt n/\log n)[/itex])
 
Last edited:

1. What is Goldbach's Conjecture?

Goldbach's Conjecture is a mathematical conjecture proposed by Christian Goldbach in 1742. It states that every even number greater than 2 can be expressed as the sum of two prime numbers. For example, 8 can be expressed as 3 + 5, and 20 can be expressed as 7 + 13.

2. What is the 2-Way Sieve?

The 2-Way Sieve is a method used to test the validity of Goldbach's Conjecture. It involves sifting through all even numbers and checking if they can be expressed as the sum of two primes. If all even numbers can be expressed in this way, then Goldbach's Conjecture is proven to be true.

3. Has Goldbach's Conjecture been proven?

No, as of now, Goldbach's Conjecture has not been proven. However, it has been verified for all even numbers up to 4 x 10^18, making it one of the most widely tested conjectures in mathematics.

4. What is the significance of Goldbach's Conjecture?

Goldbach's Conjecture has significant implications in number theory and has inspired many other mathematical conjectures and theories. It is also a famous unsolved problem in mathematics and has captured the interest of many mathematicians for centuries.

5. Are there any counterexamples to Goldbach's Conjecture?

No, there are no known counterexamples to Goldbach's Conjecture. However, it has not been proven, so there is always a possibility that a counterexample could be found in the future.

Similar threads

  • General Math
Replies
24
Views
2K
Replies
7
Views
2K
Replies
68
Views
9K
Replies
1
Views
1K
  • General Math
Replies
7
Views
1K
  • General Math
Replies
3
Views
548
Replies
3
Views
764
  • Precalculus Mathematics Homework Help
Replies
6
Views
1K
  • General Math
Replies
8
Views
909
  • Precalculus Mathematics Homework Help
Replies
11
Views
1K
Back
Top