Perturbation Theory of the Tension Medium — Part V: The Trial’s First Verdicts
1. Verdict One: the Crystal Is Rock
Part IV framed the final trial: one mediator charge, three measured duties. This note lets the first verdicts fall. With the coupling normalized the only way the framework permits — gravitational strength, as the galaxy screw independently demands — the lattice does not merely freeze: it freezes with seventy-four orders of magnitude to spare, a crystal of rock, thermally perfect. Its wave speed follows with no further freedom: c_T = √(
The freezing question (Part IV) needed one normalization: how strongly do fall lines couple to the screw mode? The framework permits only one answer. The mediator is a sector of the frame field — the geometry’s own fiber — and geometry couples at gravitational strength; independently, Judge 1 (the galaxy rotation phenomenology at the
2Verdict Two: the Crystal’s Own Speed — and the Knife-Edge
A crystal’s stiffness and inertia fix its wave speed, with no remaining freedom: c_T = √(
3Verdict Three: the Last Static Voice, Silenced
4The Scoreboard, and the One Theorem
Judge 1 (the galaxies): built into the normalization — the screw drives rotation curves at gravitational strength, as its own paper always claimed. Judge 3 (existence): passed, with 74 orders to spare. Judge 4 — a judge the trial did not know it had — the y-distortion: verdict pending at the knife’s edge, executioner named. Judge 2 (the spacing, 295 with the quarter offset): still hearing evidence, and what it waits for is now exactly one theorem: how the crystal’s radial music writes angular scale through the duct. Everything else — the medium, the charge, the freeze, the speed, the offset, the tension, the scale of its forging — is on the table, stated, numbered, and falsifiable. Part VI is that theorem, and it is the last one.
References
One-component-plasma freezing (Γ ≈ 130); L. Van Hove (1953); D. Fixsen et al. (FIRAS, 1996) — |y| < 1.5×10⁻⁵; PIXIE: A. Kogut et al. (2011); and the documents of this series (Parts I–IV; the campaign chronicle; the dark-matter paper; the Radii of the Worlds; script: part5calc.py). (Citations from memory; the literature-verification pass applies.)
5Verification
The companion scripts, with their recorded output. Each script's docstring states what it establishes and what it does not; the Source tab shows the file itself, unedited.
part5calc.py — part5calc
=== VERDICT 1: does the lattice freeze? (Judge 3, normalized by Judge 1) ===
The mediator is a sector of the frame field: gravitational-strength coupling —
and Judge 1 (the galaxy screw at a0=cH scale) independently demands that strength.
interaction per cell U ~ mu*a0*d*^2 = 1.8e+56 J; k_B T(wall) = 4.1e-20 J
Gamma = 4.3e+75 (freezing needs ~130): FROZEN, with ~74 orders of margin.
Robust to any crudity of the estimate. The crystal is not marginal; it is rock —
which also means: no thermal wander, sharp scales, a nearly perfect lattice.
=== VERDICT 2: the crystal's own wave speed ===
c_T = sqrt(a0 * d*) = 1.22e+06 m/s = 1225 km/s
Three resonances, quarantined as they land:
(a) observed large-scale matter velocities (cluster dispersions, bulk flows):
300-1200 km/s — matter riding the lattice would move at c_T. On the nose.
(b) the 'condensed-matter light speed' of the Radii note (Fermi velocities ~1e6 m/s):
the cosmic lattice runs its family law at the same internal speed class.
(c) FIRAS's taut-fall ceiling (v < ~600 km/s at the photosphere): c_T sits at ~2x —
the wall must jiggle at its phonon speed: KNIFE-EDGE. Compute the y-distortion:
y ~ tau*(c_T/c)^2/3 = 1.7e-05 vs FIRAS bound |y| < 1.5e-5
THE LATTICE PREDICTS A y-DISTORTION AT THE CURRENT MEASUREMENT CEILING.
One knife, two edges: a next-generation spectrometer (PIXIE-class) must SEE it
barely below the bound — or the crystal, as normalized, is dead. A date with
an instrument, named in advance.
=== VERDICT 3: third static mechanism, tested and excluded ===
Zone-boundary (Van Hove) structure of the triangular lattice: k_K/k_M = 2/sqrt(3)
= 1.155 — ratios 1 : 1.155, not the measured 1 : 2.44 : 3.68. EXCLUDED,
joining the powder pattern. All static voices of the crystal are now eliminated;
only the duct-projected dynamics can carry the drum. The missing piece is now exactly
one theorem: HOW THE CRYSTAL'S RADIAL MUSIC WRITES ANGULAR SCALE — Part VI, alone.
import numpy as np
c=2.998e8; kB=1.381e-23; Mpc=3.086e22
mu=9.9e21 # line tension (Part III)
dstar=0.389*Mpc # lattice constant at the wall
a0=1.25e-10 # the screw scale cH/2e (dark-matter paper)
print("=== VERDICT 1: does the lattice freeze? (Judge 3, normalized by Judge 1) ===")
print("The mediator is a sector of the frame field: gravitational-strength coupling —")
print("and Judge 1 (the galaxy screw at a0=cH scale) independently demands that strength.")
U_per_len=mu*a0*dstar # neighbor interaction energy per unit line length
U_cell=U_per_len*dstar # per correlation length ~ d*
Gam=U_cell/(kB*3000)
print(f"interaction per cell U ~ mu*a0*d*^2 = {U_cell:.1e} J; k_B T(wall) = {kB*3000:.1e} J")
print(f"Gamma = {Gam:.1e} (freezing needs ~130): FROZEN, with ~{np.log10(Gam)-2.1:.0f} orders of margin.")
print("Robust to any crudity of the estimate. The crystal is not marginal; it is rock —")
print("which also means: no thermal wander, sharp scales, a nearly perfect lattice.")
print()
print("=== VERDICT 2: the crystal's own wave speed ===")
cT=np.sqrt(a0*dstar)
print(f"c_T = sqrt(a0 * d*) = {cT:.2e} m/s = {cT/1e3:.0f} km/s")
print("Three resonances, quarantined as they land:")
print(f" (a) observed large-scale matter velocities (cluster dispersions, bulk flows):")
print(f" 300-1200 km/s — matter riding the lattice would move at c_T. On the nose.")
print(f" (b) the 'condensed-matter light speed' of the Radii note (Fermi velocities ~1e6 m/s):")
print(f" the cosmic lattice runs its family law at the same internal speed class.")
print(f" (c) FIRAS's taut-fall ceiling (v < ~600 km/s at the photosphere): c_T sits at ~2x —")
print(f" the wall must jiggle at its phonon speed: KNIFE-EDGE. Compute the y-distortion:")
tau=3.0
y=tau*(cT/c)**2/3
print(f" y ~ tau*(c_T/c)^2/3 = {y:.1e} vs FIRAS bound |y| < 1.5e-5")
print(f" THE LATTICE PREDICTS A y-DISTORTION AT THE CURRENT MEASUREMENT CEILING.")
print(f" One knife, two edges: a next-generation spectrometer (PIXIE-class) must SEE it")
print(f" barely below the bound — or the crystal, as normalized, is dead. A date with")
print(f" an instrument, named in advance.")
print()
print("=== VERDICT 3: third static mechanism, tested and excluded ===")
print("Zone-boundary (Van Hove) structure of the triangular lattice: k_K/k_M = 2/sqrt(3)")
print(f"= {2/np.sqrt(3):.3f} — ratios 1 : 1.155, not the measured 1 : 2.44 : 3.68. EXCLUDED,")
print("joining the powder pattern. All static voices of the crystal are now eliminated;")
print("only the duct-projected dynamics can carry the drum. The missing piece is now exactly")
print("one theorem: HOW THE CRYSTAL'S RADIAL MUSIC WRITES ANGULAR SCALE — Part VI, alone.")