-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcascade-series-part4b.tex
More file actions
4150 lines (3692 loc) · 340 KB
/
Copy pathcascade-series-part4b.tex
File metadata and controls
4150 lines (3692 loc) · 340 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\documentclass[12pt,a4paper]{article}
\usepackage[margin=1in]{geometry}
\usepackage{amsmath,amssymb,amsthm}
\usepackage{hyperref}
\usepackage{cascade-xref} % cross-paper \xref machinery (incl. xr-hyper)
\usepackage{enumitem}
\usepackage{booktabs}
\usepackage{graphicx}
\usepackage[normalem]{ulem}
% xr-hyper cross-paper references (must follow hyperref).
% Note: \bibitem{part0} in this paper's bibliography points at Part 0
% (cascade-series-part0), not Part I -- legacy bibliography naming.
% paper23 has no bibitem here but is needed for the in-body \ref to
% Theorem thm:cascade-dirac-descent in Part II=III.
\xrhyperdoc{part0}{cascade-series-part0}
\xrhyperdoc{part2}{cascade-series-part2}
\xrhyperdoc{part23}{cascade-series-part2-equals-3}
\xrhyperdoc{part3}{cascade-series-part3}
\xrhyperdoc{part4a}{cascade-series-part4a}
\xrhyperdoc{part5}{cascade-series-part5}
\newtheorem{theorem}{Theorem}[section]
\newtheorem{proposition}[theorem]{Proposition}
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{definition}[theorem]{Definition}
\newtheorem*{remark}{Remark}
\title{\textbf{The Cascade Series --- Part IVb}\\[6pt]
The Standard Model from the Cascade:\\
Masses, Couplings, and Precision Predictions\\
from the Geometric-Topological Factorization}
\author{RTAC}
\date{March 2026}
\begin{document}
\setlength{\emergencystretch}{3em}
\maketitle
\phantomsection
\label{paperdoc}
\begin{abstract}
The cascade series tests one hypothesis: the infinite-dimensional unit ball, descended to four dimensions, is indistinguishable from our universe. The companion paper [4] derives the Standard Model gauge group $\text{SU}(3) \times \text{SU}(2) \times \text{U}(1)$, its symmetry breaking pattern, and three fermion generations from the cascade's geometry. This paper derives the fermion mass spectrum, gauge coupling constants, and nine independent precision predictions with zero free parameters.
The central new result is the geometric-topological factorization of the fermion mass. Every particle is a feature of the cascade's higher-dimensional geometry. Its projection into 4D spacetime is attenuated by two independent channels: (1) a geometric channel $\exp(-\Phi(d_g))$, governed by the digamma function, encoding the distance of the feature from the observer; and (2) a topological channel $(2\sqrt{\pi})^{-n_D}$, governed by $\Gamma(\tfrac{1}{2})$ and the Euler characteristic $\chi(S^{2n}) = 2$, encoding the number of hairy ball obstructions between the feature and the observer. These factorize because topological invariants do not depend on the metric.
The topological obstruction factor is $2\sqrt{\pi} = 2\,\Gamma(\tfrac{1}{2})$ per Dirac layer: 2 from chirality ($\chi(S^{2n}) = 2$) and $\sqrt{\pi} = \Gamma(\tfrac{1}{2})$ from the cascade's universal quarter-turn constant. The $d$-dependent coupling integral $R'(d)$ does not appear---confirmed by decisive numerical exclusion (61--69\% deviation with $R'(d)$ vs 0.13--1.7\% without). The universal coupling $C = \alpha_s/(2\sqrt{\pi})$ eliminates the last free parameter: the observer at $d = 4$ sits behind the $d = 5$ hairy ball zero and pays one topological toll to see the gauge window.
The complete mass formula
\[
m_g = \frac{\alpha_s \cdot v}{\sqrt{2}}\,\exp\!\bigl(-\Phi(d_g)\bigr)\,(2\sqrt{\pi})^{-(n_D+1)}
\]
has leading values $m_\tau = 1755$~MeV (obs 1777, 1.2\% low), $m_\mu = 106.2$~MeV (obs 105.7, 0.47\%), $m_e = 0.514$~MeV (obs 0.511, 0.60\%). The leading $\alpha_s = 0.1159$ and $m_\tau/m_\mu = 16.53$ sit $1.7\%$ below observation.
A structural family of cascade potential shifts $\delta\Phi = \pm\,\alpha(d^*)/\chi^k$, sourced at distinguished cascade layers $d^*$ and weighted by the same Euler characteristic $\chi=\chi(S^{2n})=2$ that appears in the $2\sqrt{\pi}$ fermion obstruction, closes \emph{eight} Standard Model precision observables within experimental precision in one structural form, generated by a discrete elastic action on the cascade lattice (Remark~\ref{rem:phase-family}). The $\mathrm{U}(1)$-layer shift $\delta\Phi_{\mathrm{U}(1)}=\alpha(14)/\chi$ closes $\alpha_s(M_Z)=0.117917$ ($+0.019\sigma$) and $m_\tau/m_\mu=16.81731$ ($+0.243\sigma$) together. The phase-transition shift $\delta\Phi_{\mathrm{phase}}=\alpha(19)/\chi$, sourced at Paper~I's threshold $d_1=19$, closes the $\tau$ absolute mass $m_\tau=1776.82$~MeV ($-0.31\sigma$). The observer-host shift $\delta\Phi_{\mathrm{obs}}=\alpha(5)/\chi^3 = 8/(225\pi)$, sourced at the volume maximum $d_V=5$ with three factors of the Euler characteristic, closes $\sin^2\theta_W = 0.231226$ ($+0.40\sigma$). All three shifts are closed forms in $\Gamma$ function values. Combined with the remaining gauge coupling predictions ($1/\alpha_{\text{GUT}} = 25.02$, $m_H = 125.82$~GeV), the cosmological matter fraction $\Omega_m = 0.31150$ (Papers I and IVa), and additional sub-3\% predictions, the series produces eight SM precision observables ($\alpha_s$, $m_\tau/m_\mu$, $m_\tau$~abs, $\ell_A$, $\sin^2\theta_W$, $\Omega_m$, $\theta_C$, $b/s$) closed within current experimental precision, with zero fitted parameters and no standard renormalisation group running. Three reuse pairs---$\{\alpha_s,m_\tau/m_\mu\}$, $\{m_\tau\text{ abs},\ell_A\}$, $\{\sin^2\theta_W,\Omega_m\}$---share the same shift, reducing the number of independent structural constants to three.
At leading order the remaining descent-dependent quantities ($v$, $\Omega_m$, $m_W$, $\sin^2\theta_W$, and the other absolute masses) carry uniformly negative deviations of $-0.13\%$ to $-2.20\%$, while geometric quantities ($m_H/m_W$, $\theta_C$, $\Omega_b$) carry positive deviations of $+0.56\%$ to $+2.76\%$. The sign separation identifies the subleading cascade descent as the source of the dominant systematic; the $\delta\Phi_{\mathrm{U}(1)}$ and $\delta\Phi_{\mathrm{phase}}$ closures show that at least two members of the $\alpha(d^*)/\chi$ family are exact at experimental precision, suggesting the systematic is resolved by additional members of the same family for the other observables.
\end{abstract}
\tableofcontents
\newpage
\section{Division of Labour}\label{sec:division-of-labour}
Part IVa [4] derives the Standard Model's structure: the gauge group $\text{SU}(3) \times \text{SU}(2) \times \text{U}(1)$ from the Bott mirror, the symmetry breaking pattern from the hairy ball theorem, and three generations from the $d_1 = 19$ phase transition. This paper derives the Standard Model's quantities: masses, couplings, and precision predictions.
\section{The Fermion Mass Spectrum}\label{sec:fermion-mass}
\subsection{The cascade potential}
\begin{definition}[Cascade potential]
The cascade potential at dimension $d$ is
\[
\Phi(d) := \sum_{d'=5}^{d} p(d') = \sum_{d'=5}^{d} \Bigl[\tfrac{1}{2}\psi\!\Bigl(\frac{d'+1}{2}\Bigr) - \tfrac{1}{2}\ln\pi\Bigr],
\]
where $\psi = \Gamma'/\Gamma$ is the digamma function.
\end{definition}
The cascade potential is the cumulative decay rate, measuring the total suppression of a propagator traversing from $d = 4$ to dimension $d$. At the generation layers: $\Phi(5) = -0.111$, $\Phi(13) = 1.429$, $\Phi(21) = 5.494$, $\Phi(29) = 11.082$.
\begin{remark}[Every path in this paper is forced, not chosen]\label{rem:paths-forced}
The specific cascade descents used throughout this paper---$d=6..13$ for $m_\tau/m_\mu$, $d=14..21$ for $m_\mu/m_e$ (exclusive of the lower endpoint, as differences of cumulative $\Phi$), and $d=5..12$ for $\alpha_s$ and the electroweak VEV $v$, $d=5..13$ and $d=5..14$ for the $\mathrm{SU}(2)$ and $\mathrm{U}(1)$ couplings entering the Weinberg angle (inclusive of the $d=5$ anchor, as $\Phi$ values directly)---are not independent assumptions. They are forced by the layer assignments of Part~IVa~\cite{part4a} (generation layers at $d\in\{5,13,21\}$; gauge boson layers at $d\in\{12,13,14\}$; observer host at $d_V=5$, the volume maximum) via the \emph{Forced Cascade Paths} theorem (Part~IVa, ``Forced Cascade Paths'' section). The asymmetry between the two conventions is structural: mass ratios are differences $\Phi(d_B)-\Phi(d_A)$ between two cascade layers, so the $d=5$ terms cancel whenever neither endpoint is at $d=5$; gauge-anchored quantities are $\Phi(d_B)$ directly, starting from the observer host at $d_V=5$. Once Part~IVa fixes the layers, Part~IVb's path is the unique cascade descent between them---every length forced by the Radon--Hurwitz and Bott-period theorems of Part~IVa, not by any additional input. Separating the two: Part~IVa derives the \emph{where}; this paper derives the \emph{how much}.
\end{remark}
\subsection{The geometric-topological factorization}
Every particle is a feature of the cascade at some dimension $d$ in the higher-dimensional geometry. The 4D observer sees its projection into 4D, attenuated by every layer it passes through. This projection decomposes into two independent channels.
\textbf{Geometric channel.} The cascade potential $\Phi(d_g)$ measures the cumulative suppression through the cascade's sphere-area decay. The geometric attenuation is $\exp(-\Phi(d_g))$. It is continuous, $d$-dependent, and governed by the digamma function.
\textbf{Topological channel.} Between $d = 4$ and the generation layer $d_g$, the projection passes through $n_D(d_g)$ Dirac layers. At each Dirac layer $d$ (where $d \bmod 8 = 5$), the sphere $S^{d-1}$ is even-dimensional and the hairy ball theorem forces a zero. Each obstruction attenuates the projection by $2\sqrt{\pi}$, giving $(2\sqrt{\pi})^{-n_D}$.
The two channels factorize because topological invariants do not depend on the metric.
\subsection{The topological obstruction factor}
\begin{theorem}[Topological obstruction factor]\label{thm:obstruction}
The fermion-to-scalar propagator ratio at each Dirac layer is $1/(2\sqrt{\pi})$, independent of $d$.
\end{theorem}
\begin{proof}
The cascade lapse at layer $d$ factorises as $N(d) = \sqrt{\pi}\cdot R(d)$
(Part~0, Theorem~\xref{part0}{thm:boundary}), where $\sqrt{\pi} = \Gamma(\tfrac{1}{2})$ is the universal
compression constant from orthogonality and
$R(d) = \Gamma((d+1)/2)/\Gamma((d+2)/2)$ is the $d$-dependent geometric coupling.
At a Dirac layer ($d\bmod 8 = 5$), $S^{d-1}$ is even-dimensional.
Two independent obstructions attenuate the fermion propagator:
\medskip
\textbf{(a) The chirality obstruction (factor $\mathbf{1/2}$).}
On an even-dimensional sphere $S^{2n}$, the spinor bundle decomposes as
$S = S^+\oplus S^-$ under the chirality grading. The Euler characteristic
$\chi(S^{2n}) = 2$ counts the minimum number of critical points of any Morse
function on $S^{2n}$ (Poincar\'{e}--Hopf theorem applied to its gradient).
These two critical points---one source, one sink of the height function's
gradient flow---define two chirality basins. A definite-chirality fermion
occupies one basin, halving the propagator amplitude. The factor
$1/\chi = 1/2$ is dimension-independent because $\chi(S^{2n}) = 2$ for all
$n\geq 1$.
\medskip
\textbf{(b) The quarter-turn obstruction (factor $\mathbf{1/\sqrt{\pi}}$).}
The cascade's universal constant $\sqrt{\pi}$ enters the scalar propagator
through the half-integer first argument of $B(\tfrac{1}{2},\cdot)$. This
half-integer arises because the orthogonal quarter-turn from slicing axis to
equator produces a Jacobian $t^{-1/2}$ (under $t = x^2$) in the Beta integral:
\[
B(\tfrac{1}{2},\, d/2+1) = \int_0^1 t^{-1/2}(1-t)^{d/2}\,dt
= \sqrt{\pi}\cdot R'(d).
\]
The $t^{-1/2}$ factor encodes the angular spread of the tangent frame as the
slicing axis rotates from pole to equator. It is a \emph{frame-dependent}
quantity: it measures how the tangent directions fan out along the quarter-turn.
On an odd-dimensional sphere $S^{2n+1}$, a nowhere-vanishing tangent vector
field exists (the hairy ball theorem does not apply). The tangent frame
completes the quarter-turn smoothly, and $\sqrt{\pi}$ enters the propagator
in full.
On an even-dimensional sphere $S^{2n}$, the hairy ball theorem forces every
continuous tangent vector field to vanish. The tangent frame is globally
obstructed. A scalar (0-form) couples only to the metric, which is
well-defined everywhere regardless of the tangent frame---it sees the full
quarter-turn measure $\sqrt{\pi}$. A fermion (spinor) couples to the tangent
frame through the spin connection. The obstruction's quantitative content
is fixed at the partition-function level (Remark~\ref{rem:berezin-partition-derivation}):
the bosonic per-layer partition function is the slicing integral
$Z_s(d) = \int_{-1}^1(1-x^2)^{(d-1)/2}\,dx = \sqrt{\pi}\cdot R(d)$
(Part~0, Theorem~\xref{part0}{thm:boundary}; the Gaussian/Beta-function Jacobian carries
$\sqrt{\pi}$), while the fermionic per-layer partition function under
Berezin integration of $S_f = m(d)\bar\psi\psi$ is $Z_f(d) = m(d)$ with
no Gaussian prefactor. With the cascade-native Dirac mass
$m(d) = \sqrt{\alpha(d)} = R(d)/2$, the ratio
$Z_f/Z_s = (R/2)/(\sqrt{\pi}\cdot R) = 1/(2\sqrt{\pi})$ exactly at every
Dirac layer, so $N_f(d) = R(d)/\chi$. The chirality factor $1/\chi = 1/2$
is derived from Poincar\'e--Hopf via Theorem~\ref{thm:chirality-factorisation};
the Jacobian factor $1/\sqrt{\pi}$ is the structural Gaussian-vs-Berezin
difference, not a sphere-spinor calculation. The structural
identification $m(d) = R(d)/\chi = \sqrt{\alpha(d)}$ connects the cascade's
per-layer mass to the standard Dirac-mass-versus-gauge-coupling relation:
the per-layer fermion mass is the chirality-halved per-layer scale, which
equals the per-layer gauge-coupling amplitude $\sqrt{\alpha(d)}$ in
cascade-native units (since $\alpha(d) = R(d)^2/4$ by definition,
Remark~\ref{rem:alpha-geometric}). \emph{No free Yukawa coupling enters
the construction} --- the SM's parameterisation $m_g = y_g\,v/\sqrt{2}$
does not appear in the cascade's chain (slicing recurrence + chirality
halving + per-layer locality + Berezin integration), so there is no
$y_g$ to fit or forbid.
Pool-uniqueness over monomial-in-$\alpha$ Berezin candidates
(\texttt{tools/verifiers/fermion\_mass\_uniqueness.py}: $m = \sqrt{\alpha}$
is the unique cascade-native candidate giving $d$-independent $Z_f/Z_s$)
is a confirming check on the structural derivation, not the
load-bearing argument.
The numerical value $2\sqrt{\pi}$ is also the direct cascade-primitive
identity $N(0)\cdot\Gamma(\tfrac12)$ (Corollary~\ref{cor:2sqrtpi-primitive}).
See Remark~\ref{rem:sp31-status} for the per-ingredient derivation
statuses.
\medskip
\noindent\emph{Recurrence-native restatement.}
The sphere-bundle / tangent-frame language above is one reading of why the fermion
loses one factor of $\sqrt{\pi}$ relative to the scalar. An equivalent
recurrence-native reading does not invoke sphere-bundle structure:
the cascade scalar action at layer $d$ has compliance
$\alpha(d) = N(d)^2/\Omega_2 = R(d)^2/4$ (Remark~\ref{rem:alpha-geometric}). The
natural Dirac partner of this scalar compliance is its square root,
$m(d) = \sqrt{\alpha(d)} = R(d)/2$---the standard Dirac-vs-Laplacian relation
applied to the cascade's per-layer compliance. Then the fermion-to-scalar
per-layer ratio is
\[
\frac{m(d)}{N(d)} \;=\; \frac{R(d)/2}{\sqrt{\pi}\,R(d)} \;=\; \frac{1}{2\sqrt{\pi}},
\]
identical to the value derived above through tangent-frame language but obtained
without invoking the spin connection or the hairy-ball obstruction beyond the
chirality halving of step~(a). Three independent cascade-lattice constructions
converge on this $m(d) = R(d)/2$ value (per-layer Berezin partition function,
square-root of the cascade scalar Laplacian, and variational with $R$-based
compliance; see Remark~\ref{rem:sp31-status} for the failure
analysis of the contrasting sphere-bundle constructions). Both readings derive
the same number from cascade primitives; the recurrence-native reading is the
more cascade-internal of the two.
\medskip
\noindent\emph{Power-uniqueness sanity check.}
A confirming check: among monomial-in-$\alpha$ Berezin candidates
$Z_f(d) = \alpha(d)^k$, the power $k = 1/2$ is uniquely selected by
d-independence of $Z_f/Z_s$. Using $Z_s(d) = N(d) = 2\sqrt{\pi}\,\sqrt{\alpha(d)}$
(cascade scalar identity, Remark~\ref{rem:alpha-geometric}), the ratio is
$Z_f/Z_s = \alpha^{k-1/2}/(2\sqrt{\pi})$. d-independence forces $k = 1/2$
exactly. Verified numerically across $k\in[-1, 2]$ at four Dirac layers in
\texttt{tools/verifiers/cascade\_native\_clifford\_absorption.py}: only $k = 1/2$
gives coefficient of variation $0\%$; every other power produces CV $\geq 3\%$.
This confirms the structural derivation $m(d) = R(d)/\chi$ from chirality
halving (and equivalently $m(d) = \sqrt{\alpha(d)}$ from the
Dirac-vs-Laplacian relation): no other monomial-in-$\alpha$ candidate
gives a $d$-independent ratio, so the cascade-internal value is unique
among that pool. A cascade-lattice scalar-action uniqueness theorem
extending the check to all functional forms would supply a further
independent proof but is not required for closure --- the chirality
halving + Berezin chain already produces the value from cascade primitives.
The geometric coupling $R(d)$, which depends on the radial structure of the
slicing (the ratio of adjacent Gamma functions), measures the change in
cross-sectional size---a metric quantity that does not require a tangent frame.
This factor survives for both scalars and fermions.
\medskip
\textbf{(c) Uniqueness.}
The two factors $\sqrt{\pi}$ and $\chi = 2$ are the \emph{only}
dimension-independent constants available at the hairy ball obstruction:
$\sqrt{\pi} = \Gamma(\tfrac{1}{2})$ is the unique constant of the cascade's
slicing recurrence (Part~0, Theorem~\xref{part0}{thm:irred}); $\chi(S^{2n}) = 2$ is the unique
topological invariant of even-dimensional spheres that counts the obstruction
strength. Any $d$-dependent factor would break the universality of the mass
formula, contradicting the observed $d$-independence of the Bott factor to
1.6\% (Remark~\ref{rem:universality}).
\medskip
The fermion lapse at a Dirac layer is therefore:
\[
N_f(d) = \frac{R(d)}{\chi(S^{d-1})} = \frac{R(d)}{2}.
\]
The fermion-to-scalar ratio is:
\[
\frac{N_f(d)}{N(d)} = \frac{R(d)/2}{\sqrt{\pi}\cdot R(d)} = \frac{1}{2\sqrt{\pi}},
\]
independent of $d$.
\end{proof}
\noindent The factor decomposes as: (a) $\sqrt{\pi} = \Gamma(\tfrac{1}{2})$: the cascade's unique dimension-independent constant (Paper I, Theorem~\xref{part0}{thm:boundary}), forced by orthogonality---consumed at the hairy ball zero because the tangent frame it encodes is globally obstructed. (b) $2 = \chi(S^{2n})$: the Euler characteristic of any even-dimensional sphere, equal to the number of chirality basins at the Dirac junction.
\begin{corollary}[The obstruction factor as a cascade primitive]\label{cor:2sqrtpi-primitive}
The topological obstruction factor equals the product of the cascade's zeroth slicing lapse and its unique irreducible constant:
\[
2\sqrt{\pi} \;=\; N(0)\cdot\Gamma(\tfrac{1}{2}),
\]
where $N(0) = \int_{-1}^{1}(1-x^2)^0\,dx = 2$ is the Lebesgue measure of the slicing interval $[-1,1]$---the cascade's primitive step from $d=0$ (a point) to $d=1$ (the unit segment). Both factors are cascade primitives: no topological or spinor machinery enters the identity itself.
\end{corollary}
\begin{proof}
Direct evaluation: $N(0) = B(\tfrac{1}{2},1) = \sqrt{\pi}\,\Gamma(1)/\Gamma(\tfrac{3}{2}) = 2$ (the integrand $(1-x^2)^0 = 1$ over $[-1,1]$). Multiplying by $\Gamma(\tfrac{1}{2}) = \sqrt{\pi}$ gives $2\sqrt{\pi}$.
\end{proof}
\begin{remark}[The identification $N(0) = \chi(S^0) = \chi(S^{2n})$]\label{rem:N0-is-chi}
The cascade's $d=0$ lapse $N(0) = 2$ coincides with the Euler characteristic of the $0$-sphere: the unit interval $B^1 = [-1,1]$ has boundary $S^0 = \{-1,+1\}$, two points, and $\chi(S^0) = 2$. Classically, $\chi(S^{2n}) = 1 + (-1)^{2n} = 2$ for every $n\geq 0$, so the Euler characteristic is constant across all even-dimensional sphere layers. Fermion layers at $d\equiv 5\pmod 8$ have boundary spheres $S^{d-1}$ with $d-1\equiv 4\pmod 8$, all even-dimensional, hence all with $\chi = 2$. The cascade primitive $N(0)$ therefore carries the full generation-independent content of the topological channel: one cascade number---the initial slicing integral---substitutes for the differential-topological derivation of $\chi$ at every fermion layer.
\end{remark}
\begin{remark}[Constancy rules out a Dirac-operator derivation]\label{rem:no-dirac-route}
The mass formula uses the \emph{same} constant base $2\sqrt{\pi}$ at every fermion layer, so any topological invariant that underlies the obstruction must be independent of the sphere dimension $2n$. Among candidates on $S^{2n}$:
\begin{center}
\begin{tabular}{lccc}
\hline
Invariant & $n=1$ & $n=2$ & $n=3$ \\
\hline
Euler characteristic $\chi(S^{2n})$ & $2$ & $2$ & $2$ \\
Signature $\sigma(S^{2n})$ & $0$ & $0$ & $0$ \\
Dirac index / $\hat A(S^{2n})$ & $0$ & $0$ & $0$ \\
\hline
\end{tabular}
\end{center}
Only $\chi$ is constant and nonzero. The Atiyah--Singer index of a Dirac operator on $S^{2n}$ equals $\hat A(S^{2n})=0$ ($S^{2n}$ is null-cobordant in spin-bordism), so a Dirac-operator derivation predicts $0$, not $2\sqrt{\pi}$. Corollary~\ref{cor:2sqrtpi-primitive} gives the factor directly from the cascade's primitives $N(0)\cdot\Gamma(\tfrac{1}{2})=2\sqrt{\pi}$.
\end{remark}
\begin{remark}[Derivation of the $1/(2\sqrt{\pi})$ factor]\label{rem:sp31-status}
The fermion-to-scalar propagator ratio $1/(2\sqrt{\pi})$ factorises into three structurally derived ingredients, all from cascade primitives:
\begin{enumerate}
\item \emph{Chirality halving $1/\chi = 1/2$.} Poincar\'e--Hopf applied to the Morse function on $S^{2n}$ at Dirac layers gives $\chi = 2$, splitting the spinor bundle into two equal-weight chirality basins (Theorem~\ref{thm:chirality-factorisation}). A definite-chirality fermion occupies one basin: factor $1/\chi$. Topological theorem; no assumption.
\item \emph{Cascade-primitive identity $2\sqrt{\pi} = N(0)\cdot\Gamma(\tfrac12)$} (Corollary~\ref{cor:2sqrtpi-primitive}). $N(0)$ and $\Gamma(\tfrac12)$ are both Part~0 primitives; no topological or spinor machinery enters the identity itself.
\item \emph{Per-layer mass $m(d) = R(d)/\chi$ via chirality halving + Berezin partition.} The cascade fermion at each layer is a Grassmann scalar with mass action $m(d)\bar\psi\psi$ (per-layer locality, Section~\ref{sec:fermion-action}); Berezin integration gives $Z_f(d) = m(d)$ identically, with no Gaussian prefactor. The bosonic counterpart is $Z_s(d) = \sqrt{\pi}\cdot R(d)$ from the slicing measure (Part~0, Theorem~\xref{part0}{thm:boundary}; the Gaussian/Beta-function Jacobian carries $\sqrt{\pi}$). The chirality halving from item~(1) gives $m(d) = R(d)/\chi = R(d)/2$ as the cascade's per-layer mass --- the bare scale $R(d)$ halved by the Euler characteristic of the even-sphere Dirac layer. The ratio is then
\[
Z_f(d)/Z_s(d) \;=\; \frac{R(d)/2}{\sqrt{\pi}\,R(d)} \;=\; \frac{1}{2\sqrt{\pi}},
\]
exactly at every Dirac layer, $d$-independent. The Gaussian-vs-Berezin Jacobian difference is the structural origin of the $1/\sqrt{\pi}$; no sphere-spinor calculation enters. The structural identification $R(d)/2 = \sqrt{\alpha(d)}$ (since $\alpha(d) = R(d)^2/4$ by definition, Remark~\ref{rem:alpha-geometric}) connects the cascade's per-layer mass to the standard Dirac-mass-versus-gauge-coupling relation: the per-layer fermion mass equals the per-layer gauge-coupling amplitude as a structural identification, not as an independent commitment. \emph{No free Yukawa coupling enters the construction} --- the SM's $m = y\cdot v/\sqrt{2}$ parameterisation does not appear in the cascade's chain (slicing recurrence + chirality halving + per-layer locality + Berezin), so there is no $y$ to fit or forbid. Sphere-bundle imports (Mathai--Quillen, sphere-Dirac, projection geometry) are independently ruled out by scaling: sphere quantities decay super-exponentially in $d$, while $R(d)/2 \sim 1/\sqrt{2d}$ decays polynomially. Per CLAUDE.md Check~7, the closure must be cascade-lattice native; the chirality halving $1/\chi$ is the only place sphere structure enters.
\end{enumerate}
The numerical observables (lepton mass ratios to $0.13\%$ and $1.7\%$, $m_\tau$ absolute to $-0.31\sigma$, the universality check of Remark~\ref{rem:universality}) confirm the value $1/(2\sqrt{\pi})$ to the cascade's stated precision.
\medskip\noindent\emph{Sanity checks (not derivation steps).} Two confirming checks strengthen the structural derivation: (a) pool-uniqueness over monomial-in-$\alpha$ Berezin candidates $Z_f(d) = \alpha(d)^k$ selects $k = 1/2$ uniquely (verifier \texttt{tools/verifiers/fermion\_mass\_uniqueness.py}: $m = \sqrt{\alpha}$ is the unique cascade-native candidate giving $d$-independent $Z_f/Z_s$); (b) the scalar analogue is derived in parallel via the discrete scalar action $S[\varphi] = \sum_d (2\alpha(d))^{-1}(\Delta\varphi)^2$ (Remark~\ref{rem:action-uniqueness}), with $B(\tfrac12, d/2+1) = \sqrt{\pi}\cdot R'(d)$ as the scalar propagator on $S^{d-1}$. A cascade-lattice scalar-action uniqueness theorem extending the check beyond the monomial-in-$\alpha$ pool would supply a further independent proof but is not required for closure --- the chirality halving + Berezin chain already produces $m(d) = R(d)/\chi$ from cascade primitives.
\end{remark}
\subsection{Factor-by-factor decomposition of the fermion obstruction}
\label{subsec:sp31-decomposition}
Corollary~\ref{cor:2sqrtpi-primitive}'s cascade-primitive identity
$2\sqrt{\pi} = N(0)\cdot\Gamma(\tfrac{1}{2})$ decomposes the fermion
obstruction factor into two structurally distinct halves: the chirality
half follows from Theorem~\ref{thm:chirality-factorisation}
(Poincar\'e--Hopf); the Jacobian half is the Berezin/Gaussian
partition-function difference of Remark~\ref{rem:berezin-partition-derivation},
with the per-layer mass $m(d) = R(d)/\chi = \sqrt{\alpha(d)}$ derived from
chirality halving (Remark~\ref{rem:sp31-status}). The theorem below
records the split.
\begin{theorem}[Decomposition of the fermion obstruction factor]\label{thm:sp31-decomposition}
Under the cascade-primitive identity
$2\sqrt{\pi} = N(0)\cdot\Gamma(\tfrac{1}{2})$
(Corollary~\ref{cor:2sqrtpi-primitive}), the fermion obstruction factor
factorises as
\[
\frac{1}{2\sqrt{\pi}}
\;=\;
\underbrace{\frac{1}{N(0)}}_{\text{derived (chirality halving)}}
\;\cdot\;
\underbrace{\frac{1}{\Gamma(\tfrac{1}{2})}}_{\text{derived (Berezin/Gaussian Jacobian)}}
\;=\;
\frac{1}{\chi}\cdot\frac{1}{\sqrt{\pi}},
\]
where the two factors have distinct cascade-internal origins and
distinct derivation statuses.
\end{theorem}
\begin{proof}[Derivation status of the two factors]
\textbf{$1/N(0) = 1/\chi = 1/2$: derived via chirality factorisation.}
Theorem~\ref{thm:chirality-factorisation} establishes that on any
even-sphere layer $d\bmod 8 = 5$ (where $S^{d-1}$ is even-dimensional),
the Green's function of the cascade action's discrete Laplacian
factorises into $\chi(S^{d-1}) = 2$ chirality sectors of equal weight,
via the Poincar\'{e}--Hopf / Morse-function decomposition of the
height function on $S^{2n}$ into $\chi$ equal basins. A definite-chirality
fermion projector $P_\pm = (1\pm\gamma_5)/2$ selects one basin,
contributing a factor $1/\chi = 1/2$. Via
Remark~\ref{rem:N0-is-chi}'s identification
$N(0) = \chi(S^0) = \chi(S^{2n}) = 2$, this is exactly $1/N(0)$.
\textbf{$1/\Gamma(\tfrac{1}{2}) = 1/\sqrt{\pi}$: conjectured via
Clifford absorption.} On the scalar side, $\sqrt{\pi} = \Gamma(\tfrac{1}{2})$
enters the slicing integral via the half-integer first argument of the
Beta function $B(\tfrac{1}{2},\,d/2) = \int_0^1 t^{-1/2}(1-t)^{d/2-1}dt$,
whose Jacobian $t^{-1/2}$ arises from the substitution $t=x^2$
converting the axial coordinate to the quarter-turn squared length. A
cascade Dirac action on the spinor bundle of $S^{d-1}$ replaces this
real-valued Gaussian integration with a Clifford-structured Berezin
integration: the Grassmann measure does not pick up the $(2\pi)^{1/2}$
Gaussian-normalisation prefactor of real integration, and the
$\gamma$-matrix algebra's $SO(d)$-invariant normalisation is conjectured
to absorb the half-integer Jacobian into the Clifford structure. This
is captured at the partition-function level in
Remark~\ref{rem:berezin-partition-derivation}, with the per-layer mass
$m(d) = R(d)/\chi$ derived from chirality halving (Remark~\ref{rem:sp31-status}).
\end{proof}
\begin{remark}[Chirality-Jacobian separability at the integral level]\label{rem:chirality-jacobian-separability}
The decomposition of Theorem~\ref{thm:sp31-decomposition} admits a
direct verification at the level of the scalar slicing integral. The
weighted integral
\[
\int_{-1}^{1}(1-x^2)^{(d-1)/2}\cdot\tfrac{1\pm x}{2}\,dx
\;=\;
\tfrac{1}{2}\int_{-1}^{1}(1-x^2)^{(d-1)/2}\,dx
\;=\;
\tfrac{1}{2}\sqrt{\pi}\,R(d)
\]
(the $x$ term vanishes by parity; the remaining integral is the scalar
lapse). Weighting the scalar integrand by a chirality projector
$(1\pm x)/2$ therefore removes the factor of $2$ exactly while leaving
the $\sqrt{\pi}$ factor of $\Gamma(\tfrac{1}{2})$ untouched. This is
the integral-level statement of mechanistic separability: the chirality
half $1/\chi = 1/2$ acts on the domain of integration, and the Jacobian
half $1/\sqrt{\pi}$ lives in the integration measure itself.
A consequence for any confirming cascade-action derivation of the
$1/\sqrt{\pi}$ absorption: it cannot operate via a
modified axial measure on $[-1,1]$---such a modification would break
the $d$-independence confirmed at 1.6\% by the observed mass ratios
(Remark~\ref{rem:universality}), and is independently falsified by the
sphere-Dirac spectral-zeta check that does not match $R(d)$
(\texttt{tools/model\_checks/fermion\_dirac\_spectral\_zeta.py};
the ratio $\zeta_D(1)/(R(d)/2)$ decays exponentially in $d$ while
$R(d)/2$ decays polynomially). The absorption must therefore come from
spinor structure (Berezin/Clifford inner product, or spin-connection
coupling in the Dirac operator), realised concretely by
Remark~\ref{rem:berezin-partition-derivation} below. Verified numerically
to machine precision ($<3\times 10^{-16}$) at Dirac layers
$d\in\{5,13,21,29\}$ in
\texttt{tools/verifiers/chirality\_jacobian\_separation.py}.
\end{remark}
\begin{remark}[Berezin partition-function realisation of Clifford absorption]\label{rem:berezin-partition-derivation}
The Berezin-vs-Gaussian mechanism is exact at the per-layer
partition-function level. The cascade's bosonic per-layer partition function is the scalar
slicing integral
$Z_s(d) = \int_{-1}^{1}(1-x^2)^{(d-1)/2}\,dx = \sqrt{\pi}\,R(d)$
(Part~0, Theorem~\xref{part0}{thm:boundary}). For a Grassmann-valued cascade field with
quadratic action $S_f = m(d)\,\bar\psi\psi$, Berezin integration gives
$Z_f(d) = m(d)$ with no Gaussian prefactor. With the cascade-derived
per-layer mass $m(d) = R(d)/\chi = R(d)/2$ from
Theorem~\ref{thm:chirality-factorisation}'s chirality decomposition on
the even-sphere Dirac layer (equivalently $\sqrt{\alpha(d)}$, the
standard Dirac-mass-versus-gauge-coupling relation applied per cascade
layer), the per-layer ratio is
\[
\frac{Z_f(d)}{Z_s(d)}
\;=\;
\frac{R(d)/2}{\sqrt{\pi}\,R(d)}
\;=\;
\frac{1}{2\sqrt{\pi}}
\]
exactly, at every Dirac layer, with no modification of the slicing
measure. The two halves of the sp31 split factorise transparently:
$1/\chi = 1/2$ lives in the factor-of-two halving
$m(d) = R(d)/2$ (chirality), and $1/\sqrt{\pi}$ lives in the absence
of a Gaussian prefactor on the Berezin side (Jacobian). The product of
$n_D$ per-layer ratios reproduces Theorem~\ref{thm:complete-mass}'s
$(2\sqrt{\pi})^{-n_D}$ base exactly. Verified to machine precision
($<3\times 10^{-16}$) at
$d\in\{5,13,21,29\}$ in
\texttt{tools/closures/fermion\_berezin\_partition.py}.
\medskip\noindent\emph{No Yukawa parameter is introduced or eliminated.}
The cascade's mass formula is $m(d) = R(d)/\chi$ from cascade primitives
(slicing recurrence + chirality halving + per-layer locality + Berezin
integration). The SM's parameterisation $m_g = y_g\,v/\sqrt{2}$ does not
appear in the cascade's construction; there is no place in the chain
above for a free Yukawa coupling $y_g$. The structural identification
$R(d)/2 = \sqrt{\alpha(d)}$ (since $\alpha(d) = R(d)^2/4$ by definition,
Remark~\ref{rem:alpha-geometric}) connects the cascade's per-layer mass
to the standard Dirac-mass-versus-gauge-coupling relation as a structural
identification, not as a derivation step. Pool-uniqueness over
monomial-in-$\alpha$ Berezin candidates
(\texttt{tools/verifiers/fermion\_mass\_uniqueness.py}: $m = \sqrt{\alpha}$
is the unique cascade-native candidate giving $d$-independent $Z_f/Z_s$)
is a confirming check on the structural derivation, not the load-bearing
argument. A cascade-lattice scalar-action uniqueness theorem extending
the check to all functional forms would supply a further independent
proof but is not required for closure --- the chirality halving + Berezin
chain already produces the value from cascade primitives.
\end{remark}
\subsection{Why \texorpdfstring{$R'(d)$}{R'(d)} does not appear}
The Higgs coupling integral on $S^{2n}$ at Dirac layer $d$ is $B(\tfrac{1}{2}, \tfrac{d}{2}) = \sqrt{\pi}\cdot R'(d)$ with $R'(d) = \Gamma(d/2)/\Gamma((d+1)/2)$. The cascade-internal identity $R'(d) = R(d-1)$ (Remark~\ref{rem:R-prime-identity}) shows this is the slicing recurrence at layer $d-1$, already encoded in $\Phi(d)$; including it again as a layer-$d$ factor double-counts. The fermion mass coupling at the hairy ball zero retains only the topological residue $\Gamma(\tfrac{1}{2}) = \sqrt{\pi}$:
\begin{center}
\begin{tabular}{lccc}
\hline
Ratio & With $R'(d)$ & Without $R'(d)$ & Observed \\
\hline
$\tau/\mu$ & 6.61 (60.7\% off) & 16.53 (1.7\% off) & 16.82 \\
$\mu/e$ & 64.49 (68.8\% off) & 206.50 (0.13\% off) & 206.77 \\
\hline
\end{tabular}
\end{center}
\begin{remark}[The identity $R'(d) = R(d-1)$]\label{rem:R-prime-identity}
$R'(d) = \Gamma(d/2)/\Gamma((d+1)/2) = R(d-1)$ as a $\Gamma$-function identity. Under $x = \cos\theta$, the slicing weight $(1 - x^2)^{(d-1)/2}$ at layer $d-1$ becomes $\sin^{d-1}\theta$---the Higgs coupling integrand on $S^{d-1}$. The cascade evaluates this integral once via the slicing recurrence; the $R'(d)$ form at layer $d$ is the same datum relabelled.
\end{remark}
\begin{remark}[Universality from the data]\label{rem:universality}
The Bott factor extracted from observed mass ratios is $F(\tau/\mu) = 16.817/4.663 = 3.606$ and $F(\mu/e) = 206.77/58.25 = 3.550$. Their ratio $F(\tau/\mu)/F(\mu/e) = 1.016$, confirming $d$-independence to 1.6\%. The theoretical value $2\sqrt{\pi} = 3.5449$ lies within 0.13\% of $F(\mu/e)$; the 1.7\% deviation in $F(\tau/\mu)$ is consistent with subleading cascade geometric corrections.
\end{remark}
\subsection{The obstruction count}
\begin{center}
\begin{tabular}{lccc}
\hline
Generation & Layer & Dirac obstructions passed & $n_D$ \\
\hline
3 ($\tau, b$) & $d = 5$ & $d = 5$ & 1 \\
2 ($\mu, s$) & $d = 13$ & $d = 5, 13$ & 2 \\
1 ($e, d, u$) & $d = 21$ & $d = 5, 13, 21$ & 3 \\
\hline
\end{tabular}
\end{center}
The mass of generation $g$ is:
\[
m_g \propto \exp(-\Phi(d_g)) \times (2\sqrt{\pi})^{-n_D(d_g)}.
\]
The mass ratio between adjacent generations involves one additional Dirac obstruction:
\[
m_{\text{heavy}}/m_{\text{light}} = \exp(\Delta\Phi) \times 2\sqrt{\pi}.
\]
\subsection{Charged lepton mass ratios}
\begin{theorem}[Lepton mass ratios, leading]\label{thm:lepton-ratios}
\begin{align*}
m_\tau/m_\mu &= \exp(\Delta\Phi(5 \to 13)) \times 2\sqrt{\pi} = 4.662 \times 3.5449 = 16.53, \\
m_\mu/m_e &= \exp(\Delta\Phi(13 \to 21)) \times 2\sqrt{\pi} = 58.25 \times 3.5449 = 206.50.
\end{align*}
The leading $m_\tau/m_\mu$ is closed to experimental precision by the universal $\mathrm{U}(1)$-layer shift $\delta\Phi_{\mathrm{U}(1)}=\alpha(14)/\chi$ of Theorem~\ref{thm:alpha-s-closure} below: $m_\tau/m_\mu=\exp(\Delta\Phi(5\to 13)+\delta\Phi_{\mathrm{U}(1)})\cdot 2\sqrt{\pi}=16.8173$ against the observed $16.8170\pm 0.0011$. The $m_\mu/m_e$ path $d=14..21$ begins at the $\mathrm{U}(1)$ layer and does not receive the shift; its leading value already matches observation to $0.13\%$.
\end{theorem}
\begin{proof}
The cascade potential differences are $\Phi(13) - \Phi(5) = \sum_{d=6}^{13} p(d) = 1.5397$ and $\Phi(21) - \Phi(13) = \sum_{d=14}^{21} p(d) = 4.0648$. Exponentiating: $\exp(1.5397) = 4.662$, $\exp(4.0648) = 58.25$. Multiplying by $2\sqrt{\pi} = 3.5449$: $4.662 \times 3.5449 = 16.53$ and $58.25 \times 3.5449 = 206.50$.
\end{proof}
\begin{remark}[Zero free parameters]
The prediction uses: (i) the digamma function at integer and half-integer arguments, (ii) the Bott period of 8, and (iii) the topological factor $2\sqrt{\pi}$ from the hairy ball theorem and the cascade's quarter-turn constant. No parameter is fitted. The 0.13\% agreement in $m_\mu/m_e$ is a precision prediction of the series.
\end{remark}
\begin{center}
\begin{tabular}{lccc}
\hline
Ratio & Cascade (with $\delta\Phi_{\mathrm{U}(1)}$ where applicable) & Observed & Residual \\
\hline
$m_\mu/m_e$ & 206.50 (no shift; path starts at $d=14$) & 206.77 & $0.13\%$ \\
$m_\tau/m_\mu$ & 16.8173 (exp form, Theorem~\ref{thm:alpha-s-closure}) & 16.81703 & $+0.24\sigma$ \\
$m_\tau/m_e$ & 3477 (derived from the two above) & 3477 & $<0.1\%$ \\
\hline
\end{tabular}
\end{center}
\subsection{The universal coupling and the observer's obstruction}
\begin{theorem}[Universal coupling]\label{thm:universal-coupling}
The effective Yukawa coupling at the observer's position is
\[
C = \frac{\alpha_s}{2\sqrt{\pi}},
\]
where $\alpha_s = \alpha_{\text{GUT}} \times \exp(\Phi_{12 \to 4})$ is the strong coupling at the observer's scale (Theorem~\ref{thm:alpha-s-leading}). The relation holds to 1.0\%.
\end{theorem}
\begin{proof}
The observer at $d = 4$ is a Weyl layer. The nearest Dirac layer is $d = 5$, with a hairy ball zero on $S^4$. The observer's projection to the gauge window at $d = 12$ passes through this zero. The effective coupling is $C = \alpha_s/(2\sqrt{\pi}) = N(12)^2/(4\pi) \cdot \exp(\Phi_{12 \to 4})/(2\sqrt{\pi})$. Numerically: $C = 0.1159/3.545 = 0.0327$ (Route~1 of Remark~\ref{rem:sp34-status}).
Independently, inverting the $\tau$-mass formula
$m_\tau = (\alpha_s v/\sqrt{2})\exp(-\Phi(5))(2\sqrt{\pi})^{-2}$
for $C$ via $\alpha_s = 2\sqrt{\pi}\,C$ gives
$C_\tau = 2\sqrt{2\pi}\,m_\tau\,e^{\Phi(5)}/v$; plugging in observed
$m_\tau = 1776.82$~MeV and cascade-derived $v, \Phi(5)$ yields
$C_\tau = 0.0324$ (Route~2). Agreement: 1.0\%.
\end{proof}
\begin{remark}[Why Route 1 and Route 2 are independent]\label{rem:sp34-status}
The two extractions of $C$ share no numerical input:
\begin{itemize}
\item \emph{Route 1 (gauge-descent).} $C = \alpha_s/(2\sqrt{\pi})$ with
$\alpha_s = N(12)^2/(4\pi) \cdot \exp(\Phi_{12\to 4})$. Inputs: Gamma
function values $N(12)$ and the cascade potential sum $\Phi_{12\to 4}$.
No fermion mass appears.
\item \emph{Route 2 (mass-formula inversion).} Take the Gen~3 absolute
mass formula $m_\tau = (\alpha_s v/\sqrt{2})\exp(-\Phi(5))(2\sqrt{\pi})^{-2}$,
substitute $\alpha_s = 2\sqrt{\pi}\,C$, and solve for $C$ using
\emph{observed} $m_\tau$, \emph{cascade-derived} $v$ (Theorem~\ref{thm:vev}:
$v = M_{\mathrm{Pl,red}}\cdot\alpha_{\mathrm{GUT}}\cdot\exp(\Phi_{12\to 4})
\cdot\exp(-\pi/\alpha(5))$, no fermion-mass input), and
\emph{cascade-derived} $\Phi(5)$ (Gamma function sum). The only
non-cascade input is the empirical $m_\tau$.
\end{itemize}
Non-circularity follows because $v$ and $\Phi(5)$ are Gamma-function
quantities, not fitted to $m_\tau$. The two routes share the topological
factor $2\sqrt{\pi}$ (Corollary~\ref{cor:2sqrtpi-primitive}: a cascade
primitive), but use disjoint dynamical inputs---$N(12)$ and
$\Phi_{12\to 4}$ on one side; observed $m_\tau$, $v$, and $\Phi(5)$ on
the other. The $1.0\%$ agreement is consistent with the leading
cascade prediction $m_\tau^{\mathrm{lead}} = 1755$~MeV sitting $1.2\%$
below the observed $m_\tau = 1777$~MeV (Theorem~\ref{thm:complete-mass});
the residual is the same two-population systematic that
Theorem~\ref{thm:mtau-abs-closure} addresses at $-0.31\sigma$ via the
phase-transition shift $\delta\Phi_{\mathrm{phase}} = \alpha(19)/\chi$.
The cross-check is genuine, not a consistency tautology.
\end{remark}
\begin{remark}[The $n_D+1$ decomposition is not a separate observer toll]\label{rem:nd-plus-one}
The exponent $n_D + 1$ in the mass formula below is a single count with
two independently-derived contributions:
\begin{itemize}[nosep]
\item $n_D$ factors of $(2\sqrt{\pi})^{-1}$ from the $n_D$ Dirac-layer
crossings on the fermion's descent from $d_g$ to the observer. Each
contributes by Theorem~\ref{thm:obstruction}, applied once per
crossing. $n_D$ counts the Dirac layers at or below $d_g$, which for
the three generations are $\{d=5\}$, $\{d=5, 13\}$, $\{d=5, 13, 21\}$
giving $n_D = 1, 2, 3$ respectively.
\item $+1$ factor of $(2\sqrt{\pi})^{-1}$ from the universal Yukawa
coupling $C = \alpha_s/(2\sqrt{\pi})$
(Theorem~\ref{thm:universal-coupling}). This is Theorem~\ref{thm:obstruction}
applied once to the observer's projection through $d=5$ to the gauge
window at $d=12$, which is the source of the $\alpha_s$-scale Yukawa
coupling itself.
\end{itemize}
The $n_D$ obstructions are generation-specific (count Dirac layers on
the fermion's path); the $+1$ obstruction is generation-independent
(it is the Yukawa baseline every generation inherits). Both arise from
the same theorem (\ref{thm:obstruction}, single Dirac-layer attenuation
$(2\sqrt{\pi})^{-1}$) applied to physically distinct operations. The
``+1'' is therefore not a double-count, not a separately-added toll,
and not an assumption: it is the universal Yukawa coupling's own
obstruction factor, which appears once per mass prediction independent
of which fermion is under consideration.
This derivation is made explicit in the proof of
Theorem~\ref{thm:complete-mass} below.
\end{remark}
\subsection{The complete mass formula}
\begin{theorem}[Complete charged lepton mass formula]\label{thm:complete-mass}
The mass of the charged lepton at generation layer $d_g$ is
\[
m_g = \frac{\alpha_s \cdot v}{\sqrt{2}}\,\exp(-\Phi(d_g))\,(2\sqrt{\pi})^{-(n_D+1)},
\]
where $\alpha_s = 0.1159$, $v = 240.8$~GeV, $n_D$ is the Dirac-obstruction
count (see Remark~\ref{rem:nd-plus-one}), and every quantity is
derived from the cascade. There are no free parameters.
\end{theorem}
\begin{proof}
The derivation combines the standard-model Yukawa structure with
cascade-derived factorisation of the Yukawa coupling. The $n_D + 1$
exponent is exhibited as a composition of two independently-established
cascade theorems, not an asserted count.
\emph{Step 1: Standard Yukawa structure.} For a charged lepton with
Yukawa coupling $y_g$,
\[
m_g \;=\; \frac{y_g\,v}{\sqrt{2}}.
\]
\emph{Step 2: Cascade factorisation of the Yukawa coupling.}
By Theorem~\ref{thm:universal-coupling} (universal coupling), the
effective Yukawa coupling at the observer's position is
$C = \alpha_s/(2\sqrt{\pi})$. $C$ is the universal Yukawa baseline,
inherited by every generation; the $(2\sqrt{\pi})^{-1}$ factor in $C$
is Theorem~\ref{thm:obstruction}'s single Dirac-layer attenuation for
the observer's projection through $d=5$ to the gauge window at
$d=12$ (the path that defines $\alpha_s$ at the observer's scale).
For a fermion at generation layer $d_g$, the generation-specific Yukawa
coupling is
\[
y_g \;=\; C \cdot \exp\bigl(-\Phi(d_g)\bigr) \cdot (2\sqrt{\pi})^{-n_D(d_g)},
\]
where:
\begin{itemize}[nosep]
\item $\exp(-\Phi(d_g))$ is the cascade potential's geometric attenuation
along the fermion's descent from the observer's host at $d_V=5$ to the
generation layer $d_g$. By Part~IVa~\cite{part4a} Theorem~7.4
(Forced Cascade Paths), this path is forced by the layer assignments
of Parts~IVa and~0 once $d_g$ is fixed.
\item $(2\sqrt{\pi})^{-n_D(d_g)}$ is the topological attenuation from
the $n_D(d_g)$ Dirac-layer crossings on the fermion's path. Each
crossing contributes one factor of $(2\sqrt{\pi})^{-1}$ by
Theorem~\ref{thm:obstruction}; the total is $n_D$ applications of a
single structural theorem, not $n_D$ separate assumptions.
\end{itemize}
\emph{Step 3: Substitute and simplify.}
Substituting $C = \alpha_s/(2\sqrt{\pi})$ into $y_g$:
\[
y_g \;=\; \frac{\alpha_s}{2\sqrt{\pi}} \cdot \exp(-\Phi(d_g)) \cdot (2\sqrt{\pi})^{-n_D}
\;=\; \alpha_s \cdot \exp(-\Phi(d_g)) \cdot (2\sqrt{\pi})^{-(n_D+1)}.
\]
The exponent $n_D + 1$ arises as a \emph{sum of two derived factors}:
the $n_D$ Dirac crossings on the fermion's path (Step~2, applying
Theorem~\ref{thm:obstruction} once per crossing) plus the single
Dirac crossing in the universal Yukawa coupling $C$ (Step~2,
Theorem~\ref{thm:universal-coupling}). No additional obstruction
is asserted; the ``+1'' is $C$'s own obstruction factor.
Substituting $y_g$ into Step~1:
\[
m_g \;=\; \frac{y_g\,v}{\sqrt{2}}
\;=\; \frac{\alpha_s\,v}{\sqrt{2}}\,\exp(-\Phi(d_g))\,(2\sqrt{\pi})^{-(n_D+1)}. \qedhere
\]
\end{proof}
\begin{center}
\begin{tabular}{lccccr}
\hline
Lepton & $d_g$ & $n_D$ & Predicted & Observed & Deviation \\
\hline
$\tau$ & 5 & 1 & 1755~MeV & 1777~MeV & 1.2\% \\
$\mu$ & 13 & 2 & 106.2~MeV & 105.7~MeV & 0.47\% \\
$e$ & 21 & 3 & 0.514~MeV & 0.511~MeV & 0.60\% \\
\hline
\end{tabular}
\end{center}
\begin{remark}[Self-consistency]
Both $\alpha_s$ and $v$ are predicted $\sim 2\%$ low, in the same direction, consistent with a common origin in subleading cascade geometric corrections not computed in this series. The $\mu$ and $e$ predictions, which depend primarily on mass ratios, are correspondingly more accurate.
\end{remark}
\subsection{The fourth generation}
At $d = 29$ ($n_D = 4$), the cascade mass formula extrapolated to the fourth Bott layer gives $m_4 = (\alpha_s v/\sqrt{2})\exp(-\Phi(29))(2\sqrt{\pi})^{-5} \approx 543$~eV, four orders of magnitude below the charged-fermion mass scale (electron $m_e \approx 0.511$~MeV) and four orders of magnitude above the neutrino mass scale ($\sqrt{\Delta m^2_{\rm atm}} \approx 0.05$~eV). Relative to Generation~1, the fourth charged-fermion generation is suppressed by two cascade factors: the geometric wall (one further $d_1 = 19$ phase transition contributing $\exp(-\Phi(29)+\Phi(21)) \approx 3.7\times 10^{-3}$) and one additional hairy-ball obstruction $(2\sqrt{\pi})^{-1} \approx 0.282$, giving $m_4/m_e \approx 1\times 10^{-3}$. The geometric wall in absolute terms is $\exp(-\Phi(29)) = 1.54\times 10^{-5}$ and the topological wall is $(2\sqrt{\pi})^{-(n_D+1)} = (2\sqrt{\pi})^{-5} \approx 1.78\times 10^{-3}$. The same $m_4 \approx 543$~eV serves as the source mass $m_{29}$ in the cascade neutrino-mass formula $m_\nu(\text{Gen}~g) = m_{29}\cdot\alpha(d_g)/\chi^{29 - d_g}$ (Open Questions section, ``Neutrino masses''); the heaviest cascade neutrino mass $m_{29}\cdot\alpha(21)/\chi^8 = 0.0493$~eV matches $\sqrt{\Delta m^2_{\rm atm}} = 0.0495$~eV to $-0.4\%$. Verifier: \texttt{tools/research/cascade\_neutrino\_mass\_audit.py}.
\section{The Cascade Fermion Action}\label{sec:fermion-action}\label{rem:fermion-gauge-coupling}
This section articulates the cascade fermion action with gauge coupling
at the gauge-window layers. The action form is uniquely determined by
six cascade-internal conditions:
\begin{enumerate}[label=(F\arabic*),nosep]
\item Berezin per-layer integration: $\bar\psi\psi$ structure forced
(Remark~\ref{rem:berezin-partition-derivation}, Theorem~\ref{thm:sp31-decomposition}).
\item Per-layer locality: no inter-layer kinetic, derived from
convergence of three cascade-source readings (``Per-layer locality''
paragraph below).
\item Per-layer Dirac mass $m(d) = \sqrt{\alpha(d)}$
(Remark~\ref{rem:berezin-partition-derivation}; cascade square-root
universality).
\item Gauge coupling $g(d) = \sqrt{\alpha(d)}$ ($\sqrt{\alpha}$-universality
at all gauge-window layers; ``Cascade-native universality'' paragraph below).
\item Adams gauge generators $T^a$ at gauge-window layers (Part~IVa~\cite{part4a}
$\mathit{thm{:}adams}$: SU(3) at $d=12$ from $\mathbb{H}^3$, SU(2) at $d=13$
from quaternionic right-mults, U(1) at $d=14$ from $J$).
\item Parity-violating chirality structure from
Theorem~\ref{thm:chirality-factorisation}: $\chi=2$ basin decomposition
at $d=13$ selects L (doublet) vs R (singlet), reproducing the SM SU(2)$_L$
pattern via Part~IVa~\cite{part4a} Section~2 Spin$(12)$ Dirac decomposition.
\end{enumerate}
\medskip\noindent\textbf{Downstream consequences.}
Y-spectrum closure via Theorem~\ref{thm:sector-fundamental-y}; photon
self-energy $1/\alpha_{\rm em}$ screening via
Remark~\ref{rem:per-leg-primitive-derivation}; SU(2)$_L$ parity
violation via Part~IVa~\cite{part4a} Section~2. Per CLAUDE.md Check~7,
semiclassical procedures (Green's functions on cascade spheres,
Coleman--Weinberg potentials on $S^{12}$) are out of bounds for cascade
quantities; no ``higher-loop residual'' open piece exists at the cascade-
native level.
\medskip\noindent\textbf{Proposed form (per-layer local).}
\[
S_f^{\rm cascade} \;=\; \sum_d m(d)\,\bar\psi(d)\psi(d)
\;+\; \sum_{d\in\{12,13,14\}} g(d)\,\bar\psi(d)\,T^a A^a(d)\,\psi(d),
\]
with NO inter-layer kinetic term. The cascade fermion is per-layer
local; multi-layer effects come from products of per-layer Berezin
factors plus the SCALAR cascade slicing
(Remark~\ref{rem:action-uniqueness}'s $(\Delta\varphi)^2$ kinetic
structure on the scalar field). See ``Per-layer locality'' paragraph
below for the derivation.
The ingredients:
\begin{itemize}
\item $m(d) = \sqrt{\alpha(d)} = R(d)/2$ is the per-layer Dirac mass
(Remark~\ref{rem:berezin-partition-derivation}; derived from chirality
halving + Berezin partition, Remark~\ref{rem:sp31-status});
\item $g(d) = \sqrt{\alpha(d)} = R(d)/2$ is the per-layer gauge
coupling in cascade-native units (the standard QFT coupling
$g_{\rm QFT} = \sqrt{4\pi\alpha} = N(d) = 2\sqrt{\pi}\,g_{\rm cascade}(d)$);
\item $T^a$ are the Adams gauge-group generators at the gauge-window
layer:
\begin{itemize}
\item $d=12$ (SU(3)): 8 generators, algebra at $d_0=7$ via
$G_2/\mathrm{SU}(3)$ (Part~IVa~\cite{part4a}).
\item $d=13$ (SU(2)): 3 generators, right-multiplication algebra
$\{R_i,R_j,R_k\}$ extended trivially to the slicing axis
(Part~IVa~\cite{part4a}).
\item $d=14$ (U(1)): 1 generator, $J|_{S^{13}}$ (cascade complex
structure restricted to the $d=14$ sphere; Part~IVa~\cite{part4a}).
\end{itemize}
\end{itemize}
\medskip\noindent\textbf{Cascade-native universality.} The Yukawa
$m(d)$ and gauge coupling $g(d)$ are the \emph{same cascade quantity}
$\sqrt{\alpha(d)}$ at every layer (verifier
\texttt{tools/research/cascade\_fermion\_gauge\_action.py}, Step~2).
This $\sqrt{\alpha}$ universality follows from the cascade's per-layer
mass derivation $m(d) = R(d)/\chi = \sqrt{\alpha(d)}$
(Remark~\ref{rem:sp31-status}: chirality halving + Berezin partition);
the gauge coupling $g(d) = \sqrt{\alpha(d)}$ is the same cascade quantity
under the standard Dirac-vs-coupling relation. Pool-uniqueness
(\texttt{tools/verifiers/fermion\_mass\_uniqueness.py}) confirms
$R(d)/2 = \sqrt{\alpha(d)}$ is the unique cascade-native non-$\sqrt{\pi}$
amplitude in the monomial-in-$\alpha$ pool, but is a sanity check on
the structural derivation rather than the load-bearing argument.
\medskip\noindent\textbf{Per-layer sanity verified.} At $A=0$
(gauge-trivial), the proposed action reduces to
$m(d)\bar\psi\psi$, and Berezin integration gives
$Z_f(d) = m(d) = \sqrt{\alpha(d)}$ exactly. The ratio
$Z_f(d)/Z_s(d) = 1/(2\sqrt{\pi})$ holds to machine precision at
$d\in\{5,13,21,29\}$
(verifier \texttt{tools/research/cascade\_fermion\_gauge\_action.py},
Step~1; matches Remark~\ref{rem:berezin-partition-derivation}).
\medskip\noindent\textbf{Single-particle restriction unifies
fund-or-trivial.} Under single-particle cascade descent
(Part~IVa~\cite{part4a} $\mathit{thm{:}forced\text{-}paths}$:
each cascade observable threads exactly one path), the
gauge-coupling term $g(d)\bar\psi T^a A^a \psi$ admits a single
$T^a$-eigenstate for $\psi$ at the gauge-window layer; this gives
$V_d \in \{\text{trivial}, \text{fundamental}\}$ at each $d$.
Higher representations would require Clebsch--Gordan composition of
multiple fundamentals, contradicting the single-path descent. The
three independent layer arguments of Part~IVa~\cite{part4a}
$\mathit{rem{:}fund\text{-}or\text{-}trivial}$ unify into one under
the proposed gauge-coupled action: a single principle
(single-particle descent + cascade-native gauge coupling) restricts
$V_d \in \{\mathbf{1}, \text{fundamental}\}$ at all three
gauge-window layers.
\medskip\noindent\textbf{Per-layer locality (derivation).}
The proposal contains no inter-layer kinetic term for $\psi$. Three
pieces of cascade source converge on this:
\begin{enumerate}[label=(\arabic*),nosep]
\item Remark~\ref{rem:berezin-partition-derivation} computes
multi-layer fermion contributions as \emph{products} of per-layer
Berezin ratios: ``the product of $n_D$ per-layer ratios reproduces
Theorem~\ref{thm:complete-mass}'s $(2\sqrt{\pi})^{-n_D}$ mass-formula base
exactly.'' Multi-layer fermion physics is multiplicative-per-layer,
not additive-from-an-inter-layer-Lagrangian.
\item The cascade's sphere-bundle ruling-out constraint (sphere
quantities decay super-exponentially in $d$ while
$R(d)/2 \sim 1/\sqrt{2d}$ decays polynomially; per CLAUDE.md
Check~7, see Remark~\ref{rem:sp31-status}) commits the fermion
sector to live in the cascade lattice (1D in the layer index $d$),
with sphere geometry
$S^{d-1}$ as the per-layer realisation but not the source of
dynamics.
\item Part~IVa~\cite{part4a} $\mathit{thm{:}forced\text{-}paths}$
case~(ii) gives the gauge-anchored attenuation as the SCALAR
cascade potential $\exp(\Phi(d_B))$, with the fermion contributing
only the per-layer Berezin factor $(2\sqrt{\pi})^{-1}$ at each
Dirac layer crossed.
\end{enumerate}
The cascade scalar field $\varphi(d) = \ln\Omega_d$ DOES have an
inter-layer kinetic term $(2\alpha(d))^{-1}(\Delta\varphi)^2$
(Remark~\ref{rem:action-uniqueness}); this kinetic structure
carries the cascade descent. The fermion field has no such kinetic
structure of its own; transport between layers is mediated entirely
by the scalar slicing.
The proposal therefore has no layer-coupling open piece (per-layer
locality is derived above), and descent consistency is automatic from
products of per-layer Berezin factors (matching $(2\sqrt{\pi})^{-n_D}$
exactly per Theorem~\ref{thm:complete-mass}).
\medskip\noindent\textbf{Y spectrum: closed via Theorem~\ref{thm:sector-fundamental-y}.}
The cascade has no QFT-style triangle anomalies (per-layer locality
precludes derivative-coupled Dirac operators), so the four
anomaly-like conditions on $V_{14}$ weights cannot arise from
path-integral Jacobians. The cascade-native replacement is
\emph{path-tensor consistency} --- the cascade form of multi-layer
gauge-invariance closure (verifier
\texttt{tools/research/cascade\_path\_tensor\_consistency.py}).
After EW symmetry breaking at $d=13$
(Part~IVa~\cite{part4a}~$\mathit{thm{:}lefschetz}$, $\mathit{thm{:}breaking}$,
$\mathit{thm{:}higgs}$) the unbroken U(1)$_{\rm em}$ at $d=4$ has
generator $Q = T_3 + Y$, the linear combination annihilating the
Higgs vacuum. This is cascade-derived from the Higgs mechanism
plus Theorem~\ref{thm:weinberg}'s diagonalisation of the $(W^3, B)$
mass matrix; it is the cascade-native form of the
Gell-Mann--Nishijima identity (a derived relation, not an assumed
convention).
The Y spectrum itself is closed at the magnitude $+$ sign level
by Theorem~\ref{thm:sector-fundamental-y} (sector-fundamental rule
from cascade gauge centres) plus
Remark~\ref{rem:sector-fundamental-status}'s extended fund-or-trivial
principle: the cascade gauge centres
$\mathbb{Z}_3 \times \mathbb{Z}_2$ act on path-tensor matter via
the diagonal $\mathbb{Z}_6$, forcing $G_{\rm cw}/\mathbb{Z}_6$ as
the effective gauge group with $Y$ quantised at the
sector-fundamental
$1/(\dim V_{12} \cdot \dim V_{13})$ in each $(V_{12}, V_{13})$
sector. Smallest non-trivial irrep selects $k = \pm 1$ for $Q_L$,
$L_L$, $d_R$, $e_R$, $H$; Yukawa singlet
$\bar Q_L \widetilde H u_R$ forces $k = \pm 2$ for $u_R$; the
relation $Y_H = N_c \cdot Y_{Q_L}$ is automatic as the
sector-dimension ratio
(Remark~\ref{rem:sector-fundamental-status}). The only residual is
the basin-label sign convention
(Remark~\ref{rem:cpt-balance-basins}), a labelling internal to the
observer's frame with zero observational input, at strict parity
with the SM's $Q_e = -1$ convention.
\medskip\noindent\emph{What this section earns.} The cascade-lattice
action is articulated with four derived pieces (per-layer Berezin
reduction at $A=0$, $\sqrt{\alpha}$ universality of $m$ and $g$,
per-layer locality from cascade source convergence, single-particle
restriction at all three gauge-window layers) and connects to the
Y-spectrum closure via Theorem~\ref{thm:sector-fundamental-y}. The
QFT triangle-anomaly framing is identified as inapplicable; the
cascade-native replacement is path-tensor consistency, which the
sector-fundamental theorem realises. No structural gap remains in
the action's specification.
\subsection{Y spectrum from cascade gauge centres}\label{subsec:y-spectrum-closure}
\begin{theorem}[Sector-fundamental U(1)$_Y$ rule from cascade gauge centers]\label{thm:sector-fundamental-y}
Let $G_{\rm cw}=\mathrm{SU}(3)\times\mathrm{SU}(2)\times\mathrm{U}(1)_Y$ be the cascade gauge group at the gauge window $\{d=12,13,14\}$ (Part~IVa~\cite{part4a}~$\mathit{thm{:}adams}$), let $Z(\mathrm{SU}(3))=\mathbb{Z}_3$ and $Z(\mathrm{SU}(2))=\mathbb{Z}_2$ be the standard centres, and let $\Psi$ denote a cascade matter state in a definite path-tensor sector
\[
\Psi \;\in\; V_{12}\otimes V_{13}\otimes V_{14},
\qquad V_{12}\in\{\mathbf{1},\mathbf{3}\},\;\; V_{13}\in\{\mathbf{1},\mathbf{2}\},\;\; \dim_{\mathbb{C}}V_{14}=1
\]
(Part~IVa~\cite{part4a}~$\mathit{rem{:}path\text{-}tensor}$, $\mathit{rem{:}fund\text{-}or\text{-}trivial}$). Then the requirement that the diagonal subgroup
\[
\Delta\;:=\;\bigl\{(\zeta_3^{\,a},\,\zeta_2^{\,b},\,e^{2\pi i\,\eta(a,b)})\,:\,a\in\mathbb{Z}/3,\,b\in\mathbb{Z}/2\bigr\}\;\subset\;G_{\rm cw}
\]
act trivially on every cascade matter sector forces $\Delta\cong\mathbb{Z}_6$ to be the unique discrete subgroup of $G_{\rm cw}$ acting trivially on path-tensor matter, with $\eta(a,b)=-(a/3+b/2)\bmod 1$. Consequently:
\begin{enumerate}[label=(\alph*),nosep]
\item The cascade gauge group acts on matter through the quotient $G_{\rm cw}/\mathbb{Z}_6$.
\item The U(1)$_Y$ representations of $G_{\rm cw}/\mathbb{Z}_6$ realised on a $(V_{12},V_{13})$-sector matter state have $Y\in\frac{1}{\dim V_{12}\cdot\dim V_{13}}\mathbb{Z}$ in cascade-native units.
\item The smallest non-trivial $|Y|$ on a $(V_{12},V_{13})$-sector matter state (the \emph{sector-fundamental}) is
\[
|Y|_{\rm sf}(V_{12},V_{13}) \;=\; \frac{1}{\dim V_{12}\cdot\dim V_{13}}.
\]
\end{enumerate}
\end{theorem}
\begin{proof}
\textbf{Step~1 (cascade gauge centres).} The centres $Z(\mathrm{SU}(3))=\mathbb{Z}_3$ and $Z(\mathrm{SU}(2))=\mathbb{Z}_2$ are standard for the cascade gauge groups derived in Part~IVa~\cite{part4a}~$\mathit{thm{:}adams}$ from $\rho(12)-1=8$, $\rho(13)-1=3$, $\rho(14)-1=1$. The U(1)$_Y$ generator at $d=14$ is the cascade complex structure $J|_{S^{13}}$ (Part~IVa~\cite{part4a}~$\S$~on the $d=14$ layer); $J^2=-I$ gives a compact U(1) action.
\textbf{Step~2 (centre action on path-tensor sectors).} On a fundamental rep, the centre acts by a primitive root of unity; on the trivial rep, it acts trivially. Thus on each $(V_{12},V_{13})$-sector:
\begin{itemize}
\item $V_{12}=\mathbf{3}$: $\zeta_3$ acts as $e^{2\pi i/3}$; $V_{12}=\mathbf{1}$: $\zeta_3$ acts as $1$.
\item $V_{13}=\mathbf{2}$: $\zeta_2$ acts as $-1$; $V_{13}=\mathbf{1}$: $\zeta_2$ acts as $1$.
\end{itemize}
A diagonal element $(\zeta_3^a,\zeta_2^b,e^{2\pi i\eta})$ acts on a $(V_{12},V_{13})$-sector $\Psi$ with $Y$-charge $Y$ by the scalar $\exp\bigl(2\pi i(a\,c_3/3+b\,c_2/2+\eta\,Y)\bigr)$, where $c_3\in\{0,1\}$ and $c_2\in\{0,1\}$ are the indicator functions of $V_{12}=\mathbf{3}$ and $V_{13}=\mathbf{2}$ respectively.
\textbf{Step~3 (forced compensation).} Triviality of $\Delta$ on $\Psi$ requires $a\,c_3/3+b\,c_2/2+\eta(a,b)\,Y\in\mathbb{Z}$ for all $(a,b)\in\mathbb{Z}/3\times\mathbb{Z}/2$. Setting $(a,b)=(1,0)$ and $(a,b)=(0,1)$ separately and using the cascade requirement that $\Delta$ act trivially on \emph{every} cascade matter sector (including the maximally non-trivial $(\mathbf{3},\mathbf{2})$ sector with $c_3=c_2=1$) forces
\[
\eta(a,b)\;=\;-\bigl(a/3+b/2\bigr)\bmod 1,
\]
unique up to the choice of generator. The image of $(a,b)\mapsto e^{2\pi i\eta(a,b)}$ in U(1)$_Y$ is the cyclic group of order $\mathrm{lcm}(3,2)=6$; hence $\Delta\cong\mathbb{Z}_6$.
\textbf{Step~4 (effective gauge group).} A representation of $G_{\rm cw}$ on which $\Delta$ acts trivially is, equivalently, a representation of the quotient group $G_{\rm cw}/\Delta=G_{\rm cw}/\mathbb{Z}_6$. By construction of $\Delta$, every cascade matter state $\Psi\in V_{12}\otimes V_{13}\otimes V_{14}$ is such a representation; hence cascade matter transforms under $G_{\rm cw}/\mathbb{Z}_6$.
\textbf{Step~5 (sector-fundamental quantisation).} The U(1)$_Y$ factor of $G_{\rm cw}/\mathbb{Z}_6$ is U(1)$_Y/\mathbb{Z}_n$, where $n=\mathrm{lcm}(3^{c_3},2^{c_2})\in\{1,2,3,6\}$ is the order of the image of $\Delta$ acting on the U(1)$_Y$ factor over the $(V_{12},V_{13})$-sector. By Dirac/Weyl charge quantisation on a multiply-connected compact Lie group, the unitary irreps of U(1)$_Y/\mathbb{Z}_n$ are labelled by characters $e^{2\pi i k Y}$ with $kY\in\frac{1}{n}\mathbb{Z}$; equivalently, $Y\in\frac{1}{n}\mathbb{Z}$ in cascade-native units. For each sector:
\begin{align*}
(V_{12},V_{13})&=(\mathbf{3},\mathbf{2}):\;n=\dim V_{12}\cdot\dim V_{13}=6,\;\;Y\in\tfrac{1}{6}\mathbb{Z};\\
(\mathbf{3},\mathbf{1}):\;n&=3,\;\;Y\in\tfrac{1}{3}\mathbb{Z};\\
(\mathbf{1},\mathbf{2}):\;n&=2,\;\;Y\in\tfrac{1}{2}\mathbb{Z};\\
(\mathbf{1},\mathbf{1}):\;n&=1,\;\;Y\in\mathbb{Z}.
\end{align*}
The smallest non-trivial $|Y|$ in each sector is therefore $1/n=1/(\dim V_{12}\cdot\dim V_{13})$, establishing claim~(c). Claims~(a),~(b) follow from Step~4 and Step~5 directly.\qed
\end{proof}
\begin{remark}[What Theorem~\ref{thm:sector-fundamental-y} closes and what it does not]\label{rem:sector-fundamental-status}
\textbf{Closure status of (R1b).}
Theorem~\ref{thm:sector-fundamental-y} establishes the sector-fundamental U(1)$_Y$ rule cascade-natively: the rule is now \emph{cascade-forced}, not just austerity-respecting and SM-spectrum-selected. The five SM matter types occupying the sector-fundamental in their respective $(V_{12},V_{13})$-sectors --- $|Y_{Q_L}|=1/6$, $|Y_{u_R}|=|Y_{d_R}|=1/3$ (modulo Yukawa-singlet shift; see below), $|Y_{L_L}|=|Y_H|=1/2$, $|Y_{e_R}|=1$ --- now match the cascade sector-fundamental $|Y|_{\rm sf}=1/(\dim V_{12}\cdot\dim V_{13})$ derived in claim~(c).
\textbf{The u$_R$ outlier is not a counterexample.} u$_R$ sits at $|Y_{u_R}|=2/3$ in its $(\mathbf{3},\mathbf{1})$-sector, i.e.\ at \emph{twice} the sector-fundamental $1/3$. This is forced by gauge invariance of the Yukawa singlet $\bar Q_L\widetilde H u_R$ together with the closure of (R1a) $|Y_H|=1/2$ and (R1c) sign$(Y_H)=$sign$(Y_{Q_L})$ (verifier \texttt{tools/research/cascade\_y\_trace\_identity.py} Step~2). Theorem~\ref{thm:sector-fundamental-y} predicts only that allowed Y values lie on the sector-fundamental lattice $\frac{1}{n}\mathbb{Z}$; the Yukawa singlet picks out the specific lattice point $|Y|=2\cdot|Y|_{\rm sf}$ for u$_R$.
\textbf{What Theorem~\ref{thm:sector-fundamental-y} requires.} The forcing argument of Step~3 hinges on requiring that $\Delta$ act trivially on \emph{every} cascade matter sector. This is the cascade-internal content: cascade matter is exhausted by the four $(V_{12},V_{13})$-sectors $\{(\mathbf{1},\mathbf{1}),(\mathbf{1},\mathbf{2}),(\mathbf{3},\mathbf{1}),(\mathbf{3},\mathbf{2})\}$ per Part~IVa~\cite{part4a}~$\mathit{rem{:}fund\text{-}or\text{-}trivial}$, and the path-tensor structure (Part~IVa~\cite{part4a}~$\mathit{rem{:}path\text{-}tensor}$) places \emph{realised} matter in all four sectors except $(\mathbf{1},\mathbf{1})$ at the level of left-handed Weyl content (Q$_L$ in $(\mathbf{3},\mathbf{2})$, L$_L$ in $(\mathbf{1},\mathbf{2})$, $u_R^c,d_R^c$ in $(\bar{\mathbf{3}},\mathbf{1})$, $e_R^c$ in $(\mathbf{1},\mathbf{1})$). The maximally non-trivial sector $(\mathbf{3},\mathbf{2})$ is realised by Q$_L$, which fixes $\eta(a,b)=-(a/3+b/2)$ uniquely.
\textbf{(R1) is automatic from Theorem~\ref{thm:sector-fundamental-y}.} The relation $Y_H = N_c\cdot Y_{Q_L}$ (Part~IVa~\cite{part4a} Remark on the open Y-spectrum question, item~(R1)) is a \emph{consequence} of Theorem~\ref{thm:sector-fundamental-y}, not an additional open piece. Both $H$ and $Q_L$ sit at the sector-fundamental of their respective sectors $(\mathbf{1},\mathbf{2})$ and $(\mathbf{3},\mathbf{2})$, which share the SU(2)-doublet factor $V_{13}=\mathbf{2}$. The ratio is therefore
\[
\frac{|Y_H|}{|Y_{Q_L}|} \;=\; \frac{\dim V_{12}(Q_L)\cdot\dim V_{13}(Q_L)}{\dim V_{12}(H)\cdot\dim V_{13}(H)} \;=\; \frac{\dim V_{12}(Q_L)}{\dim V_{12}(H)} \;=\; \frac{N_c}{1} \;=\; N_c,
\]
where $V_{13}$ cancels and $N_c=\rho(12)-1=3$ is the cascade Adams count (Part~IVa~\cite{part4a}~$\mathit{thm{:}adams}$). Combined with (R1c) sign correlation (Part~IVa~\cite{part4a} Remark on the open Y-spectrum question), this yields the composite relation $Y_H=N_c\cdot Y_{Q_L}$ with no separate trace-identity derivation required. The factor $N_c$ is the \emph{sector dimension ratio}, not a color trace. Verifier: \texttt{tools/research/cascade\_r1\_closure.py}.
\textbf{What is not closed by Theorem~\ref{thm:sector-fundamental-y}.}
\begin{enumerate}[label=(\alph*),nosep]
\item The \emph{sign} of $Y_{Q_L}$ within the $(\mathbf{3},\mathbf{2})$-sector remains a basin-label convention (Remark~\ref{rem:cpt-balance-basins}); Theorem~\ref{thm:sector-fundamental-y} fixes $|Y|_{\rm sf}$, not its sign.
\item The \emph{specific lattice point} (sector-fundamental vs.\ $k\cdot$~sector-fundamental for $k\in\mathbb{Z}$) is determined for $u_R$ at $k=2$ by the Yukawa singlet condition $Y_{u_R}=Y_{Q_L}+Y_H=1/6+1/2=2/3$ (gauge invariance of $\bar Q_L\widetilde H u_R$); for the remaining five matter types ($Q_L$, $d_R$, $L_L$, $e_R$, $H$), $k=\pm 1$ is selected by extended fund-or-trivial (matter at smallest non-trivial irrep of $\mathrm{U}(1)_Y/\mathbb{Z}_n$).
\end{enumerate}
\textbf{Tier classification.} Tier~2 (cascade-forced closure of the sector-fundamental rule plus the $Y_H=N_c\cdot Y_{Q_L}$ relation; Y-spectrum chain complete at the magnitude $+$ sign level modulo basin-label sign convention).
\textbf{Companion verifiers.}
\texttt{tools/research/cascade\_r1b\_via\_rep\_theory.py} (identifies the gauge-centre-quotient mechanism among four candidate routes);
\texttt{tools/research/cascade\_r1b\_closure\_attempt.py} (verifies sector-fundamental match for all five SM matter types $Q_L, d_R, L_L, e_R, H$ at sector-fundamental, with u$_R$ correctly excluded as Yukawa-forced $2\times$ sector-fundamental);
\texttt{tools/research/cascade\_r1\_closure.py} (verifies $Y_H=N_c\cdot Y_{Q_L}$ as automatic from sector-fundamental theorem $+$ extended fund-or-trivial $+$ (R1c)).
\end{remark}
\section{Quark Masses and the Colour Correction}\label{sec:quark-mass}
\subsection{The Georgi--Jarlskog pattern from gauge window position}
\begin{theorem}[Georgi--Jarlskog pattern]
The GUT-scale ratio of down-type quark mass to charged lepton mass within each generation is:
\begin{align*}
m_b/m_\tau &\approx N_c = 3 \quad \text{(Gen 3, $d = 5$: outside gauge window)}, \\
m_s/m_\mu &\approx 1/N_c = 1/3 \quad \text{(Gen 2, $d = 13$: inside gauge window)}, \\
m_d/m_e &\approx N_c = 3 \quad \text{(Gen 1, $d = 21$: outside gauge window)}.
\end{align*}
\end{theorem}
\begin{proof}
Generation 2 sits at $d = 13$, inside the gauge window $\{12, 13, 14\}$, directly on the SU(2) breaking layer. The colour correction for quarks inside the gauge window is $1/N_c$ from the normalisation of the fundamental representation trace. Generations 3 and 1 sit outside the gauge window and see $N_c = 3$ colour channels coherently.
\end{proof}
This is the Georgi--Jarlskog pattern [11], derived from the cascade's geometry rather than from SU(5) grand unification.
\begin{remark}[A precision hit in $b/s$]
The cascade predicts $b/s = (\text{lepton ratio}) \times e = 16.53 \times e = 44.93$, compared to the observed $b/s = 44.75$ (deviation 0.40\%). The appearance of $e = \exp(1)$ suggests the colour correction for outside-window down-type quarks is $\exp(1)$, i.e., one unit of cascade potential accumulated across the SU(3) layer. Whether this can be derived from Adams' theorem is an open question.
\end{remark}
\begin{theorem}[$d_0=7$ shift to $b/s$]\label{thm:bs-closure}
The leading $b/s = 44.93$ is closed within experimental precision by
the $\mathrm{SU}(3)$-algebra-layer shift
\[
\delta\Phi_{b/s} \;=\; -\frac{\alpha(7)}{\chi^4} \;=\; -\frac{R(7)^2}{4\cdot 16},
\]
sourced at the area maximum $d_0=7$ (\cite{part0}, Theorem~7.1)