Quantum entanglement
At the smallest scales, particles share correlations that connect their quantum states.

The sequence below follows the manuscript's central intuition. Entanglement forms an information network, the network defines geometry, and environmental decoherence produces the stable classical world.
At the smallest scales, particles share correlations that connect their quantum states.
Entangled systems exchange information, producing dynamic relationships across the network.
The flows form a changing web of quantum information rather than a fixed background.
The distribution of correlations defines effective distance, shape and connectivity.
An imbalance in the informational network changes its effective curvature.
The large-scale structure of the flow is interpreted as geometry, causality and time.
Environmental interaction suppresses coherent branches and stabilises classical geometry.
The framework proposes small signatures in interferometry, cosmology and compact objects.
Physical phenomena arise from states on a Hilbert manifold. Entanglement entropy defines an effective metric, while a complexity-action principle governs the dynamics and their Planck-scale corrections.
Each group preserves the central equations from the manuscript and presents the technical material in clear, continuously visible sections.
The manuscript develops the framework from a density-operator path integral, nonlinear information dynamics, quantum field limits and the recovery of classical geometry.
The partition function is regularised on finite and infinite-dimensional Hilbert manifolds using trace-class constraints and a spectral cutoff.
Variation of the generalised action produces density-matrix evolution and non-perturbative corrections to black hole and cosmological metrics.
Standard Model fields live on a product Hilbert space, with Planck-suppressed corrections applied to propagators and metric perturbations.
Observers are treated as entangled substructures represented through a MERA-like tensor network.
Holographic, de Sitter, inflationary, reheating and pre-inflation terms extend the action across high-energy regimes.
The framework proposes corrections for quark-gluon plasma transport, dark matter coupling and neutron-star interiors.
Environmental tracing and decoherence suppress off-diagonal contributions until classical geometry becomes the effective description.
The manuscript links the cosmological constant to entanglement gradients, gives higher-order entropy stability conditions and propagates uncertainty through selected observables.
These extensions connect entropy corrections, gauge fields, operator-valued geometry, modular flow, spectral triples and speculative information structures.
Higher-order entropy terms act as Planck-suppressed curvature corrections.
Quantum-state backreaction is coupled to gauge dynamics and a Planck-scale thermodynamic potential.
Topological invariants, superposed causal graphs, error-correcting states and temporal correlations extend the information manifold.
The manuscript explores multiverse correlations, entropy as a gauge field, quantum neural generation, phase transitions, game-theoretic optimisation, consciousness and blockchain-like temporal states.
The formal core is expressed through an informational action, Quantum Fisher geometry, metric operators, modular Hamiltonians and a spectral action.
Discreteness is treated as an observer-dependent coarse-graining effect. A cross-universe coupling extends the action across entangled Hilbert manifolds.
The predictions are deliberately shown beside their proposed magnitudes and present detection thresholds. Most remain far below current sensitivity.
Entropy corrections and area-dependent decoherence provide two central observable classes.
Quantum informational curvature modifies primordial tensor spectra and stochastic backgrounds.
Bell bounds, neutrino oscillations, quantum Hall conductivity and high-energy propagation receive Planck-suppressed corrections.
The framework proposes high-multipole CMB shifts and scale-dependent corrections to clustering, lensing, BAO and redshift-space distortions.
Tiny corrections are proposed for photon rings, QGP viscosity, galactic rotation and neutron-star radii.
In decoherent, macroscopic regimes the information manifold is required to converge towards the predictions of general relativity.
The manuscript is explicit that most proposed effects sit many orders of magnitude below present detector sensitivity. The comparison below keeps that constraint visible.
| Observable | QIMG prediction | Detection threshold | Feasibility | Reference instrument |
|---|---|---|---|---|
| GRB photon delay | about 10^-22 s at 100 GeV | about 10^-4 s | Below reach | Fermi LAT |
| GW memory effect | about 10^-35 at 10 Mpc | about 10^-22 | Below reach | LIGO, Virgo |
| CMB B-mode anomaly | about 10^-124 at ell = 1000 | about 10^-5 | Below reach | Planck, CMB-S4 |
| FRB dispersion anomaly | about 10^-33 pc/cm^3 | about 1 pc/cm^3 | Below reach | CHIME, HIRAX |
| Neutron-star radius shift | about 10^-20 m | about 10^-3 m | Below reach | NICER |
| Quantum decoherence | about 10^-30 s^-1 | about 10^-28 s^-1 | Closest target | MAGIS-100 |
| Pulsar timing residual | about 10^-30 s | about 10^-9 s | Below reach | NANOGrav, IPTA |
| Atomic clock shift | about 10^-50 | about 10^-18 | Below reach | DSAC, STE-QUEST |
Each source block is preserved as Python. Pyodide and NumPy load only after the first run, then the result is plotted locally without sending input to a server.
Computes $\\Gamma_{\\text{decoh}}(A) = 2.3 \\times 10^{-29} \\cdot A/10^{-20}$.
Run the preserved Python model to draw this chart.
import numpy as np
area = np.logspace(-21, -19, 21)
gamma = 2.3e-29 * (area / 1e-20)
print("Area (m²) | Γ_decoh (s⁻¹)")
for i in range(len(area)):
print(f"{area[i]:.2e} | {gamma[i]:.2e}")
area_list = area.tolist()
gamma_list = gamma.tolist()Computes $\\delta P_s/P_s^{\\text{GR}} = 2.13 \\times 10^{-123}(1+10^3k^2)$.
Run the preserved Python model to draw this chart.
import numpy as np
k = np.linspace(0.01, 0.2, 20)
base_anomaly = 2.13e-123
rsd_anomaly = base_anomaly * (1 + 1e3 * k**2)
print("k (h/Mpc) | δP_s(k,μ)/P_s^GR(k,μ)")
for i in range(len(k)):
print(f"{k[i]:.3f} | {rsd_anomaly[i]:.2e}")
k_list = k.tolist()
rsd_list = rsd_anomaly.tolist()Computes $\\delta \\xi(r)/\\xi_{\\text{GR}}(r) = 2.13 \\times 10^{-123}(1+0.01r)$.
Run the preserved Python model to draw this chart.
import numpy as np
r = np.linspace(1, 100, 100)
base_anomaly = 2.13e-123
clustering_anomaly = base_anomaly * (1 + 0.01 * r)
print("r (Mpc) | δξ(r)/ξ_GR(r)")
for i in range(len(r)):
print(f"{r[i]:.1f} | {clustering_anomaly[i]:.2e}")
r_list = r.tolist()
clustering_list = clustering_anomaly.tolist()Computes $\\delta C_\\ell^\\kappa/C_\\ell^\\kappa = 2.13 \\times 10^{-123}(1+10^{-3}\\ell)$.
Run the preserved Python model to draw this chart.
import numpy as np
ell = np.linspace(10, 1000, 100)
base_anomaly = 2.13e-123
lensing_anomaly = base_anomaly * (1 + 1e-3 * ell)
print("ℓ | δC_ℓ^κ/C_ℓ^κ")
for i in range(len(ell)):
print(f"{ell[i]:.1f} | {lensing_anomaly[i]:.2e}")
ell_list = ell.tolist()
lensing_list = lensing_anomaly.tolist()Plots $\\delta \\eta_{\\text{QGP}}/\\eta_{\\text{QGP}}$ against plasma temperature.
Run the preserved Python model to draw this chart.
import numpy as np
T = np.linspace(1e11, 1e13, 30) # Temperature range (K)
delta_eta = 1e-40 * (1 + (T - 1e11) / (1e13 - 1e11))
print("T (K) | Δη_QGP / η_QGP")
for i in range(len(T)):
print(f"{T[i]:.2e} | {delta_eta[i]:.2e}")
T_list = T.tolist()
delta_eta_list = delta_eta.tolist()Plots the proposed QIMG correction $\\Delta v$ against galactic radius.
Run the preserved Python model to draw this chart.
import numpy as np
r = np.linspace(1, 100, 50) # Radius in kpc
delta_v = 1e-20 * (1 + 0.1 * (r - 1) / 99)
print("r (kpc) | Δv (m/s)")
for i in range(len(r)):
print(f"{r[i]:.1f} | {delta_v[i]:.2e}")
r_list = r.tolist()
delta_v_list = delta_v.tolist()Plots $\\Delta R$ against neutron-star density.
Run the preserved Python model to draw this chart.
import numpy as np
rho = np.linspace(1e17, 3e18, 50) # Density in kg/m³
delta_R = 1e-20 * (1 + (rho - 1e17) / (3e18 - 1e17))
print("ρ (kg/m³) | ΔR (m)")
for i in range(len(rho)):
print(f"{rho[i]:.2e} | {delta_R[i]:.2e}")
rho_list = rho.tolist()
delta_R_list = delta_R.tolist()Plots $\\Omega_{\\text{GW}}(f)$ across a nanohertz-to-millihertz frequency range.
Run the preserved Python model to draw this chart.
import numpy as np
f = np.logspace(-9, -3, 40)
omega_gw = 1e-10 * (1 + 1e-5 * f / 1e-3)
print("f (Hz) | Ω_GW(f)")
for i in range(len(f)):
print(f"{f[i]:.2e} | {omega_gw[i]:.2e}")
f_list = f.tolist()
omega_gw_list = omega_gw.tolist()Plots $S \\leq 2 + \\gamma L_P^2/r^2$ against separation.
Run the preserved Python model to draw this chart.
import numpy as np
r = np.logspace(-12, -8, 40)
gamma = 1 # order-unity
L_P = 1.616e-35
S = 2 + gamma * (L_P**2) / (r**2)
print("r (m) | S bound")
for i in range(len(r)):
print(f"{r[i]:.2e} | {S[i]:.5f}")
r_list = r.tolist()
S_list = S.tolist()Plots the proposed $\\delta C_\\ell^{BB}$ correction against multipole.
Run the preserved Python model to draw this chart.
import numpy as np
ell = np.linspace(10, 1000, 100)
base_anomaly = 2.13e-123
C_l_GR = 1e-10 * np.ones_like(ell)
bmode = base_anomaly * (1 + 1e-4 * ell**4) * C_l_GR
print("ℓ | δC_ℓ^BB")
for i in range(len(ell)):
print(f"{ell[i]:.1f} | {bmode[i]:.2e}")
ell_list = ell.tolist()
bmode_list = bmode.tolist()Plots $\\Gamma_{\\text{decoh,C\\nu B}}$ against effective area.
Run the preserved Python model to draw this chart.
import numpy as np
A = np.logspace(-22, -13, 50)
gamma = 2.3e-29 * (A / 1e-20)
print("A (m²) | Γ_decoh,CνB (s⁻¹)")
for i in range(len(A)):
print(f"{A[i]:.2e} | {gamma[i]:.2e}")
A_list = A.tolist()
gamma_list = gamma.tolist()Plots timing residuals against the gravitational-wave background density.
Run the preserved Python model to draw this chart.
import numpy as np
omega = np.logspace(-13, -8, 40)
residual = (omega * 1e-8)**0.5 * 1e9
print("Ω_GW | Residual (ns)")
for i in range(len(omega)):
print(f"{omega[i]:.2e} | {residual[i]:.2e}")
omega_list = omega.tolist()
residual_list = residual.tolist()Plots $\\Delta h_{\\text{memory}}$ against distance.
Run the preserved Python model to draw this chart.
import numpy as np
r = np.logspace(0, 4, 40) # 1 to 10,000 Mpc
L_P = 1.616e-35
gamma = 1
delta_h = gamma * L_P**2 / (r * 3.086e22)**2 # r in meters
print("r (Mpc) | Δh_memory")
for i in range(len(r)):
print(f"{r[i]:.1f} | {delta_h[i]:.2e}")
r_list = r.tolist()
delta_h_list = delta_h.tolist()Plots the relative abundance correction against the Hubble parameter.
Run the preserved Python model to draw this chart.
import numpy as np
H = np.logspace(-18, -10, 50)
gamma = 1
L_P = 1.616e-35
f_pbh = 1 + gamma * L_P**2 / H**2
print("H (s⁻¹) | f_PBH correction")
for i in range(len(H)):
print(f"{H[i]:.2e} | {f_pbh[i]:.5f}")
H_list = H.tolist()
f_pbh_list = f_pbh.tolist()Plots the relative energy correction against particle momentum.
Run the preserved Python model to draw this chart.
import numpy as np
p = np.logspace(15, 20, 40) # eV/c
gamma = 1
L_P = 1.616e-35
M_P = 1.22e28 # eV/c²
delta_E = gamma * (L_P**2) * (p**2) / M_P**2
print("p (eV/c) | ΔE/E")
for i in range(len(p)):
print(f"{p[i]:.2e} | {delta_E[i]:.2e}")
p_list = p.tolist()
delta_E_list = delta_E.tolist()Plots the QIMG-induced photon delay against energy.
Run the preserved Python model to draw this chart.
import numpy as np
E = np.linspace(1, 100, 40) # GeV
gamma = 1
L_P = 1.616e-35
M_P = 1.22e28
d = 1e9 * 3.086e16 # 1 Gpc in meters
c = 3e8
delta_t = gamma * L_P**2 * (E*1e9)**2 / M_P**2 * d / c
print("E (GeV) | Δt (s)")
for i in range(len(E)):
print(f"{E[i]:.2f} | {delta_t[i]:.2e}")
E_list = E.tolist()
delta_t_list = delta_t.tolist()Plots the proposed dispersion-measure anomaly against frequency.
Run the preserved Python model to draw this chart.
import numpy as np
omega = np.linspace(0.5, 10, 40) * 1e9 # GHz to Hz
gamma = 1
L_P = 1.616e-35
M_P = 1.22e28
d = 1e9 * 3.086e16 # 1 Gpc in meters
delta_DM = gamma * (L_P**2) * (omega**2) / (M_P**2) * d / 3e8
print("ω (Hz) | ΔDM (pc/cm³)")
for i in range(len(omega)):
print(f"{omega[i]:.2e} | {delta_DM[i]:.2e}")
omega_list = omega.tolist()
delta_DM_list = delta_DM.tolist()Plots the proposed angular deflection against neutrino energy.
Run the preserved Python model to draw this chart.
import numpy as np
E = np.linspace(1, 100, 40) * 1e12 # TeV to eV
gamma = 1
L_P = 1.616e-35
M_P = 1.22e28
delta_theta = gamma * (L_P**2) * (E**2) / (M_P**2)
print("E (eV) | δθ (rad)")
for i in range(len(E)):
print(f"{E[i]:.2e} | {delta_theta[i]:.2e}")
E_list = E.tolist()
delta_theta_list = delta_theta.tolist()Plots the conductivity correction against magnetic field strength.
Run the preserved Python model to draw this chart.
import numpy as np
B = np.linspace(1, 20, 40)
gamma = 1
L_P = 1.616e-35
M_P = 1.22e28
sigma_corr = 1 + gamma * (L_P**2) * (B**2) / (M_P**2)
print("B (T) | σ_xy correction")
for i in range(len(B)):
print(f"{B[i]:.1f} | {sigma_corr[i]:.7f}")
B_list = B.tolist()
sigma_corr_list = sigma_corr.tolist()The proposed distinction is an information-derived metric. QIMG does not begin with strings, spin networks, a conformal boundary or a fitted modification to Newtonian dynamics.
String theory commonly starts from extended objects and compactified dimensions. QIMG instead treats the information manifold as background-independent and dimension-agnostic.
LQG quantises geometry through spin networks. QIMG keeps a continuous Hilbert-manifold formalism and treats observed discreteness as emergent coarse-graining.
QIMG draws from holographic and tensor-network ideas but does not require an anti-de Sitter background or a conformal boundary.
The manuscript derives a metric from entropy curvature and information flow, extending the entropic-gravity intuition into an operator and information-geometric framework.
Modified dynamics are phenomenological. QIMG presents its anomalies as consequences of the entropy-based action rather than empirical curve fitting.
The proposed programme combines precision interferometry, astronomical observations, open numerical tooling and multi-messenger analysis through 2030 and beyond.
Benchmark decoherence models against MAGIS-100 and related atomic platforms.
Develop photon-ring templates for ngEHT and strong-field comparison studies.
Cross-check clustering, weak-lensing, CMB and redshift-space predictions.
Combine LISA, pulsar timing, neutrinos, radio bursts and precision quantum systems.
Convert analytic predictions into reproducible parameter files, synthetic data and instrument-specific likelihoods.
Use NumPy, SciPy, tensor networks and spectral solvers to test stability, scaling and limiting behaviour.
Publish equations, assumptions, uncertainty ranges and simulation notebooks for independent review.
Track the gap between each predicted amplitude and the evolving reach of next-generation instruments.
Evaluate QIMG beside general relativity, effective field theory and established quantum-gravity approaches.
Test whether coarse-graining and decoherence consistently reproduce classical gravitational dynamics.
A concise guide to the manuscript's assumptions, scientific status and terminology.
QIMG proposes that spacetime is not fundamental. It emerges from the information geometry of quantum states, with entanglement entropy and its gradients defining an effective metric.
Gravity is modelled as curvature in an information manifold. The action combines von Neumann entropy, higher-order entropy terms, non-perturbative corrections, curvature coupling and thermodynamic contributions.
The manuscript requires QIMG to approach general relativity in decoherent macroscopic regimes. This recovery is expressed as a limiting condition rather than assumed to be experimentally established.
Most predicted amplitudes are far below current sensitivity. The decoherence target is presented as the nearest proposed test, while many cosmological and compact-object effects remain long-horizon signals.
The manuscript separates its information-geometric core from exploratory extensions such as multiverse entanglement, quantum neural networks and consciousness fields. These sections are hypotheses for further mathematical scrutiny, not confirmed results.
The original NumPy snippets are stored directly in the page. When a run button is selected, Pyodide executes the Python locally and the returned arrays are drawn on a canvas.
Failure to recover classical gravity, mathematical inconsistency in the action or robust observations that exclude its parameter space would count against the framework. Useful tests need declared uncertainty and instrument thresholds.
QIMG is a proposed research framework by Amir Zarandouz. The website presents its derivations, assumptions, simulations and experimental ideas for open evaluation and future development.
Explore the derivations, inspect the preserved Python source and compare each proposed signal with the scale of current experiments.