Collatz-like: Difference between revisions

From BusyBeaverWiki
Jump to navigation Jump to search
Tetration Machine: Switch from "Tetration Machine" to "Exponential Collatz" which I think describes this example a little better.
Line 88: Line 88:
Specifically, will it ever reach a point where the cumulative number of <code>E</code> (even transitions) applied is greater than twice the number of <code>O</code> (odd transitions) applied?<ref>Shawn Ligocki. [https://www.sligocki.com/2024/05/10/bb-2-5-is-hard.html BB(2, 5) is Hard (Hydra)]. 10 May 2024.</ref>
Specifically, will it ever reach a point where the cumulative number of <code>E</code> (even transitions) applied is greater than twice the number of <code>O</code> (odd transitions) applied?<ref>Shawn Ligocki. [https://www.sligocki.com/2024/05/10/bb-2-5-is-hard.html BB(2, 5) is Hard (Hydra)]. 10 May 2024.</ref>


=== Tetration Machine ===
=== Exponential Collatz ===
Consider the current [[1RB0LD_1RC0RF_1LC1LA_0LE1RZ_1LF0RB_0RC0RE|BB(6,2) Champion]] (discovered by Pavel Kropitz in May 2022) and consider the general configuration:<math display="block">K(n) = 0^\infty \; 1 \; 0^n \; 11 \; 0^5 \; \textrm{C>} \; 0^\infty</math>Shawn Ligocki showed that:
Consider the current [[1RB0LD_1RC0RF_1LC1LA_0LE1RZ_1LF0RB_0RC0RE|BB(6,2) Champion]] (discovered by Pavel Kropitz in May 2022) and consider the general configuration:<math display="block">K(n) = 0^\infty \; 1 \; 0^n \; 11 \; 0^5 \; \textrm{C>} \; 0^\infty</math>Shawn Ligocki showed that:
<math display="block">\begin{array}{l}
<math display="block">\begin{array}{l}
Line 98: Line 98:
   K(4k+3) & \to & K(\frac{3^{k+3} +  1}{2}) \\
   K(4k+3) & \to & K(\frac{3^{k+3} +  1}{2}) \\
\end{array}</math>
\end{array}</math>
Demonstrating Collatz-like behavior with exponential piecewise component functions.


Starting from config <math>K(5)</math>, these rules iterate 15 times before reaching the halt config leaving over <math>10 \uparrow\uparrow 15</math> non-zero symbols on the tape.<ref>Shawn Ligocki. [https://www.sligocki.com/2022/06/21/bb-6-2-t15.html BB(6, 2) > 10↑↑15]. 21 Jun 2022.</ref>
Starting from config <math>K(5)</math>, these rules iterate 15 times before reaching the halt config leaving over <math>10 \uparrow\uparrow 15</math> non-zero symbols on the tape.<ref>Shawn Ligocki. [https://www.sligocki.com/2022/06/21/bb-6-2-t15.html BB(6, 2) > 10↑↑15]. 21 Jun 2022.</ref>

Revision as of 17:39, 30 May 2025

A Collatz-like function is a partial function defined piecewise depending on the remainder of an input modulo some number. The canonical example is the original Collatz function:c(2k)=kc(2k+1)=3k+2

A Collatz-like problem is a question about the behavior of iterating a Collatz-like function. Collatz-like problems are famously difficult.

Many Busy Beaver Champions have Collatz-like behavior, meaning that their behavior can be concisely described via the iterated values of a Collatz-like function.

Definitions

An n-ary Collatz-like function of degree m is a partial function f:nn of the form

f(t1,t2,,tn)={(P1(t1),P2(t2),,Pn(tn))t10modz(Pn+1(t1),Pn+2(t2),,P2n(tn))t11modz(Pnzn+1(t1),,Pnz(tn))t11modz, where z is a positive integer and P1,P2,,Pnz are (not necessarily distinct) univariate polynomials with rational coefficients of at most degree m. This definition is often restricted to those functions of degree one.

For any given n-ary Collatz-like function g and some two indexed series of nonempty subsets {S1,S2,,Sn},{T1,T2,,Tn} of the integers, we can write the well-formed formula

σi=1nSiτi=1nTix.gx(σ)=τ

where gx(σ) is the x-th iterate of g on σ. Proving or disproving a formula of the above form is a Collatz-like problem. Collatz-like functions and problems are named for the unsolved Collatz conjecture, equivalent to σx.Cx(σ)=1, where

C(a)={12aa0mod23a+1a1mod2.

Many cryptids exhibit Collatz-like behavior, meaning that their behavior can be concisely described via the iterated values of a Collatz-like function. For example, Antihydra's halting status is directly related to the truth value of τ×{1}x.Ax(8,0)=τ where

A(a,b)={(32a,b+2)a0mod2(32a12,b1)a1mod2.

Examples

BB(5,2) Champion

Consider the BB(5,2) Champion and the generalized configuration:

M(n)=0<A1n0Pascal Michel showed that:

0<A0=M(0)M(3k)5k2+19k+15M(5k+6)M(3k+1)5k2+25k+27M(5k+9)M(3k+2)6k+1201H>01(001)k+110

Starting on a blank tape M(0), these rules iterate 15 times before reaching the halt config.[1]

Hydra

Consider Hydra (a Cryptid) and the generalized configuration:

C(a,b)=0<B03(a2)3b20 Daniel Yuan showed that:0A>019C(3,0)C(2n,0)Halt(9n6)C(2n,b+1)C(3n,b)C(2n+1,b)C(3n+1,b+2)

Where Halt(n) is a halting configuration with n non-zero symbols on the tape.

Starting from config C(3,0) this simulates a pseudo-random walk along the b parameter, increasing it by 2 every time a is odd, decreasing by 1 every time it's even. Deciding whether or not Hydra halts requires being able to prove a detailed question about the trajectory of the Collatz-like functionh(2n)=3nh(2n+1)=3n+1starting from 3:

3O4E6E9O13O19O28E42E63

Specifically, will it ever reach a point where the cumulative number of E (even transitions) applied is greater than twice the number of O (odd transitions) applied?[2]

Exponential Collatz

Consider the current BB(6,2) Champion (discovered by Pavel Kropitz in May 2022) and consider the general configuration:K(n)=010n1105C>0Shawn Ligocki showed that: 0A>045K(5)K(4k)Halt(3k+3112)K(4k+1)K(3k+3112)K(4k+2)K(3k+3112)K(4k+3)K(3k+3+12)

Demonstrating Collatz-like behavior with exponential piecewise component functions.

Starting from config K(5), these rules iterate 15 times before reaching the halt config leaving over 1015 non-zero symbols on the tape.[3]

References