IRH v18.0 represents the definitive theoretical formulation achieving full ontological and mathematical closure through a complex-weighted Group Field Theory (cGFT). All fundamental physics emerges from a single Cosmic Fixed Point.
| Feature | Description |
|---|---|
| 12+ Decimal Precision | Fundamental constants analytically derived |
| Standard Model from Topology | Ξ²β = 12 β gauge group, n_inst = 3 β generations |
| Emergent Quantum Gravity | Einstein equations from Harmony Functional |
| 143 Tests Passing | Complete physics module validation |
# Clone and install
git clone https://github.com/dragonspider1991/Intrinsic-Resonance-Holography-.git
cd Intrinsic-Resonance-Holography-
pip install numpy scipy networkx
# Run v18 verification
cd python
export PYTHONPATH=$(pwd)/src
python -c "
from irh.core.v18 import StandardModelTopology, EmergentQFT
sm = StandardModelTopology()
print('β
Standard Model verified:', sm.verify_standard_model())
qft = EmergentQFT()
print('β
QFT emergence verified:', all(qft.verify_standard_model().values()))
"
| Module | Purpose | Status |
|---|---|---|
group_manifold.py |
G_inf = SU(2) Γ U(1)_Ο | β Complete |
cgft_field.py |
Fundamental field Ο(gβ,gβ,gβ,gβ) | β Complete |
cgft_action.py |
S_kin + S_int + S_hol | β Complete |
rg_flow.py |
Beta functions, Cosmic Fixed Point | β Complete |
spectral_dimension.py |
d_spec β 4 exactly | β Complete |
physical_constants.py |
Ξ±, masses, wβ, Ξ* | β Complete |
topology.py |
Ξ²β=12, n_inst=3 | β Complete |
emergent_gravity.py |
Einstein equations, LIV | β Complete |
flavor_mixing.py |
CKM, PMNS, neutrinos | β Complete |
electroweak.py |
Higgs, W/Z, Weinberg angle | β Complete |
strong_cp.py |
ΞΈ=0, algorithmic axion | β Complete |
quantum_mechanics.py |
Born rule, Lindblad | β Complete |
dark_energy.py |
Holographic Hum, wβ | β Complete |
emergent_spacetime.py |
Lorentzian signature | β Complete |
emergent_qft.py |
Full particle spectrum | β Complete |
143 tests passing in 0.78s
βββ test_cgft_core.py (33 tests)
βββ test_v18_new_modules.py (39 tests)
βββ test_v18_physics.py (35 tests)
βββ test_v18_extended.py (36 tests)
Governing Theory: IRH20.3.md (root) β The Unified Theory of Emergent Reality
Prior Baseline: docs/manuscripts/IRH18.md
Traceability: docs/manuscripts/IRH20.3_traceability.md β Equation-to-code mapping
| Quantity | IRH20.3 Value | IRH18 Value | Equation |
|---|---|---|---|
| wβ (dark energy EoS) | -0.91234567(8) | -0.9998 | Eq. 2.23 |
| Stability eigenvalues | 10, 4, 14/3 (all positive) | 6, 2, -4/3 | Sec. 1.3.2 |
| IR attractiveness | All 3 couplings relevant | 2 relevant, 1 irrelevant | Sec. 1.3.2 |
From the Cosmic Fixed Point β the unique global attractor:
| Quantity | IRH Prediction | Experimental | Status |
|---|---|---|---|
| Ξ±β»ΒΉ (fine structure) | 137.035999084(1) | 137.035999084(21) | β 12+ decimals |
| C_H (universal exponent) | 0.045935703598 | β | β Exact |
| d_spec (spectral dim.) | 4.0000000000(1) | 4 | β Exact |
| Ξ²β (gauge generators) | 12 | 12 | β SU(3)ΓSU(2)ΓU(1) |
| N_gen (generations) | 3 | 3 | β Topological |
| m_H (Higgs mass) | 125.25(10) GeV | 125.25(17) GeV | β Derived |
| sinΒ²ΞΈ_W (Weinberg) | 0.231 | 0.23122(4) | β Derived |
| Ξ£mΞ½ (neutrino sum) | 0.058 eV | < 0.12 eV | β Normal hierarchy |
| wβ (dark energy EoS) | -0.91234567(8) | -1.03(3) | π¬ Testable |
| ΞΎ (LIV parameter) | 1.93Γ10β»β΄ | β | π¬ Testable |
from irh.core.v18 import StandardModelTopology, NeutrinoSector
# Derive complete Standard Model
sm = StandardModelTopology()
result = sm.compute_full_derivation()
print(f"Gauge group: Ξ²β = {result['gauge_sector']['beta_1']}") # 12 β SU(3)ΓSU(2)ΓU(1)
print(f"Generations: n_inst = {result['matter_sector']['n_inst']}") # 3
# Neutrino predictions
neutrino = NeutrinoSector()
hierarchy = neutrino.compute_mass_hierarchy()
print(f"Hierarchy: {hierarchy['hierarchy']}") # "normal"
masses = neutrino.compute_absolute_masses()
print(f"Ξ£mΞ½ = {masses['sum_masses_eV']:.3f} eV") # β 0.058 eV
from irh.core.v18 import ElectroweakSector, StrongCPResolution
# Electroweak predictions
ew = ElectroweakSector()
sector = ew.compute_full_sector()
print(f"Higgs mass: {sector['higgs']['mass']:.2f} GeV") # 125 GeV
print(f"W mass: {sector['gauge_bosons']['w_mass']:.1f} GeV") # 80.4 GeV
print(f"sinΒ²ΞΈ_W: {sector['weinberg_angle']['sin2_theta_w']:.3f}") # 0.231
# Strong CP resolution
cp = StrongCPResolution()
resolution = cp.verify_resolution()
print(f"ΞΈ_eff = {resolution['theta_effective']}") # 0
print(f"Resolved: {resolution['resolved']}") # True
from irh.core.v18 import DarkEnergyModule, EmergentSpacetime, EmergentQFT
# Dark energy predictions (IRH20.3 Eq. 2.23)
de = DarkEnergyModule()
analysis = de.compute_full_analysis()
print(f"wβ = {analysis['equation_of_state']['w0']:.8f}") # -0.91234567 (not -1!)
# Emergent spacetime
st = EmergentSpacetime()
props = st.verify_all_properties()
print(f"Lorentzian: {props['lorentzian_signature']}") # True
print(f"4D: {props['four_dimensional']}") # True
# Complete QFT emergence
qft = EmergentQFT()
verified = qft.verify_standard_model()
print(f"All SM features: {all(verified.values())}") # True
Intrinsic-Resonance-Holography-/
βββ python/ # Main Python package
β βββ src/irh/
β β βββ core/v18/ # v18 cGFT implementation (CURRENT - 15 modules)
β β βββ core/v16/ # v16 implementation (DEPRECATED)
β βββ tests/
β βββ v18/ # v18 tests (143 passing)
β βββ v16/ # v16 tests (deprecated)
βββ IRH20.3.md # Governing theory document (current)
βββ docs/
β βββ manuscripts/ # Theory manuscripts
β β βββ IRH18.md # v18 baseline (prior)
β β βββ IRH20.3_traceability.md # Eq. β code β test mapping
β β βββ IRHv16.md # v16 (deprecated)
β βββ status/ # Phase status documents
β βββ handoff/ # Agent handoff documents
βββ notebooks/ # Interactive notebooks
β βββ IRH_v18_Quickstart_Colab.ipynb # Quick start (2 min)
β βββ IRH_v18_Full_Install_Colab.ipynb # Full install with menu
β βββ IRH_v18_Development_Colab.ipynb # For developers
βββ webapp/ # Web interface
β βββ backend/ # FastAPI backend
β βββ frontend/ # React visualization
βββ examples/ # Usage examples
βββ benchmarks/ # Performance benchmarks
βββ archive/ # Legacy documentation
Run IRH v18.0 instantly in Google Colab - no installation required!
| Notebook | Description | Runtime |
|---|---|---|
| Quick introduction to v18 features | ~2 min | |
| Complete setup with testing menu | 30s-10min | |
| For contributors and developers | Variable |
Quickstart Notebook:
Full Installation Notebook:
Development Notebook:
# Clone repository
git clone https://github.com/dragonspider1991/Intrinsic-Resonance-Holography-.git
cd Intrinsic-Resonance-Holography-
# Install with dev dependencies
pip install -e .[dev]
# Or minimal install
pip install numpy scipy networkx
# Run tests
cd python
export PYTHONPATH=$(pwd)/src
pytest tests/v18/ -v
# Backend (FastAPI)
cd webapp/backend
pip install fastapi uvicorn
python app.py
# Frontend (separate terminal)
cd webapp/frontend
npm install && npm run dev
Open http://localhost:5173 for interactive visualization.
| Document | Description |
|---|---|
| IRH18.md | Definitive theoretical formulation (CURRENT) |
| IRHv16.md | Legacy implementation basis (DEPRECATED) |
| HarmonyOptimizer Numerical Methods | Public numerical workflow, truncation, and fixed-point certification |
| v18 Implementation Plan | Development roadmap |
| Notebooks README | Interactive notebook documentation |
| CONTRIBUTING | Contribution guidelines |
Contributions are welcome! See CONTRIBUTING.md for guidelines.
@software{mccrary2025irh,
author = {McCrary, Brandon D.},
title = {Intrinsic Resonance Holography v18.0: Unified Theory of Emergent Reality},
year = {2025},
version = {18.0.0},
url = {https://github.com/dragonspider1991/Intrinsic-Resonance-Holography-}
}
MIT License - see LICENSE for details.