r/Collatz 12h ago

Why Do So Many Collatz Peaks Follow a 9-Step Pattern?

Post image
0 Upvotes

Some users asked me for more mathematical content and fewer 3D renderings. I hope that this one-page summary better reflects the mathematical language behind the LNL/LZR project.


r/Collatz 20h ago

Closed Form Plancherel Mass of the Syracuse Stationary Measure

1 Upvotes

Hi All,

I may have some meaningful math regarding Tao's Syracuse random variables.

Long time listener; first time caller. Also, terrified to be here. First and foremost, I'd like to give a qualifier: no idea what I'm talking about. Complete imposter syndrome and I did most of this through metaphor with the assistance of LLM. Now for the headline and then the backstory:

My github repository is completely public and the more recent arc is furthering the qx+1 work and linking Dr. Maxwell Siegel's work with my own.

https://github.com/mrnathanhumphrey-droid/Collatz

Above is the repository. It is over 125k files in totality so I have left the necessary documents for replication. There are documents chronicling everything by timeline and by field as well.

https://doi.org/10.5281/zenodo.20673500

Here is a preprint I am faking my way through. I've taught myself enough Lean 4 to verify everything. That has its own DOI and repository that you can find through my profile.

Now for the Storytime because if I'm putting myself out there; I'm doing so authentically. This all started originally when I was 11 and I hand plotted the first 800 digits on a TI-83. I started mapping ln(x) to the pattern and saw outliers. I thought "if my computer was powerful enough I could calculate a ton and there would be a pattern in the noise".

27 years later my best friend and I were making NBA projections for fun when I re-discovered "The Dwight Effect" in block data and the Bayesian fit reminded me of Collatz when I was 11. So I did a Bayesian fit of the stopping times with the intention of finding a pattern. From there, I just kept probing the pattern and trying to retroactively teach myself anything I found. There are a million and a half dead ends. There are stupid repetitive probes that are a waste. But, I have tried to prove every single thread and finding wrong a million times over before presenting it.

If it's all fugazi; it's okay. If it's not; hopefully it will be of help to someone. I'm having fun regardless.


r/Collatz 16h ago

🏔️ Exploring the 9-Step Structure Behind Every Collatz Peak (LNL/LZR Hypothesis)

Thumbnail
gallery
0 Upvotes

I have been working on an alternative structural view of the Collatz problem, which I call the LNL/LZR framework (Lange Number Line / LZR Engine).

The central idea is not to search for new arithmetic operations, but to analyze the geometric structure of Collatz trajectories in terms of mountains, valleys, peaks, trajectories and deterministic backward paths.

My current hypothesis is the following:

Every Collatz trajectory belongs to exactly one mountain.

Every peak is an even number.

The last 9 backward steps before a peak follow a deterministic pattern.

These 9 steps uniquely determine the predecessor structure of the mountain.

The mountain–valley decomposition may explain why trajectories cannot escape to infinity.

I have created several visualizations to illustrate the idea. At the moment, this is still an experimental framework rather than a formal proof, and I would be very interested in critical feedback from mathematicians.

For the mathematicians: please attack the logic, the assumptions and the definitions. 🧮

For the treasure hunters: please remember that GitHub and Zenodo timestamps exist. 😄

Constructive criticism, counterexamples and alternative interpretations are highly appreciated.

GitHub repository:

https://github.com/lortzingring-tech/LNL---LZR-Collatz


r/Collatz 2h ago

Preprint: Tao's almost-all Collatz result upgraded from logarithmic to natural density

4 Upvotes

Tao (2022) proved Col_min(N) < f(N) for almost all N in logarithmic density and asked (Remark 1.16) whether this holds in natural density. This preprint answers affirmatively, with an explicit rate and a time bound: the witnessing iterate occurs within (1+o(1)) ln(N)/ln(4/3) Syracuse steps, i.e. under 12 ln(N) Collatz steps.

Zenodo (PDF + LaTeX + numerics): https://doi.org/10.5281/zenodo.21340150

Error reports welcome.


r/Collatz 7h ago

Try #3 at proving Collatz Conjecture

1 Upvotes

Note: This applies for natural numbers above two, i.e., {3, 4, 5, ...} . If anyone wants the calculations, do let me know.

Part 1: Setting the boundaries

It can be said that the given number decreases on x operations (of which (3x+1) is done 'H' times and (x/2) is done 't' times) if 3H < 2T .

It is also known that x = H + T

So, the boundaries can be set as follows:

(H/x) < (ln2/ln6)

(T/x) > (ln3/ln6)

Part 2: Finding a general trend for h and t as x changes

Since (3x+1) for an odd number always gives an even number, (x/2) always comes after (3x+1) . So, no two (3x+1) operations can happen consecutively. This can be rewritten as:

If a coin is flipped x times, what is the average number of heads, if no two heads appear consecutively?

An example to ensure proper understanding: Let's say the coin is flipped thrice. The possible outcomes are TTT, TTH, THT, HTT, HTH. (THH, HHT, HHH are excluded because they have consecutive heads.)

There are 5 total outcomes.

The average number of heads = (0+1+1+1+2)/5 = 1

1/5 is less than ln2/ln6 (H/x < 0.38)

Finding the formula for the total number for outcomes for x throws will lead to the formula for H/x .

After some solving, I arrived at the formula shown below (If someone knows how to format math on reddit, do let me know):

To show that the above equation does not cross (ln2/ln6), I used desmos to plot a graph (see below):

It is seen that (from 3 and onwards) the graph continues to decrease. The maximum is at (3, 1/3) - meaning that it will not cross (ln2/ln6 = 0.38)

Can someone tell me why this approach might not work?