ZBW Mixing Fractions
Code and notebooks for computing Zitterbewegung mixing fractions (g-2 extension).
Summary
This paper presents CPP's preregistered prediction for the Fermilab muon g-2 experiment -- a bold, falsifiable forecast made before the final results were announced. CPP predicts the muon's anomalous magnetic moment arises from fractional DP mixing in orbital ZBW for tetrahedral (\(N_k=4\)) cages: ~68.5% eDP, ~13% qDP, ~18.5% hDP. The predicted anomaly: \(\delta_\mu \sim (2.0\text{--}3.0) \times 10^{-7}\).
Preregistered prediction (Feb 07, 2026): Fermilab muon g-2 final result \(\delta_\mu \sim (2.0\text{--}3.0) \times 10^{-7}\). Model: \(N_k=4\) tetrahedral cage mixing -- eDP ~68.5%, qDP ~13%, hDP ~18.5%. Formula: \(\delta_\mu \approx C \times (f_\text{qDP} + 0.7 \times f_\text{hDP})\) with \(C \approx 4.0 \times 10^{-6}\). Dual licensing: MIT (code), CC-BY-4.0 (scientific content). Explicit success/falsification criteria.
Full preregistration protocol (OSF format). Mixing fraction derivation. Success and falsification criteria. Reproducibility instructions.
PDF & Paper
This paper documents CPP's preregistered prediction for the Fermilab muon g-2 experiment. The muon anomalous magnetic moment receives an additional contribution from fractional mixing of dipole pair (DP) types in orbital Zitterbewegung (ZBW) for \(N_k=4\) tetrahedral cages. Equilibrium mixing fractions -- eDP ~68.5%, qDP ~13%, hDP ~18.5% -- yield a predicted deviation \(\delta_\mu \approx C \times (f_\text{qDP} + 0.7 \times f_\text{hDP}) \approx (2.0\text{--}3.0) \times 10^{-7}\), with \(C \approx 4.0 \times 10^{-6}\). Explicit success and falsification criteria are defined prospectively. All calculations are fully reproducible via the accompanying Python code and Jupyter notebooks.
Figures
Code & Notebooks
Development Notes
CPP ZBW Mixing Fractions โ Muon g-2 Preregistration
Preregistered prediction (Feb 07, 2026): Fermilab muon g-2 final result (late 2026) will show ฮดฮผ โ (2.0โ3.0) ร 10โปโท from fractional DP mixing in orbital ZBW.
Python scripts and Jupyter notebooks for calculating orbital Zitterbewegung (ZBW) dipole pair (DP) composition (mixing fractions of eDP, qDP, hDP) in Conscious Point
This reproduces the mixing fractions used in Paper 2: Mass Generation from Symmetry Breaking in the 600-Cell
Features
Reproducible mixing fraction results for leptons and quarks
Parameter sensitivity analysis (N_k, thermal scale T)
Visualization: pie charts and N_k dependence plots
Supports predictions in Paper 2 (e.g., muon g-2 ฮดฮผ โ (2.0โ3.0) ร 10โปโท)
Preregistration: Muon g-2 Anomaly Prediction
Date of preregistration: February 07, 2026
Target experiment: Final Fermilab Muon g-2 result (Run 2/3 combined, expected late 2026)
Predicted deviation: ฮดฮผ = a_ฮผ^theory - a_ฮผ^exp โ (2.0 โ 3.0) ร 10โปโท
Paper reference: Conscious Point Physics Paper 2 (Version 27), Appendix I: Orbital ZBW Mixing for Quarks/Leptons standard_model_emergence_in_the_600-cell_lattice/papers/paper_2_mass_generation_from_geometric_hierarchies_and_cage_complexity
Model Basis
In CPP, the muon anomalous magnetic moment receives a small additional contribution from fractional mixing of DP types in orbital Zitterbewegung (ZBW) for N_k=4 tetrahedral cages (muon). The equilibrium mixing fractions are calculated via energy minimization + thermal averaging (see notebooks/lepton_zbw_mixing.ipynb and src/mixing_calculator.py):
eDP โ 68.5%
qDP โ 13%
hDP โ 18.5%
(see figures/lepton_pie_chart.png)
This admixture arises because the muon's cage complexity (N_k=4) perturbs the pure eDP dominance seen in the electron (N_k=1), introducing qDP/hDP components that modify the spin precession via lattice SSV
Quantitative Mapping to ฮดฮผ
The predicted correction is derived as:
ฮดฮผ โ C ร (f_qDP + 0.7 ร f_hDP)
where C โ 4.0 ร 10โปโถ is a geometric prefactor from SSV coupling strength and cage scaling (detailed in Paper 2, Appendix I). Plugging in the fractions:
ฮดฮผ โ 4.0 ร 10โปโถ ร (0.13 + 0.7 ร 0.185) โ 2.0โ3.0 ร 10โปโท
(uncertainty from Monte Carlo spread in fractions ยฑ1โ2%)
Success / Falsification Criteria
Confirmation (strong support for CPP): Final Fermilab central value falls within 1.5โ3.5 ร 10โปโท (accounting for ~0.5 ร 10โปโท experimental + theoretical error bar).
Marginal / partial support: Result in 0.5โ4.5 ร 10โปโท (suggests mixing mechanism broadly correct but may require refinement of C or fractions).
Failure (major challenge to this mechanism): Central value < 0.5 ร 10โปโท or > 5 ร 10โปโท, or result consistent with zero within ~1ฯ.
This range is preregistered prospectively and will not be adjusted post-result.
Reproducibility
All calculations are fully reproducible:
Core mixing logic โ src/mixing_calculator.py
Muon-specific plot โ notebooks/lepton_zbw_mixing.ipynb โ figures/lepton_pie_chart.png
Full derivation โ Paper 2, Appendix I & J (DP cloud and ZBW refinements)
This prediction is made without knowledge of the final Fermilab combination (as of February 07, 2026). Any future model updates will be versioned separately and clearly marked as post-preregistration revisions.
How to Run (Quick Start)
1. Clone the repo (or navigate to this subfolder)
2. Install dependencies: pip install numpy scipy matplotlib
3. Run the muon calculation:
Open notebooks/lepton_zbw_mixing.ipynb in Jupyter
or use CLI: python src/mixing_calculator.py --type lepton --N_k 4
Repository Structure (relative to cpp-zbw-mixing-fractions/)
cpp-zbw-mixing-fractions/
โโโ README.md # This file: overview + preregistration protocol
โโโ LICENSE # MIT License for code
โโโ LICENSE-CC-BY-4.0.md # CC-BY 4.0 for scientific content
โโโ notebooks/
โ โโโ lepton_zbw_mixing.ipynb # Muon-specific ZBW mixing + pie chart generation
โ โโโ quark_zbw_mixing.ipynb # Quark mixing + N_k sensitivity sweep
โโโ src/
โ โโโ mixing_calculator.py # Reusable module for fraction calculations
โโโ figures/
โโโ lepton_pie_chart.png # Muon orbital ZBW composition (68.5% eDP)
โโโ quark_pie_chart.png # Up-quark orbital ZBW composition (74% qDP)
โโโ sensitivity_plot.png # Dominant fraction vs. cage size N_k (log scale)
License
This repository uses dual licensing:
- Code and notebooks (including
src/,.ipynbfiles): [MIT License](LICENSE) โ permissive for reuse and modification - Scientific content (preregistration text, figures, explanations, interpretations): [Creative Commons Attribution 4.0 International (CC-BY 4.0)](LICENSE-CC-BY-4.0.md) โ requires attribution for derivatives
This ensures code is freely shareable while scientific outputs get proper credit.
For the broader 600-cell study, see the parent directory:
https://github.com/Hyperphysics-Institute/CPP/tree/main/standard_model_emergence_in_the_600-cell_lattice/
Ecosystem Map
Where this paper sits in the CPP framework โ connections to other derivations and topics.
🗺 Interactive ecosystem map โ coming in Phase 3
Block diagrams, mind maps, flow charts, and outlines showing this paper's relationships.
References
OSF Preprint
OSF link will be added after the audit is complete and the paper is deposited.
External References
AI-generated reference list linking to supporting literature โ coming in Phase 4 (enrichment layer).
Media & Coverage
🎬 YouTube dramatization and media links โ coming soon
Version History
Journal Articles
Based on this paper
No journal submissions yet. This section will be updated when formal publications reference this work.