Skip to content

Using visual multiway systems to prove Riemann's hypothesis.

Notifications You must be signed in to change notification settings

james-partridge/RZF

Repository files navigation

RZF

WIP

Intro

This algorithm creates visual multiway systems via python/networkx based on rules of the Collatz Conjecture. These Collatz-tree-like structures are created by taking a starting number, n, and apply different rules depending on whether n is odd or even. Arrows in red show the first transformation, and arrows in blue show the second. After the transformation, the output of the function is inputted recursively until the supplied iteration.

Some rules generate well-ordered multiway systems.

1+x, 2x

image
Image Credit: Sir Richard Southwell [2013] https://youtu.be/t9L05SWzdOc.

1+2x, 2x

image
Image Credit: Sir Richard Southwell [2013] https://youtu.be/t9L05SWzdOc.

Other rules generate nonwell-ordered multiway systems.

1+3x, 2x

image
Image Credit: Sir Richard Southwell [2013] https://youtu.be/t9L05SWzdOc.

2+3x, 2x

image
Image Credit: Sir Richard Southwell [2013] https://youtu.be/t9L05SWzdOc.

This is a pursuit to understand why.

Known well-ordered parameters

(1+x), 2x
(1+2x),2x
2+2x, 2x
3x, 2x
4x, 2x
1+4x, 2x

Known nonwell-ordered parameters

(1+3x), 2x
2+x, 2x
2+3x, 2x
3+3x, 2x

It is believed that relationships between well ordered and nonwell-ordered multiway systems generated with Complex numbers may have bearing in proving nontrivial zeros of the Riemann Zeta Function [1853] https://en.wikipedia.org/wiki/Riemann_hypothesis.

Collatz

The original conjecture, otherwise known as the 3n+1 problem, has been an unsolved puzzle in mathematics. If n is even, the number is halved, and if n is odd, it is multiplied by 3 and added to 1. In all cases of positive n, the function eventually terminates to 1.

image

This conjecture can be demonstrated as a directed graph (https://en.wikipedia.org/wiki/Directed_graph). The figure below is a Directed Graph of all starting positive integers that terminate to 1 in less than 20 steps.

image

Analytical research inspired by ROBERT J. LEMKE OLIVER AND KANNAN SOUNDARARAJAN, "UNEXPECTED BIASES IN THE DISTRIBUTION OF CONSECUTIVE PRIMES" [2016]. https://arxiv.org/abs/1603.03720v4 and Chebyshev's Bias [1853] https://en.wikipedia.org/wiki/Chebyshev's_bias.

Theoretical research inspired by Sir Richard Southwell [2013] https://youtu.be/t9L05SWzdOc.

About

Using visual multiway systems to prove Riemann's hypothesis.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published