Nothing Matters

The QFT

Resources

Contact

Simulations


The Quantum Family Tree Theory makes a testable prediction: mutual information between particles should decay monotonically with genealogical distance, regardless of the specific quantum dynamics at each splitting event. The simulations below test this prediction directly.

All source code is available on GitHub.

Method

We construct quantum family trees at depths 2 through 4 using pure statevector simulation with NumPy. Each tree begins with a Bell pair. Each generation applies CNOT gates (parent to both children), a Hadamard gate (decoherence), and random unitary operators drawn from the Haar measure (quantum dynamics). After construction, ancestor qubits are traced out, leaving only leaf-state density matrices.

Mutual information I(A;B) = S(A) + S(B) − S(A,B) is computed between all leaf pairs, grouped by genealogical distance. Von Neumann entropy uses log base 2 (bits). For a pure Bell pair, MI = 2.0 bits; the observed sibling MI of 1.0 bits reflects genuine reduction from splitting and decoherence, not a normalization artifact.

Quantum Family Tree diagram at depth 2
Figure 1: Quantum family tree at depth 2. Siblings (ng=2) share a direct parent; cousins (ng=4) share a grandparent. Gate operations shown at each split.

System sizes

DepthLeavesQubitsMemoryTreesTime/Tree
246<1 MB200<1s
3814<1 MB100~2s
4163017 GB10~9 hrs

Depth 4 simulations ran on a Google Cloud n1-highmem-16 VM (104 GB RAM) over approximately 90 hours total. Each of the 10 trees used different Haar-random unitaries at every splitting event.

Results: Depth 4

Key finding

d = 0.854 × ln(1/MI) + 1.88   |   R² = 0.993

Distance scales logarithmically with inverse entanglement. This is the holographic relationship. The Ryu-Takayanagi formula (S = A/4G) connects entanglement entropy to geometric area — our result demonstrates this connection emerging naturally from a quantum genealogical structure.

ngMean MIStd DevClassicalRelationship
21.0000.0001.000Siblings
40.0760.0480.500Cousins
60.0060.0100.2502nd Cousins
80.0010.0020.1253rd Cousins

Where ng is the genealogical distance (total hops through the tree via the lowest common ancestor). The "Classical" column shows the naive kinship prediction (1/2)k−1 where k = ng/2. Observed decay is steeper by a factor of approximately 1.68, following MI = (1/2)1.678·ng.

MI decay vs genealogical distance
Figure 2: Mutual information vs. genealogical distance at depth 4. (a) Linear scale showing dramatic decay. (b) Log scale revealing exponential structure — observed decay (blue) is steeper than classical kinship (gray dashed).

The holographic fit

Functional FormBest Fit
d = a ln(1/MI) + ba=0.854, b=1.880.993
MI = (1/2)α ngα = 1.6780.993
MI = a · d−pp = 6.250.999

The power-law fit achieves marginally higher R² on these four data points, but we prefer the logarithmic form on theoretical grounds: it maps directly to the Ryu-Takayanagi formula connecting entanglement entropy to geometric area. The power law may reflect effective small-N behavior that converges to logarithmic scaling at larger tree depths.

Holographic distance-entanglement fit
Figure 3: Genealogical distance scales linearly with ln(1/MI), consistent with Ryu-Takayanagi holographic entropy scaling. R² = 0.993.

Ensemble universality

Each tree in the ensemble uses different random unitary operators at every splitting event, drawn from the Haar measure. Yet kinship decay emerges consistently: monotonic decay was observed in 80% of depth 4 trials, 82% at depth 3, and 100% at depth 2.

This universality is the strongest result. It demonstrates that the pattern is structural — arising from tree topology itself — rather than dependent on specific quantum dynamics. Whatever the unitaries are, whatever physics governs each splitting event, the genealogical structure alone is sufficient to produce emergent geometry.

DepthLeavesQubitsMonotonic %Trees
246100%200
381482%100
4163080%10

The role of decoherence

An important control result: without random unitaries, the quantum tree produces uniform mutual information between all leaf pairs regardless of kinship distance. The genealogical structure is encoded in the state but hidden by symmetry. Random unitaries — modeling decoherence — break this symmetry and expose the genealogical hierarchy.

Decoherence is therefore not merely why space "feels classical." It is the mechanism that makes kinship distance visible as geometric distance. Without decoherence, the family tree exists but cannot be read. This may be the conjecture's most surprising finding.

Next steps

Current limits: 30 qubits (16 leaves) is a toy universe. To observe true geometric emergence — curvature, topology, dimensional structure — we need hundreds of leaves. The path forward involves GPU-accelerated simulation (cuStateVec) and tensor network approximations (Matrix Product States), which could enable depths of 20 or beyond.

The immediate priority is determining whether the decay exponent α ≈ 1.678 is universal across different gate sets, branching factors, and initial conditions, or whether it is an artifact of our specific circuit. If universal, it may be a fundamental constant of quantum genealogy.

Reproduce these results: All simulation code is at github.com/kevin-nothing-matters/QFT. Depths 2 and 3 run on any laptop in seconds. Depth 4 requires 104 GB RAM. Results JSON files included.