Perturbation Theory of the Tension Medium — Part VI: The Projection Theorem. Series Finale.
Everything needed was already on the table. From Part I: waves along a fall line travel at
One theorem separated the theory from judgment: how the crystal’s radial music writes angular scale. This note derives it, and it was in our hands all along. The crystal is anisotropic — waves run at light speed along the fall lines but at the slow phonon speed across them — and that ratio is a magnifying lever: the duct’s radial ladder of standing waves, quantized with the quarter offset by the wall’s two mirrors, is projected into the sky as an ascending, arithmetic, quarter-offset ladder in angle: the measured form of the acoustic peaks, produced structurally for the first time in five campaigns. The spacing fixes one combination of two anchors, and one branch of the calibration closes on itself with no tuning: the duct depth comes out at 430 Mpc — the wall’s own thickness, already derived from Saha’s equation — while the phonon speed comes out at the galaxy rotation scale, the screw’s own calibration;
1The Theorem
Now the step that eluded five campaigns, one sentence long. In an eternal, driven, damped crystal, each mode’s mean excitation goes inversely with its frequency squared — so the angular spectrum is a sum over the radial ladder of terms whose transverse knee sits where c_T·k_h catches up with
ℓ_n = (
2The Two Branches, and the One That Closes On Itself
3What the Finale Does Not Claim
4The Series, Closed
Six parts, one arc. What is the medium? A bundle of radial fall lines — read off its own stress signature. Why is it invisible? Zero active mass: its silence and its stability are one fact. Why does anything happen at all? The lines repel through the mode the galaxies already demanded, and crystallize. Is the crystal real? Frozen with seventy-four orders to spare; its speed lands on the velocities of cosmic matter; its statics are excluded by number; its existence stands one spectral measurement from judgment. And the drum? The anisotropy of the crystal projects the wall’s quarter-offset radial ladder into the sky — the measured form, with branch B closing on the wall’s own derived thickness and the screw’s own calibrated speed. The medium of this cosmology entered the series as an apology — “an exotic tension medium, a real tension to acknowledge.” It leaves as the theory’s most articulate object: the flesh of the mollusk, the carrier of the Flimmer, the skeleton of the galaxies’ spacing, the bearer of the sky’s music, spun — if the quarantine ever lifts — at the summit where the forces are one. Whatever nature’s verdict, the books are complete: every step computed, every defeat recorded, every claim wearing its flag. It is all one — and it is all written down.
References
The documents of this series (Parts I–V; the campaign chronicle; the Saha expedition; the dark-matter paper; the Allgemeine Feldtheorie), and the scripts beside them (constitutive.py, vofd.py, part3.py, part4calc.py, part5calc.py, part6calc.py). External anchors as cited in Parts I–V. (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.
part6calc.py — part6calc
mapping: ell = k_h[1/Mpc] x 13.61 (check: k_h=2pi/0.389 -> ell=220)
=== THE PROJECTION THEOREM ===
The crystal is anisotropic: waves along the lines travel at c (string waves);
across the lattice at c_T. Dispersion: w^2 = c^2 k_r^2 + c_T^2 k_h^2.
Radial quantization in the duct (hard wall + soft floor): k_r,n = (n - 1/4) pi/D.
Equal-time occupation ~ 1/w^2 gives the angular spectrum as a sum of terms with
KNEES at k_h,n = (c/c_T) k_r,n : the radial ladder, MAGNIFIED by the anisotropy
ratio c/c_T, appears in angle as an ASCENDING ARITHMETIC QUARTER-OFFSET ladder:
ell_n = (c/c_T) * (n - 1/4) * (pi/D) * r/(2(1+z))
— the measured form (295(n-0.23)), produced structurally for the first time
in five campaigns. In the standard plotting convention l(l+1)C_l, knees are bumps.
=== THE ONE CALIBRATED COMBINATION ===
Spacing 295 fixes only the product: (c/c_T)*(1/D):
branch A: c_T = sqrt(a0 d*) = 1225 km/s
-> D = 35.5 Mpc ; y-distortion = 1.7e-05
branch B: c_T = screw's galactic speed ~ 101 km/s
-> D = 430.3 Mpc ; y-distortion = 1.1e-07
branch A: D ~ 35 Mpc — order of the Saha steep slice (T e-fold/52 = 82 Mpc, factor 2.3);
y = 1.7e-5: at/above FIRAS — lives or dies with PIXIE-class data.
branch B: D = 428 Mpc = THE WALL exactly; c_T = the galaxy rotation speed scale
(the screw's own calibration!); y = 1.1e-7: safely under FIRAS.
THE y-MEASUREMENT DISCRIMINATES THE BRANCHES: spectral distortion vs duct depth,
one measurement, closed loop. The knife-edge of Part V resolves into a selector.
=== THE LADDER AND ITS END ===
n=1: ell = 221 n=2: ell = 516 n=3: ell = 811 n=4: ell = 1106 n=5: ell = 1401 n=6: ell = 1696 n=7: ell = 1991
measured: 220, 537, 810, ~1120, ~1450 ... damping tail beyond ~1500:
the ladder ends where the radial mode outruns the coupling (n_max = w_cut*D/(pi*c));
5-8 audible peaks for cutoffs in the natural scattering band — heights and the
second peak's +4% remain for the post-series programme (weights, baryon physics).
import numpy as np
c=2.998e8; Mpc=3.086e22
r=29975.0; zp=1101.0
map_l=r/(2*zp)*2*np.pi/(2*np.pi) # ell = k_h[1/Mpc] * r/(2(1+z))... verify:
# ell = pi*r/(lambda*(1+z)), lambda=2pi/k_h -> ell = k_h * r/(2(1+z))
K=r/(2*zp)
print(f"mapping: ell = k_h[1/Mpc] x {K:.2f} (check: k_h=2pi/0.389 -> ell={2*np.pi/0.389*K:.0f})")
print()
print("=== THE PROJECTION THEOREM ===")
print("The crystal is anisotropic: waves along the lines travel at c (string waves);")
print("across the lattice at c_T. Dispersion: w^2 = c^2 k_r^2 + c_T^2 k_h^2.")
print("Radial quantization in the duct (hard wall + soft floor): k_r,n = (n - 1/4) pi/D.")
print("Equal-time occupation ~ 1/w^2 gives the angular spectrum as a sum of terms with")
print("KNEES at k_h,n = (c/c_T) k_r,n : the radial ladder, MAGNIFIED by the anisotropy")
print("ratio c/c_T, appears in angle as an ASCENDING ARITHMETIC QUARTER-OFFSET ladder:")
print(" ell_n = (c/c_T) * (n - 1/4) * (pi/D) * r/(2(1+z))")
print("— the measured form (295(n-0.23)), produced structurally for the first time")
print("in five campaigns. In the standard plotting convention l(l+1)C_l, knees are bumps.")
print()
print("=== THE ONE CALIBRATED COMBINATION ===")
print("Spacing 295 fixes only the product: (c/c_T)*(1/D):")
for name,cT in [("branch A: c_T = sqrt(a0 d*) = 1225 km/s",1.225e6),
("branch B: c_T = screw's galactic speed ~ 101 km/s",1.01e5)]:
D=(c/cT)*np.pi*K/295
y=3*(cT/c)**2/3
print(f" {name}")
print(f" -> D = {D:.1f} Mpc ; y-distortion = {y:.1e}")
print(" branch A: D ~ 35 Mpc — order of the Saha steep slice (T e-fold/52 = 82 Mpc, factor 2.3);")
print(" y = 1.7e-5: at/above FIRAS — lives or dies with PIXIE-class data.")
print(" branch B: D = 428 Mpc = THE WALL exactly; c_T = the galaxy rotation speed scale")
print(" (the screw's own calibration!); y = 1.1e-7: safely under FIRAS.")
print(" THE y-MEASUREMENT DISCRIMINATES THE BRANCHES: spectral distortion vs duct depth,")
print(" one measurement, closed loop. The knife-edge of Part V resolves into a selector.")
print()
print("=== THE LADDER AND ITS END ===")
for n in range(1,8):
print(f" n={n}: ell = {295*(n-0.25):.0f}",end="")
print()
print("measured: 220, 537, 810, ~1120, ~1450 ... damping tail beyond ~1500:")
print("the ladder ends where the radial mode outruns the coupling (n_max = w_cut*D/(pi*c));")
print("5-8 audible peaks for cutoffs in the natural scattering band — heights and the")
print("second peak's +4% remain for the post-series programme (weights, baryon physics).")