Skip to content

Convergent Elimination

The Cycle Equation

From the Affine Orbit Structure, a Collatz cycle of total length KK with SS odd steps and E=KSE = K - S even steps satisfies:

n=Ctotal2E2E3Sn = \frac{C_\text{total} \cdot 2^E}{2^E - 3^S}

where CtotalC_\text{total} is the sum of affine corrections from each odd step. For a cycle to exist:

  1. 2E3S2^E - 3^S must be nonzero (it is, since log23\log_2 3 is irrational)
  2. The result must be a positive integer
  3. nn must actually follow the proposed parity pattern

The viable (S,E)(S, E) pairs are the convergents of log23\log_2 3 — the best rational approximations give the smallest gaps 2E3S|2^E - 3^S|.

Ascending Convergent Elimination

Theorem. All convergents with 3S>2E3^S > 2^E (ascending ratio) cannot produce positive integer cycles.

The affine constant CtotalC_\text{total} is always positive: each odd step contributes +1+1, subsequently multiplied by positive factors (3j/2m3^j / 2^m for various j,mj, m).

When 3S>2E3^S > 2^E, the denominator 2E3S<02^E - 3^S < 0, so:

n=Ctotal2E2E3S=(positive)(negative)<0n = \frac{C_\text{total} \cdot 2^E}{2^E - 3^S} = \frac{(\text{positive})}{(\text{negative})} < 0

No positive integer cycle exists.

This eliminates half of all convergents for free.

Convergent Status Table

EESSKKp/qp/qvs log23\log_2 3GapStatus
1121.000below1-1Eliminated (ascending)
2132.000above11✓ Trivial cycle (4→2→1)
3251.500below1-1Eliminated (ascending)
85131.600above1313Eliminated (divisibility)
1912311.583below7153-7153Eliminated (ascending)
65411061.585above101.3\sim 10^{1.3}Open (too large to enumerate)
84531371.585below101.3\sim -10^{1.3}Eliminated (ascending)
4853067911.585above100.6\sim 10^{0.6}Open

Gap = 13 Elimination

For (S=5,E=8,K=13)(S=5, E=8, K=13) with gap =2835=256243=13= 2^8 - 3^5 = 256 - 243 = 13:

A valid parity word is a circular binary string of length 13 with exactly 5 ones (odd positions) and no two consecutive ones (since 3n+13n+1 always produces an even number). There are exactly 91 such words.

For each word, the affine composition gives a specific constant CC. The cycle equation requires:

13C25613 \mid C \cdot 256

Since gcd(256,13)=1\gcd(256, 13) = 1, this reduces to 13C13 \mid C.

Theorem. No 13-step Collatz cycle exists. Among all 91 valid parity words, the remainder C256mod13C \cdot 256 \bmod 13 is distributed over {1,2,,12}\{1, 2, \ldots, 12\} — zero never appears.

Distribution of C256mod13C \cdot 256 \bmod 13:

RemainderCount
17
26
39
47
56
610
77
86
910
106
118
129
00

The distribution is roughly uniform over {1,,12}\{1, \ldots, 12\}, but zero is structurally excluded.

The Trivial Cycle

The convergent (S=1,E=2,K=3)(S=1, E=2, K=3) with gap =1= 1 produces the known cycle:

  • Parity word (1,0,0)(1, 0, 0): C=1C = 1, n=14/1=4n = 1 \cdot 4 / 1 = 4. The cycle 42144 \to 2 \to 1 \to 4. ✓
  • Parity word (0,1,0)(0, 1, 0): n=2n = 2. The cycle 21422 \to 1 \to 4 \to 2. ✓
  • Parity word (0,0,1)(0, 0, 1): n=4n = 4. Same cycle, different starting point.