Curved One Way Gekrümmt in einer Weise, nicht in der anderen
The One-Sidedness of the Universe as Topological Charge: the Screw on Every Rung, the Sum of All Curvatures, and Eternity as Winding Protection
Abstract
This paper assembles, into one foundation, three sentences spoken in one week. The universe is curved in one way, not in the other — like a flat sheet laid over one of two spheres, nestling against the one it chose. The sum of all curvatures is the curvature of the universe — matter does not create curvature but concentrates it, and the total is untouchable. And the question this series began with on its cosmic rung — what is the screw that flattens rotation curves without dark matter? — turns out to be the same fact read at the top of
state_octonion_group_audit.py — state_octonion_group_audit
A. COMPOSITION ALGEBRA |xy|^2 = |x|^2 |y|^2
worst deviation over 2000 random pairs = 8.53e-14 OK
B. IMAGINARY UNITS e_i^2 = -1 (i=1..7)
['-1', '-1', '-1', '-1', '-1', '-1', '-1'] OK
C. NON-ASSOCIATIVE BUT ALTERNATIVE
associator (e1 e2)e4 - e1(e2 e4) : |.|^2 = 4.000 -> non-associative OK
alternativity (e_i e_i)e_j = e_i(e_i e_j): max |assoc| = 0.00e+00 OK (alternative)
D. THE CAPSTONE ARITHMETIC (computed from the algebra, not asserted)
dim Der(O) = 14 (expected 14 = dim G2) OK
dim { D in Der(O) : D e7 = 0 } = 8 (expected 8 = dim SU(3)) OK
coset dimension 14 - 8 = 6 (expected 6 = S^6)
E. REPRESENTATION CONTENT — what the algebra gives BEYOND the dimensions
e7 annihilated by all 8 generators (the singlet 1): residual 2.8e-16 OK
commutant of the 8 generators on the 6-space: dim = 2 (2 = {I, J} => complex type)
the invariant J satisfies J^2 = -1.000 * I (=-1 => the 6 real dims ARE 3 complex)
=> branching of the 7 imaginary octonions under the stabilizer:
7 = 1 (+) 3 (+) 3bar — a quark colour triplet, for free.
========================================================================
WHAT IS ESTABLISHED, AND WHAT IS NOT (read before citing this script)
========================================================================
ESTABLISHED by the algebra alone:
* the GLOBAL automorphism group of O is G2 (dim 14);
* fixing one imaginary axis leaves the GLOBAL subgroup SU(3) (dim 8);
* the 7 imaginary units branch as 1 + 3 + 3bar — the colour triplet
appears with no extra input. The algebra PERMITS colour with economy.
NOT established — these remain physical postulates, not consequences:
(i) AXIS SELECTION. G2 is transitive on the unit imaginary octonions
(S^6): no axis is algebraically preferred. Choosing one as the
'colour shutter' is a physical assumption.
(ii) GLOBAL -> LOCAL. A stabilizer is a rigid symmetry; gauging it into
a spacetime-local interaction (connection, gluons, covariant
derivative) is the gauge principle — a separate physical input.
(iii)DYNAMICS. The count fixes neither the Yang-Mills action, nor the
coupling g_s, nor why only quarks carry the charge.
The octonion supplies the KINEMATIC skeleton of colour; the interaction
is added by hand. This script proves the skeleton, and only the skeleton.
# -*- coding: utf-8 -*-
"""Verification for the State Octonion / Neutron Decay as Octonion Algebra notes.
Cayley's theorem ends the ladder of normed division algebras at the octonions,
so the series insists everything must close inside O. This script builds the
octonions by Cayley-Dickson doubling of the quaternions and audits, numerically,
the claims the capstone rests on:
(A) it is a valid composition algebra: |xy| = |x||y| (norm multiplicative)
(B) the seven imaginary units square to -1
(C) it is NON-associative but ALTERNATIVE
associator (xy)z - x(yz) is nonzero, but antisymmetric (vanishes when
any two arguments coincide) -- the exact amount of failure O is allowed
(D) THE CAPSTONE ARITHMETIC, computed not asserted:
dim Der(O) = 14 = dim G2 (the automorphisms of O)
dim { D in Der(O) : D e7 = 0 } = 8 = dim SU(3) (colour = stabilizer
of one imaginary axis) -> the coset is S^6 (14 - 8 = 6)
(E) the 7 imaginary units branch as 1 + 3 + 3bar under that SU(3): the quark
colour triplet appears for free.
HONESTY (printed in full at the end): this establishes the GLOBAL group and
the representation SKELETON only. Axis selection, the global->local gauge
step, and the Yang-Mills dynamics are physical postulates, NOT consequences
of the dimension count. The algebra permits colour with economy; it does
not force it. See Furey, Dixon, Baez for the octonion-Standard-Model program.
"""
import numpy as np
# --- quaternion multiplication (basis 1,i,j,k as 4-vectors) ---------------
def qmul(a, b):
a0,a1,a2,a3 = a; b0,b1,b2,b3 = b
return np.array([
a0*b0 - a1*b1 - a2*b2 - a3*b3,
a0*b1 + a1*b0 + a2*b3 - a3*b2,
a0*b2 - a1*b3 + a2*b0 + a3*b1,
a0*b3 + a1*b2 - a2*b1 + a3*b0])
def qconj(a): return np.array([a[0], -a[1], -a[2], -a[3]])
# --- octonions by Cayley-Dickson: o = (p,q), two quaternions --------------
def omul(x, y):
p, q = x[:4], x[4:]; r, s = y[:4], y[4:]
# (p,q)(r,s) = (p r - conj(s) q, s p + q conj(r))
lo = qmul(p, r) - qmul(qconj(s), q)
hi = qmul(s, p) + qmul(q, qconj(r))
return np.concatenate([lo, hi])
E = [np.eye(8)[i] for i in range(8)] # e0=1, e1..e7 imaginary
def norm2(x): return float(np.dot(x, x))
# --- structure constants e_i e_j = sum_k M[i,j,k] e_k --------------------
M = np.zeros((8,8,8))
for i in range(8):
for j in range(8):
M[i,j] = omul(E[i], E[j])
# --- (A) composition algebra ---------------------------------------------
rng = np.random.default_rng(0)
worst = 0.0
for _ in range(2000):
x = rng.standard_normal(8); y = rng.standard_normal(8)
worst = max(worst, abs(norm2(omul(x,y)) - norm2(x)*norm2(y)))
print("A. COMPOSITION ALGEBRA |xy|^2 = |x|^2 |y|^2")
print(f" worst deviation over 2000 random pairs = {worst:.2e} "
f"{'OK' if worst < 1e-9 else 'FAIL (wrong CD convention)'}")
# --- (B) imaginary units square to -1 ------------------------------------
sq = [omul(E[i], E[i])[0] for i in range(1,8)]
print("\nB. IMAGINARY UNITS e_i^2 = -1 (i=1..7)")
print(f" {['%.0f'%s for s in sq]} {'OK' if all(abs(s+1)<1e-12 for s in sq) else 'FAIL'}")
# --- (C) non-associative but alternative ---------------------------------
def assoc(x,y,z): return omul(omul(x,y),z) - omul(x,omul(y,z))
na = norm2(assoc(E[1],E[2],E[4]))
alt = max(norm2(assoc(E[i],E[i],E[j])) for i in range(1,8) for j in range(1,8))
print("\nC. NON-ASSOCIATIVE BUT ALTERNATIVE")
print(f" associator (e1 e2)e4 - e1(e2 e4) : |.|^2 = {na:.3f} -> non-associative "
f"{'OK' if na>0.1 else 'FAIL'}")
print(f" alternativity (e_i e_i)e_j = e_i(e_i e_j): max |assoc| = {alt:.2e} "
f"{'OK (alternative)' if alt<1e-9 else 'FAIL'}")
# --- (D) THE CAPSTONE: dim Der(O) and the stabilizer of one axis ----------
# A derivation D (8x8 real matrix) satisfies Leibniz for every basis pair:
# D(e_i e_j) = D(e_i) e_j + e_i D(e_j)
# component p: sum_k M[i,j,k] D[p,k] - sum_m D[m,i] M[m,j,p] - sum_m D[m,j] M[i,m,p] = 0
# Linear in the 64 entries of D. Build the constraint matrix, count its null space.
def der_basis(extra_fixed=None):
"""Return (dim, [8x8 basis derivations]) via the null space of the Leibniz
constraints (optionally also requiring the vector e_a to be annihilated)."""
rows = []
for i in range(8):
for j in range(8):
for p in range(8):
row = np.zeros((8,8))
for k in range(8): row[p,k] += M[i,j,k]
for m in range(8): row[m,i] -= M[m,j,p]
for m in range(8): row[m,j] -= M[i,m,p]
rows.append(row.flatten())
if extra_fixed is not None: # require D(e_a) = 0
for p in range(8):
row = np.zeros((8,8)); row[p,extra_fixed] = 1.0
rows.append(row.flatten())
A = np.array(rows)
U, s, Vt = np.linalg.svd(A)
tol = max(A.shape) * s[0] * 1e-12
rank = int((s > tol).sum())
null = Vt[rank:] # rows spanning the null space
return null.shape[0], [v.reshape(8,8) for v in null]
d_full, _ = der_basis()
d_stab, gens_su3 = der_basis(extra_fixed=7)
print("\nD. THE CAPSTONE ARITHMETIC (computed from the algebra, not asserted)")
print(f" dim Der(O) = {d_full} (expected 14 = dim G2) "
f"{'OK' if d_full==14 else 'FAIL'}")
print(f" dim {{ D in Der(O) : D e7 = 0 }} = {d_stab} (expected 8 = dim SU(3)) "
f"{'OK' if d_stab==8 else 'FAIL'}")
print(f" coset dimension 14 - 8 = {d_full-d_stab} (expected 6 = S^6)")
# --- (E) REPRESENTATION CONTENT: does a quark (the 3) actually appear? -----
# The stabilizer acts on the 7 imaginary octonions. Branch that rep. e7 is
# fixed (a singlet). On its 6-dim orthogonal complement span(e1..e6) the 8
# generators act; if that real 6-space carries an invariant complex structure
# J (J^2 = -1 commuting with all generators), then 6_real = 3_complex: the
# fundamental of SU(3). We test it by computing the commutant.
idx = [1,2,3,4,5,6]
G6 = [g[np.ix_(idx, idx)] for g in gens_su3] # generators on the 6-space
# e7 annihilated? (the singlet)
sing = max(abs(g[:,7]).max() for g in gens_su3)
# commutant: real 6x6 M with M G - G M = 0 for all generators
C = []
for g in G6:
for a in range(6):
for b in range(6):
row = np.zeros((6,6))
row[a,:] += g[:,b] # (M g)_{ab} = sum_c M_ac g_cb
row[:,b] -= g[a,:] # (g M)_{ab} = sum_c g_ac M_cb
C.append(row.flatten())
sC = np.linalg.svd(np.array(C), compute_uv=False)
tolC = 36 * sC[0] * 1e-10
comm_dim = 36 - int((sC > tolC).sum())
# extract the non-identity commutant element and test J^2 = -1
Uc, sc, Vtc = np.linalg.svd(np.array(C))
nullC = [v.reshape(6,6) for v in Vtc[int((sc>tolC).sum()):]]
J = None
for Mmat in nullC:
Msym = Mmat - np.trace(Mmat)/6*np.eye(6) # remove the identity part
if np.linalg.norm(Msym) > 1e-6:
J = Msym/np.linalg.norm(Msym)*np.sqrt(6); break
j2 = float(np.linalg.norm(J@J + (np.trace(J@J)/-6.0)*np.eye(6)*-1)) if J is not None else -1
Jsq_scalar = float(np.trace(J@J)/6) if J is not None else 0.0
print("\nE. REPRESENTATION CONTENT — what the algebra gives BEYOND the dimensions")
print(f" e7 annihilated by all 8 generators (the singlet 1): residual {sing:.1e} "
f"{'OK' if sing<1e-9 else 'FAIL'}")
print(f" commutant of the 8 generators on the 6-space: dim = {comm_dim} "
f"(2 = {{I, J}} => complex type)")
print(f" the invariant J satisfies J^2 = {Jsq_scalar:+.3f} * I "
f"(=-1 => the 6 real dims ARE 3 complex)")
print(f" => branching of the 7 imaginary octonions under the stabilizer:")
print(f" 7 = 1 (+) 3 (+) 3bar — a quark colour triplet, for free.")
print("\n" + "="*72)
print("WHAT IS ESTABLISHED, AND WHAT IS NOT (read before citing this script)")
print("="*72)
print(""" ESTABLISHED by the algebra alone:
* the GLOBAL automorphism group of O is G2 (dim 14);
* fixing one imaginary axis leaves the GLOBAL subgroup SU(3) (dim 8);
* the 7 imaginary units branch as 1 + 3 + 3bar — the colour triplet
appears with no extra input. The algebra PERMITS colour with economy.
NOT established — these remain physical postulates, not consequences:
(i) AXIS SELECTION. G2 is transitive on the unit imaginary octonions
(S^6): no axis is algebraically preferred. Choosing one as the
'colour shutter' is a physical assumption.
(ii) GLOBAL -> LOCAL. A stabilizer is a rigid symmetry; gauging it into
a spacetime-local interaction (connection, gluons, covariant
derivative) is the gauge principle — a separate physical input.
(iii)DYNAMICS. The count fixes neither the Yang-Mills action, nor the
coupling g_s, nor why only quarks carry the charge.
The octonion supplies the KINEMATIC skeleton of colour; the interaction
is added by hand. This script proves the skeleton, and only the skeleton.""")
1Three Sentences, One Paper
The particle paper of this series ended phase one: mass exists — the knot was computed. The stiffness note paid the last rented constant by showing the Skyrme term is the curvature energy the formalism had carried all along. What opens now is phase two: not whether the knot exists, but what it does — spin, charge, momentum, the facade derived. And at the threshold of phase two, three sentences were spoken in conversation, each simple enough for a child and none of them innocent: The universe is curved in one way, not in the other — a sheet laid over one of two spheres nestles against the one it chose. We have this universe; whether there are others is of no concern. And the sum of all curvatures is the curvature of the universe. This paper is the demonstration that these sentences, taken literally, are load-bearing: they bear directly on the chirality of the weak interaction (a hint, not yet a derivation — §8.1), they promote the third postulate from axiom toward consequence, and they identify the screw that this series found first at the cosmic rung — the quaternion screw, whose scale
2The Two Spheres
In four dimensions, a rotation is not what three-dimensional intuition expects. The antisymmetric two-forms — the objects curvature is made of — form a six-dimensional space that splits under the Hodge star into two three-dimensional eigenspaces:
Λ² = Λ²₊ ⊕ Λ²₋ , *R = +R on Λ²₊ , *R = −R on Λ²₋
The unit spheres of these two halves are literally two spheres. And the splitting is not one curiosity among many; it is the same splitting in four different languages, each of which this series has already met: A general four-dimensional rotation turns two orthogonal planes at once; when the two angles are equal it is isoclinic, and there are exactly two families — and Hamilton's algebra generates them: q → aq is left-isoclinic, q → qb is right-isoclinic. The two screws of the quaternion are the two spheres of curvature are the two chiral factors of the rotation group. One object, four names. One point of craftsmanship, and it is the place where this series's oldest choice pays — stated with the precision it deserves, because the words are easy to cross. Time in this framework does not sit on one of the quaternion's imaginary units: those three are space. It sits on the quaternion's real axis, as an imaginary value — W = iτ. The quaternion's own frame (W, x, y, z) therefore carries the plain Euclidean norm W² + x² + y² + z², and in that signature the Hodge star squares to +1: the two spheres are real objects. Only when W is read out in physical time does the norm become −τ² + x² + y² + z² — Minkowski, the light cone bought with one letter — and in that reading the star squares to −1 and the spheres turn complex. So the framework did not get lucky here, and it did not cheat: what field theory performs as a closing trick (the Wick rotation to Euclidean signature, where its instantons live) is here the first postulate — the Euclidean, two-sphere world is the native one, and Lorentzian language is its τ-reading. (Flag: the translation of every following statement into that reading is standard but must be done with care; this is bookkeeping, not physics, and is noted once here.) The sentence 'the universe is curved in one way, not in the other' now has an exact meaning: the curvature two-form of this universe lies in one of the two halves. The sheet nestles against one sphere. The other sphere is empty. Figure 1. The two spheres — the unit spheres of Λ²₊ and Λ²₋, equally the two SU(2) factors, the two isoclinic senses, the two Hopf fibrations. The sheet (red) nestles against one; the other is empty. 'Curved one way' is the statement that this universe's curvature occupies a single half.
3The Economy of Nestling
Why one sphere, and not a little of each? Because nestling is cheap, and the cheapness is a theorem. For a fiber with a winding (a nonzero topological charge), split the curvature into its two halves and compare the total curvature energy with the signed difference: ∫ ( |R₊|² + |R₋|² ) ≥ | ∫ ( |R₊|² − |R₋|² ) | = | topological charge | The right-hand side cannot be changed by any smooth rearrangement — it is the winding itself (§4). The left-hand side is what the configuration costs. The inequality is an identity of squares, and equality holds exactly when one of the two halves vanishes: the curvature is entirely self-dual or entirely anti-self-dual. Carrying the same winding with both spheres partly occupied is carrying it more expensively — every unit moved onto the second sphere raises the cost by two units while the winding stays fixed (Figure 2). Now let P2 speak: there is no force, only curvature, and curvature is tension, and tension seeks relaxation. A universe that must carry its winding — and it must; the winding is conserved — relaxes to the floor of the inequality, and the floor is touched only one-sidedly. The nestling is not a choice made at some moment by some agency; it is the resting state of a wound thing. The one bit that phase two's chirality question kept demanding — who chose left? — is hereby retired: nothing chose. A wound universe at rest is one-sided, the way a dropped chain at rest is at the floor. Which side gets the name 'left' is convention (§8 returns to this and dissolves the residue of the question). Flag, honestly: for Yang–Mills fibers this is the celebrated instanton bound, proved and saturated (Belavin–Polyakov–Schwartz–Tyupkin). For the full metric the analogous bookkeeping exists — the Euler and Pontryagin integrals and the Hitchin–Thorpe inequality that bounds one by the other — and points the same way, but the gravitational case carries subtleties (the energy is not simply |Riem|², and Lorentzian gravity is not a compact gauge theory) that this paper does not pretend to have settled. The economy argument is established for the fibers on which the weak conclusion of §8 rests, and conjectural in exactly the stated sense for the metric as a whole. Figure 2. The economy of nestling. At fixed winding p₁, the total curvature energy is bounded below by the winding itself and meets the bound only when the second sphere is empty. Tension relaxation (P2) drives a wound universe onto one sphere: one-sidedness is the ground state of being wound, not a decision.
4The Sum of All Curvatures
The second sentence — the sum of all curvatures is the curvature of the universe — is, on a closed two-dimensional world, a theorem with a name: Gauss–Bonnet. The integral of the curvature over the whole closed sheet is 2π times its Euler number: a topological invariant. No dynamics, no condensation, no catastrophe can change it. A knot that condenses here — a mass, a concentration of curvature — borrows from the sheet: condensing here is flattening there, and the books close on the same total, always. In four dimensions the invariants take a quadratic form, and the one that matters for this paper is Pontryagin's:
p₁ ∝ ∫ tr( R ∧ R ) = ∫ ( |R₊|² − |R₋|² )
Read it slowly, because it closes the circle of §§2–3: the topological charge of the universe is the difference of the two sphere-occupations. 'Curved one way' is not merely the sign of something — the one-sidedness is the conserved winding. The sentence of §2 (the sheet nestles against one sphere), the sentence of §3 (nestling is cheapest), and the present sentence (the sum is invariant) are one sentence: the topological charge of the universe is its one-sidedness, and nestling is the cheapest way to carry it. (Flag: in the author's two-dimensional image the sum is linear in the curvature; in four dimensions the invariants are quadratic. The structure — total fixed by topology, matter merely redistributing — carries over exactly; the bookkeeping is that of p₁, not of a naive integral of K. Stated once, here.) This series has often pointed to a suggestive relation here, and it must be stated with exactly the right weight — neither more nor less — because it is easy to over-read. With the Hubble rate fixing R =
5No Unfolding: Eternity as Winding Protection
Now ask the question that the first of the three sentences invites: could the universe be unfolded — flattened out into a Cartesian space, every curvature ironed away? Locally, Gauss already forbids it without damage: curvature is intrinsic (Theorema Egregium); no flattening of a genuinely curved patch preserves its distances — the sheet must stretch or tear. But the global answer is stronger and cleaner: flat space has zero topological charge, and this universe's charge is nonzero and conserved. Unfolding is not difficult, expensive, or unlikely. It is forbidden — forbidden the way tearing is forbidden when only smoothing is allowed. The consequence deserves its own paragraph, because it changes the status of a postulate. P3 — the universe static and eternal, the stage forever, the play ticking — has been an axiom of this series since the first paper. It now reads as something better: The universe cannot decay for the same reason the proton cannot: it is a knot, and its winding number is conserved. The same theorem that pins B = 1 in the computed Skyrmion pins the universe in being. Eternity is not a decree; it is topological protection — the top rung of the same staircase of floors that catches every collapse further down. (Flag: this requires the global topology to be closed with nonzero charge. The GM/Rc² = ½ relation of §4 is consistent with a closed, self-sealed whole, but — being a definitional identity, not an audit — it cannot serve as evidence for that assumption; the promotion of P3 is therefore from 'axiom' to 'consequence of an assumption that remains an assumption,' and honesty requires the sentence be said this way.) Is there, then, no unfolding anywhere? There is — and we have known it all along under another name. When an electron meets a positron, a left winding meets a right winding, and the pair unfolds: annihilation is local unfolding, the borrowed curvature returned to the sheet as radiation. Unfolding is permitted wherever winding meets counter-winding; the invariant survives because the pair carried zero net charge. Only the whole finds no partner. The universe is the one winding left over — which is, perhaps, the shortest description of it this series owns.
6The Only Flat Room: the Map in the Head
And yet the flat, Cartesian, timeless room the question imagines does exist — in exactly two places, and their identity is the point of this section. Mathematically, it is the tangent space: at every point of the curved world hangs its flat local map, and the object that draws the map is the first object of this series's field-equations note — the frame quaternion θ, the vielbein, whose entire profession is to project the curved reality onto flat axes, point by point. Physics computes on flat backgrounds so successfully not because the world is flat but because θ hands every observer a flat chart of their immediate neighborhood. The chart exists everywhere; the whole territory fits on no chart — that is §5 in one sentence. Cognitively, it is the brain. The note on chasing shadows argued that the human brain is a Cartesian simultaneity instrument — it can feel quaternions but never picture them, and it perceives the world as flat snapshots. A simultaneity slice is precisely an unfolded patch: the world pressed flat onto one instant, with no advance in it. So the answer to 'could the universe be unfolded?' is: no — but we do it anyway, every waking second, and call the result intuition. The unfolded universe is real as the observer's map and only as the observer's map. And note what vanishes on that map: time. In this framework time is not an axis that exists on its own; it is the turning of the windings — the shutter's tick, the Compton clock. Unfold every winding and nothing turns; nothing turns, nothing ticks; nothing ticks, no time. A flat Cartesian space is necessarily a timeless one — which is exactly why the flattening instrument in the skull cannot picture time and pictures a 'block' or a 'flow' instead, and why the quaternion, which carries the turning in its own algebra, can only be trusted, never seen. The author's oldest methodological sentence and this paper's newest geometrical one are the same sentence.
7The Screw and Its Shadow
Now the hand itself. A rotation alone has no hand: a spin is a pseudovector, and a mirrored galaxy is the same galaxy seen from the other side — the S-spiral on the photograph is a Z-spiral from across the room. Chirality begins only where rotation couples to advance: the screw (Chasles: every rigid motion is one). And in this framework the advance of the universal screw is along the axis no photograph contains: W = iτ. The shutter is a double rotation — a turning in a spatial plane locked to a march along the time axis — and of the two planes of a double rotation, a simultaneity slice contains exactly one. The snapshot sees the circle, never the hand (Figure 3). This is why the observational literature on cosmic handedness has spent fifteen years in contested claims and failed reproductions: it attempts to read a four-dimensional pseudoscalar off two-dimensional simultaneity slices — letter-counting on photographs, shadow-chasing in the exact, technical sense of this series's note on shadows. The instrument cannot carry the signal cleanly. What can carry it is stated in §8. Figure 3. The screw: rotation in a spatial plane locked to advance along W = iτ. The snapshot plane (gray) contains the circle only — of the double rotation's two planes, the simultaneity slice holds one, and the hand lives in the coupling. The dotted mirror screw is the other Hopf family: the empty sphere of Figure 1.
8The Census and the Selection Rule
If the hand is the sign of the universe's own curvature (§§2–4), it is chosen once, at the top, and every knot condensing inside this space inherits it — P1 gives all knots the same time axis, so all inherit the same screw. The inheritance can now be traced rung by rung, and it turns two famous embarrassments into one rule.
81 The weak rung: the one-sided SU(2), and how far it reaches
P2: there is no force, only curvature. §§2–4: the curvature of this universe lives in one self-dual SU(2) factor. That much is solid geometry — one SU(2) is singled out, its anti-self-dual partner carries no curvature. But here the honest line must be drawn, because it is the most tempting place in the paper to overreach. The geometry does not by itself deliver the rest of the weak interaction: that this SU(2) is gauged, that matter sits in chiral representations under it, that its dynamics are the electroweak theory's, or that no right-handed neutrino state exists. Each is a further physical assumption. So the appealing sentences — the weak interaction is left-handed because the universe is; V−A as the address of the cosmic curvature; the right-handed neutrino not missing but 'objectless,' a coil around an empty sphere — are offered as exactly that, a reading, not a derivation: a self-dual SU(2) singled out by curvature does not, on its own, gauge itself, choose chiral fermion content, or forbid a ν_R. The geometry gives a strong hint about why one handedness is preferred; it does not, by itself, supply the chiral gauge theory that would make the hint into V−A. The hint is real and it is suggestive; it is not yet a proof, and this section will not pretend otherwise.
82 The selection rule, and two 'problems' that dissolve
Which fibers feel the screw? The screw's hand lives in the coupling of spatial turning to the shutter's advance — so a symmetry can feel it only if it moves the shutter axis. That mechanism is the solid part; what it is applied to comes in a gradient of security, and the difference must be stated plainly, because a careful reader will and should test whether the applications are being sold as equal. What is solid: the selection-rule mechanism itself, together with the fact (§§2–4) that one self-dual SU(2) is geometrically singled out. The first reading — the weak and EM rungs. Electromagnetism, a U(1) rotating about the shutter axis, fixes it and is parity-clean; the weak SU(2) is the one-sided curvature and so tilts the axis maximally — V−A. These are the most directly geometric readings, but still readings, not derivations: as §8.1 stressed, turning 'one SU(2) is singled out' into a gauged chiral interaction with no ν_R needs representation and gauge assumptions the curvature split does not supply. The second reading — the colour rung — is more conditional still, needing everything the weak rung needs and, on top of that, an octonion identification: that the strong SU(3) is the stabilizer of one octonion axis (true of the algebra — Aut(𝕆) = G₂, and fixing one imaginary axis leaves exactly SU(3), with the seven imaginary units branching1 ⊕ 3 ⊕ 3̄, the quark triplet, all confirmed numerically in Quantum physics/state_octonion_group_audit.py), and that the fixed axis is the shutter axis. The algebra supplies only the kinematic skeleton; it does not select the axis (
83 The census
One observable is identical on every rung: the pseudoscalar of spin against advance, ⟨S·(direction of advance)⟩. On the bottom rungs it has been measured for seventy years without being read as a rung of anything: The near-maximal helicity of weakly produced neutrinos and the handedness of the biomolecule are the same pseudoscalar, read at the bottom of
84 The falsifier, sharpened by the author's own objection
The top-rung entry is the live test, and the author's instinct — astronomy chases shadows — makes it sharper, not weaker. Because the advance direction at the cosmic rung is the radial infall of metric D, radial for every observer, the framework requires a monopole: every observer, in every sky direction, sees the same small excess ⟨S·r̂⟩ ≠ 0 — an isotropic pseudoscalar, tied to no axis. One honest qualification, drawn from the series' own Bookkeeping note: the universe is not perfectly axis-free. It carries a tiny net spin — the Bookkeeping note computes a Kerr parameter a = 6×10⁻¹¹, so (through that note's relation Ω_H = a·
85 Two gifts at the margin
The matter excess. If matter is the left-wound knot and antimatter the right-wound, the universe's matter excess is the same one bit — not the thermal residue of a baryogenesis epoch (which P3 never had), but the standing expression of which way this universe turns. Excess and CP-violation cease to be cause and effect; they are two readings of one helix. And where big-bang cosmologies must explain away the domain walls that any epoch of discrete choice would have frozen in (Kibble), an eternal universe has no walls because it had no epoch: it is one domain by eternity. The dissolved question. A mirror universe — the sheet on the other sphere — would be indistinguishable from within: its inhabitants would also call their screw 'left,' also build L-proteins, also write this paper. 'Left' is a name; only the relative hand of two universes could be a fact, and they never meet. The question 'why left and not right?' is thereby a pseudo-question — what is physical is the one-sidedness, and that is the theorem of §3. The author's verdict on other universes — mir egal — is not a shrug but the correct disposal of the only question in this chain that turns out to be about labels.
9What Is Claimed, and What Is Not
Borrowed, with priority named loudly: the Λ² splitting and the four-language dictionary of §2 (Cartan, Hopf, and the standard geometry of SO(4)); the instanton bound of §3 (Belavin–Polyakov–Schwartz–Tyupkin); Gauss–Bonnet, Pontryagin, Theorema Egregium, Hitchin–Thorpe (§§4–5); Chasles's screw; parity violation and neutrino helicity (Lee and Yang; Wu; Goldhaber); the homochirality problem and its weak-interaction energy difference (Pasteur to the modern literature); the
10The Sentence
The universe is curved in one way, not in the other, and that one-sidedness is its conserved winding — cheapest carried on one sphere (which is why it rests there), impossible to unfold (which is why it is eternal), invisible in any snapshot (which is why astronomy chases its shadow), and inherited by every knot condensed within it (which is why one handedness runs, plausibly, through the weak decays and life's molecules alike, why the proton keeps its promise, and why the only flat and timeless room in existence is the map behind the reader's eyes — the geometric hand a hint the particle rungs must still be shown to obey, not a debt this paper claims to have paid).
References
É. Cartan, on the decomposition of the rotation group; H. Hopf, Math. Ann. 104, 637 (1931) — the fibration; M. Chasles (1830) — the screw theorem; C. F. Gauss, Disquisitiones generales circa superficies curvas (1827) — Theorema Egregium; Gauss–Bonnet and Chern on total curvature; L. S. Pontryagin, on characteristic classes; A. A. Belavin, A. M. Polyakov, A. S. Schwartz and Yu. S. Tyupkin, Phys. Lett. B 59, 85 (1975) — the self-dual bound; N. Hitchin, J. Diff. Geom. 9, 435 (1974) and J. A. Thorpe — the inequality; T. D. Lee and C. N. Yang, Phys. Rev. 104, 254 (1956); C. S. Wu et al., Phys. Rev. 105, 1413 (1957); M. Goldhaber, L. Grodzins and A. W. Sunyar, Phys. Rev. 109, 1015 (1958) — the neutrino's hand; L. Pasteur (1848), and the modern homochirality literature on the parity-violating energy difference; M. Milgrom, Astrophys. J. 270, 365 (1983) — the acceleration scale; E. Mach, The Science of Mechanics; D. W. Sciama, MNRAS 113, 34 (1953); T. W. B. Kibble, J. Phys. A 9, 1387 (1976) — domains; M. J. Longo, Phys. Lett. B 699, 224 (2011) and L. Shamir (2012–2024) — the contested handedness claims, cited as contested; and the papers and notes of this series (the Postulates; the Frame Quaternion note; The Quaternion Screw; The Delay That Makes G — the GM/Rc²=½ consistency relation; The Floors of Condensation; From Space Quaternion to Particle; The Stiffness Is the Curvature; Chasing Shadows — the Cartesian instrument; The Three Storeys). Verification script: curved_one_way_check.py. (Citations from memory; the literature-verification pass applies to every one.) Acknowledgment: assembly, verification and drafting by machine (Claude, Anthropic), in conversation. The three sentences this paper is built on — the sheet on one of two spheres, the indifference to other universes, and the sum of all curvatures — are the author's, spoken in German; the paper is their English state quaternion. The geometry honored belongs to Gauss, Hamilton, Cartan, Hopf, and to Pasteur, who saw the hand first and never learned where it came from.
11Verification
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.
curved_one_way_check.py — curved_one_way_check
1. THE SCREW'S SCALE (conjectural: the 1/(2e) factor is posited, not derived)
H = 2.1843e-18 /s, cH = 6.5484e-10 m/s^2
a0 = cH/2e = 1.2045e-10 m/s^2 (rotation-curve fitted scale ~ 1.2e-10)
NB: cH/2pi = 1.0422e-10 fits comparably -- the order-unity
denominator is fitted, not explained. Label: conjectural relation.
2. GM/Rc^2 = 1/2 (DEFINITIONAL identity, not an audit)
R = c/H = 1.373e+26 m, rho_crit = 8.533e-27 kg/m^3, M = 9.242e+52 kg
GM/(R c^2) = 0.500000 (tautology: rho_c is DEFINED to give this)
physical content is only the separate OBSERVATION that the real
universe sits near critical density; this line proves no horizon.
3. THE ECONOMY OF NESTLING (fixed winding p1 = 1)
|R-|^2 |R+|^2 total energy floor |p1|
0.00 1.00 1.00 1.00 <- one-sided: bound saturated
0.25 1.25 1.50 1.00
0.50 1.50 2.00 1.00
1.00 2.00 3.00 1.00
4. THE CENSUS
chemistry rung: PVED/bond ~ 2.5e-20 (the trace the weak floor feeds up)
strong rung: theta_QCD < 1e-10 (neutron EDM bound) -> read as prohibition
neutrino: helicity = -1 always (Goldhaber 1958) -> maximal
cosmos: <S*r_hat> monopole predicted, dipole forbidden -- unmeasured
# -*- coding: utf-8 -*-
"""Verification for 'Curved One Way' (July 2026). Pure standard library.
1. The screw's scale: a0 = cH/2e vs the fitted rotation-curve scale
-- a CONJECTURAL relation; the 1/(2e) factor is posited, NOT derived.
2. GM/Rc^2 = 1/2: a DEFINITIONAL identity at critical density and R=c/H,
shown as a consistency relation -- NOT an independent audit.
3. The BPS economy: E_total >= |p1|, equality iff one-sided (demonstrated)
4. The census numbers: PVED vs bond energy; the theta_QCD bound
SCOPE: items 1 and 2 are not verifications of a derivation. Item 1 checks
that a POSITED formula lands near the measured scale (like MOND's cH/2pi, the
factor is fitted, not explained). Item 2 is algebra: critical density is
DEFINED as rho_c = 3H^2/8piG, which makes GM/Rc^2 = 1/2 with R=c/H a tautology;
its only physical content is the separate OBSERVATION that the real universe
sits near critical density. Neither is evidence that the universe IS a
Schwarzschild horizon -- only that the framework is consistent with the data.
"""
import math
# --- 1. the quaternion screw scale ---------------------------------------
c = 2.998e8 # m/s
H = 67.4 * 1000 / 3.0857e22 # Hubble rate in 1/s
a0 = c * H / (2 * math.e) # e = Euler's number (2.71828...), not the charge
print("1. THE SCREW'S SCALE (conjectural: the 1/(2e) factor is posited, not derived)")
print(f" H = {H:.4e} /s, cH = {c*H:.4e} m/s^2")
print(f" a0 = cH/2e = {a0:.4e} m/s^2 (rotation-curve fitted scale ~ 1.2e-10)")
print(f" NB: cH/2pi = {c*H/(2*math.pi):.4e} fits comparably -- the order-unity")
print(f" denominator is fitted, not explained. Label: conjectural relation.")
# --- 2. the half-audit ----------------------------------------------------
# rho_crit = 3H^2/(8 pi G); M = rho_crit * (4/3) pi R^3; R = c/H
# => GM/(R c^2) = 1/2 identically. Shown numerically:
G = 6.674e-11
R = c / H
rho_c = 3 * H**2 / (8 * math.pi * G)
M = rho_c * (4/3) * math.pi * R**3
print("2. GM/Rc^2 = 1/2 (DEFINITIONAL identity, not an audit)")
print(f" R = c/H = {R:.3e} m, rho_crit = {rho_c:.3e} kg/m^3, M = {M:.3e} kg")
print(f" GM/(R c^2) = {G*M/(R*c**2):.6f} (tautology: rho_c is DEFINED to give this)")
print(f" physical content is only the separate OBSERVATION that the real")
print(f" universe sits near critical density; this line proves no horizon.")
# --- 3. the BPS economy ---------------------------------------------------
# fix the winding p1 = |R+|^2 - |R-|^2 = 1; scan occupation of the second sphere
print("3. THE ECONOMY OF NESTLING (fixed winding p1 = 1)")
print(" |R-|^2 |R+|^2 total energy floor |p1|")
for x in [0.0, 0.25, 0.5, 1.0]:
print(f" {x:6.2f} {x+1:6.2f} {2*x+1:10.2f} {1.0:8.2f}"
+ (" <- one-sided: bound saturated" if x == 0 else ""))
# --- 4. the census --------------------------------------------------------
print("4. THE CENSUS")
pved = 1e-19 # eV, parity-violating energy difference, amino-acid scale (from memory)
bond = 4.0 # eV, a typical covalent bond
print(f" chemistry rung: PVED/bond ~ {pved/bond:.1e} (the trace the weak floor feeds up)")
print(f" strong rung: theta_QCD < 1e-10 (neutron EDM bound) -> read as prohibition")
print(f" neutrino: helicity = -1 always (Goldhaber 1958) -> maximal")
print(f" cosmos: <S*r_hat> monopole predicted, dipole forbidden -- unmeasured")