Perturbation Theory of the Tension Medium — Part IV: The Music, Not the Photograph
1. The Photograph, Excluded
Part III found that the fall lines repel and crystallize, giving the sky a preferred spacing at last. Part IV asks the next honest questions and answers three of them. First: is the drumbeat simply the photograph of the crystal? No — computed and excluded: a lattice’s direct image would put peaks at the ratios 1 : 1.73 : 2, and the sky says 1 : 2.44 : 3.68. The drum is not the crystal’s picture but its music: the phonons — the crystal’s vibrations — standing in the wall’s duct, exactly where the quarter-offset ladder already pointed. Second: does the known astronomy of cosmic strings kill a lattice this heavy? No — all three canonical string signatures vanish in this configuration, each nulled by a commitment the theory had already made for other reasons: lensing is nulled by orientation (we look down the lines’ barrels), temperature steps by staticity (a frozen crystal), clustering by single-booking. Third: will the bundle actually freeze? The criterion is stated with its one missing normalization — and it hands the theory its final, over-constrained trial: one mediator charge must simultaneously freeze the lattice, set the drum’s spacing, and drive the galaxies’ rotation. Three unknowns, three measured judges. Every symbol introduced before use.
We sit at the center; the fall lines run outward; so the sky views the crystal exactly face-on — in cross-section, down the barrels. If the spots were simply the image of the lattice (bright at the lines, dim between), the statistics of sizes would show the lattice’s characteristic spacings: for a triangular crystal viewed in many randomly oriented patches, rings at the ratios 1, √3, 2, √7, 3 — that is, 1 : 1.73 : 2 : 2.65 : 3. The measured drum: 1 : 2.44 : 3.68. Mismatch — the static photograph is excluded. This is a result, not a setback: it tells us which observable the lattice supplies. A crystal has two voices — its picture and its vibrations — and with the picture ruled out, the drum must be the vibrations: the crystal’s phonons (its collective trembling), standing in the duct between the wall’s two mirrors. And standing waves between one hard mirror and one soft turning point carry exactly the (n − 1/4) ladder that the measured peaks follow to within a few percent (the campaign chronicle). The statics said no; the dynamics had already said almost.
2Why the Astronomy of Strings Does Not Kill the Lattice
A tension of Gμ ≈ 7×10⁻⁶ is heavy by cosmic-string standards, and the standard literature would object on three counts. Each objection dies on a commitment this theory made earlier, for its own reasons — which is either remarkable coherence or remarkable luck, and the quarantine column holds the verdict. Lensing, nulled by orientation. A string splits the images of background objects — by 38 arcseconds at this tension — but only for light crossing it. Deflection scales with the crossing angle, and our light runs parallel to the lines: every sightline travels down a barrel, from the wall to the center, along the very threads. A radial hedgehog is lensing-invisible to its own center. (The lattice would lens transverse light violently — a prediction searching for an observable, noted for Part V.) Temperature steps, nulled by staticity. Moving strings drag characteristic step-like discontinuities across the microwave sky (the Kaiser–Stebbins effect) — the sharpest standard string bound. A crystallized, frozen bundle has no transverse motion. No steps. Clustering, nulled by single-booking. Wiggly strings gravitate and seed structure — the third standard bound. Part II’s sharpened commitment (temperature is period, not stored energy) switches wiggle gravity off; it was adopted to balance the books, and it disarms this bound as a by-product.
3Will It Freeze? The Criterion and the Trial
4The State of the War
Four parts, and the shape of the whole is visible. The medium is identified (fall lines); its silence is explained (zero active mass — the same fact as its stability); its shimmer is named (the Flimmer, transverse waves at
References
Powder diffraction of 2D lattices (standard); N. Kaiser and A. Stebbins, Nature 310, 391 (1984); one-component-plasma freezing (Γ ≈ 130–137); A. Vilenkin and E. P. S. Shellard (1994); and the documents of this series (Parts I–III; the campaign chronicle; the dark-matter paper; script: part4calc.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.
part4calc.py — part4calc
=== IV.1 STATICS TEST: is the drum the lattice's photograph? ===
Looking along the lines, the sky images the lattice face-on; randomly oriented
crystal domains give a powder pattern: rings at the reciprocal-lattice radii.
Triangular lattice ratios: 1, sqrt3, 2, sqrt7, 3 = [1, np.float64(1.732), 2, np.float64(2.646), 3]
Measured peak ratios: 1, 2.441, 3.682
-> MISMATCH. The static photograph is EXCLUDED: the drum is not the lattice's
picture but its MUSIC — the phonons of the crystal, standing in the wall duct,
which is exactly where the (n - 1/4) quarter-offset ladder already pointed.
=== IV.2 THE THREE STANDARD STRING SIGNATURES, IN THIS CONFIGURATION ===
(a) LENSING: a string splits background images by 8*pi*G*mu/c^2 = 1.85e-04 rad
= 38 arcsec — for light crossing the string TRANSVERSELY.
Our geometry: every sightline runs PARALLEL to the lines (we look down their
barrels from the center). Deflection scales with the crossing angle; parallel
rays feel none. The lattice is lensing-invisible BY ORIENTATION.
(b) KAISER-STEBBINS temperature steps: require strings MOVING transversely;
a frozen crystal has none. Nulled by staticity.
(c) WIGGLE GRAVITY / clustering: nulled by single-booking (Part II).
All three canonical Gmu bounds rest on signatures this configuration lacks;
the standard exclusion of Gmu ~ 7e-6 does not port. (Re-derivation programme
remains owed for subtler channels: quarantine discipline unchanged.)
=== IV.3 CRYSTALLIZATION CRITERION, formulated ===
2D log-repelling lines freeze when Gamma = U_int/(k_B T) > ~130.
At the wall T = 3000 K: k_B T = 4.1e-20 J. Freezing requires the
line-line interaction energy per correlation length to exceed ~5.7e-18 J — a bound
on the screw-charge per unit line length, q_l^2 ln(2) * L_corr > 130 k_B T.
The SAME q_l must reproduce the galaxy screw (a0 = cH scale) — one mediator, two
duties. Cross-constraint: computable once the fiber field equation normalizes q_l;
named for Part V alongside the phonon speed c_T = q_l*sqrt(n)/mu^(1/2)-class relation
that must land the measured spacing 295. Three unknowns (q_l, c_T, D_duct), three
measured numbers (spacing, offset already matched, damping tail): over-constrained
the moment the normalization exists. The theory has volunteered for another trial.
import numpy as np
print("=== IV.1 STATICS TEST: is the drum the lattice's photograph? ===")
print("Looking along the lines, the sky images the lattice face-on; randomly oriented")
print("crystal domains give a powder pattern: rings at the reciprocal-lattice radii.")
print("Triangular lattice ratios: 1, sqrt3, 2, sqrt7, 3 =",
[round(x,3) for x in [1,np.sqrt(3),2,np.sqrt(7),3]])
print("Measured peak ratios: 1, 2.441, 3.682")
print("-> MISMATCH. The static photograph is EXCLUDED: the drum is not the lattice's")
print(" picture but its MUSIC — the phonons of the crystal, standing in the wall duct,")
print(" which is exactly where the (n - 1/4) quarter-offset ladder already pointed.")
print()
print("=== IV.2 THE THREE STANDARD STRING SIGNATURES, IN THIS CONFIGURATION ===")
G=6.674e-11; c=2.998e8; mu=9.9e21
defl=8*np.pi*G*mu/c**2
print(f"(a) LENSING: a string splits background images by 8*pi*G*mu/c^2 = {defl:.2e} rad")
print(f" = {defl*206265:.0f} arcsec — for light crossing the string TRANSVERSELY.")
print(f" Our geometry: every sightline runs PARALLEL to the lines (we look down their")
print(f" barrels from the center). Deflection scales with the crossing angle; parallel")
print(f" rays feel none. The lattice is lensing-invisible BY ORIENTATION.")
print(f"(b) KAISER-STEBBINS temperature steps: require strings MOVING transversely;")
print(f" a frozen crystal has none. Nulled by staticity.")
print(f"(c) WIGGLE GRAVITY / clustering: nulled by single-booking (Part II).")
print(f" All three canonical Gmu bounds rest on signatures this configuration lacks;")
print(f" the standard exclusion of Gmu ~ 7e-6 does not port. (Re-derivation programme")
print(f" remains owed for subtler channels: quarantine discipline unchanged.)")
print()
print("=== IV.3 CRYSTALLIZATION CRITERION, formulated ===")
kB=1.381e-23; Twall=3000.0
print("2D log-repelling lines freeze when Gamma = U_int/(k_B T) > ~130.")
print(f"At the wall T = {Twall:.0f} K: k_B T = {kB*Twall:.1e} J. Freezing requires the")
print("line-line interaction energy per correlation length to exceed ~5.7e-18 J — a bound")
print("on the screw-charge per unit line length, q_l^2 ln(2) * L_corr > 130 k_B T.")
print("The SAME q_l must reproduce the galaxy screw (a0 = cH scale) — one mediator, two")
print("duties. Cross-constraint: computable once the fiber field equation normalizes q_l;")
print("named for Part V alongside the phonon speed c_T = q_l*sqrt(n)/mu^(1/2)-class relation")
print("that must land the measured spacing 295. Three unknowns (q_l, c_T, D_duct), three")
print("measured numbers (spacing, offset already matched, damping tail): over-constrained")
print("the moment the normalization exists. The theory has volunteered for another trial.")