Consider the Collatz-like function:
\begin{array}{l} H(2k) & = & 3k \\ H(2k+1) & = & 3k+1 \\ \end{array}
aka
H(n) = n + \lfloor \frac{n}{2} \rfloor
aka
H(n) = \begin{cases} \frac{3n}{2}&\text{if }n\equiv0\pmod{2},\\ \frac{3n-1}{2}&\text{if }n\equiv1\pmod{2}.\\ \end{cases}
Start at 8 and repeatedly apply H keeping a running total for number of times the number was odd or even. Will you ever reach a point where (the running count of odd numbers) > 2x (the running count of even numbers)?
This problem is simulated by a specific 6-state Turing Machine (called Antihydra) when run on a blank tape and we must solve this problem in order to decide if it will ever halt.
We at bbchallenge recently solved the 5-state Busy Beaver problem. But in order to move on to the 6-state BB problem, we would need to solve Collatz-like problems like this.
Does anyone have any ideas on how to make any sort of progress on this? It seems that it is simpler than the classic Collatz conjecture since all we care about is one single trajectory. But, like the 5x+1 divergent trajectories, this one trajectory is also presumably divergent (non halting) and so it requires showing that the sequence will never have some property across infinite iterations.
Considering this problem probabilistically it is like a random walk. It starts at 0, every time you reach an even number move +2, every time odd, -1. For these sorts of biased random walks, there is an exponentially decaying probability of coming back to 0 from further and further away. We’ve simulated this long enough that the random walk is >1 billion and thus the chance of ever reaching 0 is negligible in this random model. But, of course, that doesn’t prove anything about a single (deterministic) trajectory.
For more details, see: BB(6) is Hard (Antihydra) | sligocki