Intrinsic-Resonance-Holography-

HarmonyOptimizer Numerical Methods & Fixed-Point Transparency

This note makes the numerical workflow for locating and characterizing the Cosmic Fixed Point fully explicit and reproducible. It documents the algorithms, truncation scheme, regulator assumptions, and projection operators used in the publicly available codebase, with runnable examples.

Code Locations

No external datasets are required; all calculations are derived from the analytical beta functions and solved with open-source SciPy/Numpy routines.

Numerical Algorithms (public API)

Task API Method
Evaluate β-functions BetaFunctions.evaluate(...) One-loop Wetterich truncation (IRHv18 Eq. 1.13)
Solve for fixed point find_fixed_point() scipy.optimize.fsolve on β=0
Integrate RG flow integrate_rg_flow(...) scipy.integrate.solve_ivp (RK45) with user-supplied span
Stability analysis StabilityAnalysis.compute_stability_matrix() / .compute_eigenvalues() Analytic Jacobian projection onto {λ̃, γ̃, μ̃}
Certified C_H compute_C_H_certified() Closed-form ratio 3λ̃/2γ̃ with stored 12+ decimal value

Truncation and Projection

Reproduction Examples

Run from the repo root:

cd python
export PYTHONPATH=$(pwd)/src
python - <<'PY'
from irh.core.v18.rg_flow import (
    find_fixed_point,
    integrate_rg_flow,
    StabilityAnalysis,
    compute_C_H_certified,
)

# Fixed point solve (β=0)
fp = find_fixed_point()
print("Fixed point couplings:", fp.lambda_star, fp.gamma_star, fp.mu_star)
print("C_H:", fp.C_H)

# RG trajectory toward IR
traj = integrate_rg_flow((60.0, 90.0, 120.0), t_span=(0, -6), num_points=25)
print("Final couplings (IR):", traj.couplings_final)

# Stability and projection
analysis = StabilityAnalysis(fp).full_analysis()
print("Eigenvalues:", analysis["eigenvalues"])
print("Operator classes:", analysis["operator_classifications"])

# Certified universal exponent
print("Certified C_H payload:", compute_C_H_certified())
PY

Other Key Computational Modules

Each module is fully contained in python/src/irh/core/v18/ and exercised by the public tests in python/tests/v18/. No hidden datasets or proprietary binaries are used.