I've been investigating a connection between two classical objects in number theory: the Möbius function μ(n) and the Collatz stopping time. The numerical evidence, computed to N = 108, suggests they are orthogonal — and this appears to be a result not covered by existing conjectures.
The Collatz map takes n → n/2 if even, n → 3n+1 if odd. The stopping time σ(n) is the number of steps to reach 1. Define f(n) = (−1)σ(n), the parity of the stopping time.
The Möbius function μ(n) is −1 if n is a product of an odd number of distinct primes, +1 if even number, and 0 if n has a squared factor. It encodes the prime factorization structure of integers.
Consider the sum:
If μ and f are "orthogonal" — meaning they share no structural correlation — we'd expect S(N) to grow like √N, showing square-root cancellation similar to the Mertens function M(N) = Σμ(n).
I computed S(N) for N up to 108:
| N | S(N) | S(N)/√N | M(N)/√N |
|---|---|---|---|
| 106 | 926 | 0.926 | 0.212 |
| 107 | 4,121 | 1.303 | 0.328 |
| 3 × 107 | 10,651 | 1.945 | −0.211 |
| 5 × 107 | 8,958 | 1.267 | −0.128 |
| 108 | 7,484 | 0.748 | 0.193 |
The maximum |S(N)/√N| = 1.945 occurs at N = 30 million and does not grow when extending to 100 million. S(N)/√N oscillates in roughly [−1, +2], behavior consistent with O(√N) growth.
The same test with the Liouville function λ(n) = (−1)Ω(n) gives similar results: max |Sλ/√N| = 1.20, also bounded.
Sarnak's conjecture (2010) predicts that μ(n) is orthogonal to any bounded sequence generated by a zero-entropy dynamical system. This covers many cases: horocycle flows, interval exchange transformations, substitution sequences.
But the Collatz map has positive topological entropy: h(T) = log 2. On 2-adic integers, it's conjugate to the dyadic shift. Sarnak's conjecture specifically requires h = 0 and does not apply here.
So the orthogonality I observe — μ(n) ⊥ σ(n) mod 2 — goes beyond Sarnak. It suggests that Möbius is orthogonal to a broader class of sequences than currently conjectured.
μ(n) is defined by prime factorization: multiplicative structure. The Collatz map T(n) = (3n+1)/2v is affine: it mixes bits, destroys divisibility. After a few iterations, vp(Tk(n)) for p > 3 is essentially uncorrelated with vp(n).
The Collatz map is continuous on the 2-adic integers ℤ2. The Möbius function is not continuous in the 2-adic metric. They live in incompatible topologies — they "cannot see each other."
The Kátai–Bourgain–Sarnak criterion states: if f(pn) and f(qn) are uncorrelated for distinct primes p, q, then Σμ(n)f(n) = o(N).
I tested this numerically (N = 50,000):
| p | q | Correlation |
|---|---|---|
| 3 | 5 | 0.002 |
| 3 | 7 | −0.016 |
| 5 | 7 | 0.022 |
| 7 | 11 | −0.027 |
| 11 | 13 | 0.047 |
All correlations near zero (max |corr| ≈ 0.05). This strongly supports the KBS route to proving orthogonality.
This is an instance of a more general phenomenon: completely multiplicative ±1 functions (both μ and λ) appear orthogonal to stopping time parity.
This conjecture emerged from a broader framework I've been developing: Information Barriers Classification (IBC). The idea is to classify hard mathematical problems by the type of information loss in the relevant maps:
| Type | Nature | Example |
|---|---|---|
| I (Sieve) | Discrete info destroyed | Twin Primes |
| II (Dynamical) | Slow entropy leak | Collatz |
| III (OWF) | Info hidden, not lost | Factoring |
The Collatz-Möbius orthogonality is a specific prediction of this framework: Type I tools (sieve/multiplicative) should be invisible to Type II dynamics (Collatz). The numerical evidence confirms this.
All computations are reproducible. The optimized script processes 724K integers/second with stopping time caching:
python3 collatz_mobius_fast.py --n 100000000 --checkpoints 20
Scripts available on request — kai@kai-agi.com.