SilverSight/experiments/bosonic_continuous
allaun e02eab7181 feat(bmcte): N=20000 sweep on neon-64gb + Hachimoji bridge theorem
- BMCTE sweep: N=20000, p=12,14 on neon-64gb (ARM64, 62 GB, 18 cores)
- Optimizations: N×p isometry (O(N·p²) QR), vectorized Ryser permanent (65× speedup)
- p=12: H=11.607, λ=0.9928; p=14: H=11.699, λ=0.9902; total 73.6s, 0 overflows
- HachimojiBridging.lean §11: lambdaBMCTE = exp(-p²/N) with monotonicity proofs

Build: 2987 jobs, 0 errors (lake build)
2026-06-22 14:17:31 -05:00
..
kernel exp(bosonic): continuous interpolation experiment for regime transition 2026-06-22 01:19:10 -05:00
tests exp(bosonic): continuous interpolation experiment for regime transition 2026-06-22 01:19:10 -05:00
bmcte_extension_v1.sql exp(bosonic): extension v1 experiment with DAG + DB ingestion 2026-06-22 02:31:23 -05:00
BMCTE_v2_PAPER.md docs(bosonic): finalize BMCTE v2 trilogy 2026-06-22 01:49:46 -05:00
extension_v1.py feat(bmcte): N=20000 sweep on neon-64gb + Hachimoji bridge theorem 2026-06-22 14:17:31 -05:00
extension_v1_receipt.json feat(bmcte): N=20000 sweep on neon-64gb + Hachimoji bridge theorem 2026-06-22 14:17:31 -05:00
README.md exp(bosonic): continuous interpolation experiment for regime transition 2026-06-22 01:19:10 -05:00
SYSTEM_SPEC.md docs(bosonic): finalize BMCTE v2 trilogy 2026-06-22 01:49:46 -05:00
THEORY_CLOSURE.md docs(bosonic): finalize BMCTE v2 trilogy 2026-06-22 01:49:46 -05:00

Bosonic Continuous Interpolation Experiment

Testing a unified Monte Carlo estimator without regime switching.

Goal

Replace hard p≥5 cutoff with continuous λ(p) interpolation:

λ(p) = exp(-p²/N)
Q(p) = λ(p) Q_bos + (1-λ(p)) Q_fact

Structure

  • kernel/ryser_continuous.py — Unified permanent estimator
  • kernel/mode_sampler.py — Mode sampling kernel
  • tests/test_lambda_interpolation.py — Verify continuity

Key Change

Remove:

if p >= 5: distinguishable_k()

Replace with single estimator using Ryser permanent for all p ≤ 6.