Goldbach’s Conjecture and the 2-Way Sieve

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

Discussion Overview

The discussion centers around Goldbach's Conjecture and a proposed method called the 2-Way Sieve, introduced by amateur mathematician Mr. Hui Sai Chuen. Participants explore the method's theoretical underpinnings, its application in finding prime pairs that sum to even numbers, and the practicality of the approach in computational contexts.

Discussion Character

  • Exploratory
  • Technical explanation
  • Debate/contested
  • Mathematical reasoning

Main Points Raised

  • Mr. Hui's 2-Way Sieve is presented as a novel method for sieving odd prime number pairs, with a specific example using the even number 26.
  • Some participants question the validity of the forward and backward subsets being treated as distinct sets, suggesting they should be considered sequences instead.
  • Concerns are raised regarding the efficiency of the sieving method, with one participant noting that it may take excessive time and memory compared to traditional methods.
  • One participant highlights the general utility of sieving for finding primes in large ranges, contrasting it with the proposed method's efficiency.
  • Another participant expresses confusion about the purpose of sieving twice and the relationship between the two sieves, as well as the significance of the primes 2, 3, and 5 in the context of the method.
  • There is a suggestion that the juxtaposition of the forward and backward sequences serves more as a visual aid rather than a practical computational method for finding prime pairs.
  • A detailed alternative approach to finding prime pairs is proposed, involving memory management and computational efficiency considerations.

Areas of Agreement / Disagreement

Participants express a range of views on the effectiveness and practicality of the 2-Way Sieve, with no consensus reached on its utility or correctness. Some participants support the idea of sieving in general, while others challenge the specific claims made about Mr. Hui's method.

Contextual Notes

Participants note limitations regarding the definitions used, the efficiency of the proposed method, and the assumptions underlying the claims about the sieve's effectiveness. There is also mention of the computational resources required for the method, which may not be practical for large values.

liulangzhuhai
Messages
1
Reaction score
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
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 2\pi(\sqrt n)\sim \sqrt n/\log n and memory 2n 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:
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.
 
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.
 
Oh, sorry, I didn't notice you said "THIS sieving method". I thought you were talking about sieving in general.
 
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.
 
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 O(C\sqrt n/\log n))
 
Last edited:

Similar threads

  • · Replies 10 ·
Replies
10
Views
3K
  • · Replies 3 ·
Replies
3
Views
920
  • · Replies 24 ·
Replies
24
Views
3K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 68 ·
3
Replies
68
Views
12K
  • · Replies 7 ·
Replies
7
Views
6K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 3 ·
Replies
3
Views
1K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 36 ·
2
Replies
36
Views
2K