-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMagnetismGravity.tex
More file actions
6588 lines (5386 loc) · 381 KB
/
Copy pathMagnetismGravity.tex
File metadata and controls
6588 lines (5386 loc) · 381 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[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel} % Używamy angielskiego dla stabilności kompilacji
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{geometry}
\usepackage{booktabs}
\usepackage{caption}
\usepackage{enumitem}
\usepackage{array} % Do tabel
\usepackage{tabularx} % Do elastycznych tabel
\usepackage{tikz}
\usepackage{pgfplots}
\usepackage{rotating}
\usepackage{listings}
\usepackage{subcaption}
\usepackage{bm}
\usepackage{url}
\usepackage{lineno}
%\usepackage{fancyhdr}
%\pagestyle{fancy}
\usepackage{hyperref}
\usepackage{pdflscape}
\lstset{
inputencoding=utf8,
extendedchars=true
language=Python,
basicstyle=\scriptsize\ttfamily,
keywordstyle=\color{blue},
commentstyle=\color{green!40!black},
stringstyle=\color{orange},
numbers=left,
numberstyle=\tiny\color{gray},
breaklines=true,
frame=single,
breaklines=true,
captionpos=b,
tabsize=4
}
\pgfplotsset{compat=1.18} % Użycie najnowszej wersji dla kompatybilności
\usetikzlibrary{positioning, decorations.pathmorphing, arrows.meta} % Dodatkowe
\begin{document}
% TODO: write your article's title here.
% The article title is centered, Large boldface, and should fit in two lines
\begin{center}{\Large \textbf{
{The Geometric Identity of Gravity and Dimensional Unification Resolving $\alpha$, Lepton $(g-2)_l$, Weinberg, and Cabibbo Mixing}
}}\end{center}
% TODO: write the author list here. Use initials + surname format.
% Separate subsequent authors by a comma, omit comma at the end of the list.
% Mark the corresponding author with a superscript *.
\begin{center}
Łukasz Smoliński\textsuperscript{1}
\end{center}
% TODO: write all affiliations here.
% Format: institute, city, country
\begin{center}
\textbf{\textsuperscript{1}Independent Researcher, 61-160 Czapury, Poland}
\end{center}
\begin{center}
% Poprawna forma \href{adres}{tekst widoczny}
%\href{mailto:l_smolinski@o2.pl}{l\_smolinski@o2.pl}
\end{center}
\begin{center}
\today \\
Version: 5.0.2
\end{center}
% For convenience during refereeing: line numbers
\linenumbers
\section*{Abstract}
{\boldmath \textbf{
A unified geometric wave model is proposed, deriving the Gravitational
Constant ($G$), the Fine-Structure Constant ($\alpha$), and lepton
anomalous magnetic moments ($a_l$) from a single structural modulator:
the geometric vacuum stiffness $\epsilon_M$. $G$ is established as a
precise, $\hbar$-independent identity rooted in the soliton's wave
geometry. The derivation uses the ideal BCC projection
$L_p^{\text{geom}} = 2/\sqrt{3}$; the remaining deviation from the
measured value reflects lattice packing impedance, not a free
parameter. The same $\epsilon_M$ factor governs a recursive nodal
integration that predicts the electron anomalous magnetic moment from
pure geometry and yields the full muon and tau anomalous magnetic
moments via a unified dimensional projection over the BCC lattice,
without perturbative QED calibrations. The framework posits that the
observed invariance of $G$ is a low-field artefact of a dynamic
geometric equilibrium, predicting testable deviations ($G_{eff} \neq
G$) in environments with strong local magnetic moments where this
equilibrium is exceeded. Crucially, the derivation of $\alpha$ and the
anomalous magnetic moments ($a_l$) are shown to be independent of mass
and charge, revealing that these constants are intrinsic topological
properties of the vacuum lattice rather than secondary products of
particle-field interactions. This geometric mapping reveals a
dimensional hierarchy ($\pi^5, \pi^6$), resolving the Weinberg angle
and Cabibbo mixing as emergent consequences of the vacuum's surface
and volumetric resonance modes. Consequently, the divergence of
fundamental forces is identified as a dimensional artefact of the
unified BCC lattice, establishing a structural foundation for
cosmological scaling.
}}
\\
% TODO: include a table of contents (optional)
% Guideline: if your paper is longer that 6 pages, include a TOC
% To remove the TOC, simply cut the following block
\vspace{10pt}
\noindent\rule{\textwidth}{1pt}
\vspace{1em}
\noindent\textbf{Keywords:} Anomalous Magnetic Moments, Fine-Structure Constant, Gravitational Constant, Weinberg angle, Cabibbo angle, BCC lattice, Geometric Origin, Unification Theory.
\tableofcontents\thispagestyle{plain}
\noindent\rule{\textwidth}{1pt}
\vspace{10pt}
\section{Geometric Hierarchy of EWT and Spacetime Elasticity}
Energy Wave Theory (EWT) is based on a quantum medium and establishes a clear hierarchy of entities, starting from the Planck scale. This geometric structure is crucial for the elasticity of spacetime and maintaining the constancy of the speed of light \cite{Yee2020Aether}.
\subsection{Wheeler's Vision of Quantum Vacuum and the Path to EWT}
The search for a discrete, pregeometric structure underlying spacetime
has a rich intellectual history, with John Archibald Wheeler as one of
its most profound and visionary architects. Wheeler's work spanned
several interlocking themes, each of which resonates – sometimes
supportively, sometimes critically – with the Energy Wave Theory
(EWT) presented here.
\subsubsection*{Geometrodynamics and the 3‑Geometry}
Wheeler championed the idea that physics could be reduced to pure
geometry \cite{Wheeler1962}. In his geometrodynamic program,
particles such as electrons and photons were to be understood as
\textbf{geons} – gravitational and electromagnetic fields trapped
by their own curvature, embodying the principle of ``mass without
mass'' \cite{MisnerThorneWheeler1973}. The Wheeler–DeWitt equation
\cite{DeWitt1967} attempted to quantise this 3‑geometry,
laying the foundation for canonical quantum gravity.
EWT shares the conviction that geometry is primary, but it
replaces Wheeler's continuous 3‑geometry with a \textbf{discrete
body‑centered cubic (BCC) lattice} of Elastic Medium Constituents
(EMCs). The gravitational constant $G$ emerges not from quantised
continuum curvature, but from the volumetric packing deficit of
these spherical units – a concrete, calculable pregeometry.
\subsubsection*{Quantum Foam and Pregeometry}
Perhaps Wheeler's most radical proposal was that at the Planck
scale, spacetime is no longer smooth but becomes a chaotic,
fluctuating \textbf{quantum foam} \cite{Wheeler1957} – a topological
tapestry of wormholes and virtual geometries. He further argued
that such a foam must be preceded by an even more fundamental
structure: \textbf{pregeometry} \cite{Wheeler1980}, the
information‑theoretic or combinatorial substrate from which
geometry itself crystallises.
In EWT, the quantum foam is replaced by a \textbf{static, ordered
BCC crystal} with a well‑defined packing fraction ($\eta \approx 0.68$)
and a residual impedance $\zeta$. This is not a
foam but a \textbf{mechanical lattice}, whose elasticity (encoded
in the effective geometric stiffness $N_{\text{geom}} = 8\pi^4(1-\zeta)$) gives rise
to both gravitational and electromagnetic constants. Thus EWT
provides a \textbf{concrete realisation of Wheeler's pregeometry},
replacing speculative foam with an engineerable lattice.
\subsubsection*{It from Bit – and the Alternative of Geometric Realism}
Wheeler's famous aphorism \textbf{``it from bit''} \cite{Wheeler1990}
asserted that every physical entity (``it'') derives from
yes/no questions (``bits''), elevating information to the
ontologically primitive level.
EWT takes a different stance. Here, the primitive is
\textbf{geometric}: the BCC lattice and its spherical EMCs are
not made of bits; they are the actual fabric of the vacuum.
Information is an emergent property of geometric configurations,
not their foundation. Consequently, EWT aligns more closely
with a \textbf{geometric realism} than with Wheeler's
informational idealism – a crucial philosophical fork
that distinguishes the present work from the Wheelerian
mainstream.
\subsubsection*{Evolution of Wheeler's Ideas in EWT}
The table below summarises how each major Wheelerian concept
has been transformed in the EWT framework:
\bigskip
\noindent
\begin{tabular}{lp{5cm}p{6cm}}
\toprule
\textbf{Wheeler concept} & \textbf{Original meaning} & \textbf{EWT implementation / stance} \\
\midrule
Geometrodynamics & Continuous 3‑geometry, geons & Discrete BCC lattice, EMC units, $N_{\text{final}}=8\pi^4$ \\
Quantum foam & Chaotic Planck‑scale topology & Ordered BCC crystal, static packing deficit \\
Pregeometry & Abstract information substrate & Concrete BCC lattice with calculable elasticity \\
It from bit & Information ontological primacy & Superseded by Geometric Realism (Geometry precedes information) \\
\bottomrule
\end{tabular}
\bigskip
\noindent
Thus, while EWT draws inspiration from Wheeler's insistence
on a pregeometric foundation, it replaces the fluid,
information‑theoretic speculations with a \textbf{rigid,
calculable lattice} – a shift from ``foam'' to ``crystal''
and from ``bit'' to ``geometric element''. This evolution
allows EWT to compute $G$, $\alpha$, and the lepton anomalous
magnetic moments from first principles, fulfilling Wheeler's
dream of a pregeometry while discarding the elements that
proved non‑predictive.
\subsection{The Elastic Medium Constituent (EMC)}
The \textbf{Elastic Medium Constituent (EMC)} is the smallest, fundamental geometric entity, which serves as the physical quantization limit of the proposed medium. Its size and spacing are directly linked to the requirement for the medium to propagate the electromagnetic wave at the speed of light $c$.
\begin{itemize}
\item \textbf{Geometric Radius ($\mathbf{r_{\text{EMC}}}$):} In EWT, the EMC radius is typically defined as a magnitude on the order of $10^{-35} \text{ m}$, closely related to the \textbf{Planck Length} ($\lambda_{l} \approx 1.616 \times 10^{-35} \text{ m}$). This radius is the fundamental unit of length. Assuming the approximate value derived from the Planck scale:
\begin{equation}
r_{\text{EMC}} \approx 1.0 \times 10^{-35} \text{ m}
\label{eq:granule_radius_approx}
\end{equation}
\item \textbf{Inter-Constituent Distance ($\mathbf{d_{\text{EMC}}}$) and Wavelength Quantum ($\mathbf{\lambda_{l}}$):} The distance between the centers of adjacent EMCs defines the minimum wavelength, which directly influences the wave propagation speed $c$ in the medium \cite{Yee2020Aether}. This distance is equal to the \textbf{Planck Length}:
\begin{equation}
d_{\text{EMC}} = \lambda_{l} \approx 1.616 \times 10^{-35} \text{ m}
\label{eq:emc_distance}
\end{equation}
\item \textbf{Geometric Reference and Quantization:} The radius $r_{\text{EMC}}$, the distance $d_{\text{EMC}}$ %and amplitude $A_{\text{max}}$%
define the \textbf{absolute limit of spatial quantization} within the medium. The EMC is utilized as a geometric reference point for all larger structures.
\end{itemize}
\subsection{The Wave Center (WC)}
The Wave Center (WC) is defined as the focal point of oscillation in the elastic medium. The continuous interference of waves focused on this point establishes a standing wave structure (Soliton), which constitutes the localized oscillating volume of the medium. A single WC represents the fundamental unit of stored energy in the medium. Complex particles, such as the electron, are modeled as structures composed of multiple WCs. The variable $\mathbf{K_{WC}}$ represents the \textbf{number of constituent Wave Centers} in a given composite structure. For example, in the derivation of the electron's mass and charge, $K_{WC}$ is a crucial summation factor \cite{yee2019geometry}.
\subsection{The Soliton}
A \textbf{Soliton} (or particle) in EWT is a stable structure of standing waves created by one or more WCs.
\begin{itemize}
\item \textbf{Standing Wave Boundary:} The Soliton is defined by the boundary where the generated standing waves transition into traveling waves. This transition point defines the geometric radius of the particle.
\item \textbf{Energy and Mass Relation:} The energy stored in the standing waves of the Soliton is the source of the particle's rest mass, linking the wave structure directly to the mass-energy equivalence $E=mc^2$ \cite{yee2019geometry}.
\end{itemize}
\subsection{Elastic Interaction (Hooke's Law)}\label{sec:hookes_law}
The stability of the geometric structure hinges upon the nature of the medium's internal forces. Interactions between the Elastic Medium Constituents are modeled as **elastic compression interactions (repulsion)**, a mechanism essential for Soliton stability and the propagation of energy.
\begin{itemize}
\item \textbf{Interaction Nature (Hooke's Law):} The force of repulsion between adjacent EMCs, when displaced from their equilibrium position ($x$), strictly follows \textbf{Hooke's Law} \cite{yee2019spacetime, Yee2020Physics}. This principle is interpreted as the fundamental \textbf{elasticity of the quantum medium}, which is necessary to \textbf{counteract} \textbf{enforce structural symmetry}:
\begin{equation}
\vec{F}_{\text{Hooke}} = -k \vec{x}
\label{eq:hooke_law}
\end{equation}
where $k$ is the \textbf{elastic constant} specific to the medium.
\item \textbf{Significance for Solitons and Volume Symmetry:} This elastic interaction ensures that the medium prevents unlimited compression of the Constituents.
\end{itemize}
\begin{figure}[h!]
\centering
\begin{tikzpicture}[scale=1.5] % Zwiększona skala bazowa
% --- WSPÓŁRZĘDNE ---
\def\GranuleRadius{1.2} % WIĘKSZY PROMIEŃ GRANULKI
\def\AetherRadius{2.5}
\def\NewEnd{1.85} % NOWY PUNKT KOŃCOWY STRZAŁEK (1.2 + (2.5-1.2)/2)
% Tło - Szary Aether
\fill[gray!20, opacity=0.3] (0,0) circle (\AetherRadius cm);
% Rysowanie EMC (Granulki)
\draw[ultra thick, fill=white, draw=blue!80!black] (0,0) circle (\GranuleRadius cm);
% Etykieta EMC (PRZESUNIĘTA NA WYSOKOŚĆ 0.6 PROMIENIA)
\node[draw=none, fill=none, inner sep=2pt, font=\bfseries] at (0, 0.60*\GranuleRadius) {EMC};
% --- Symboliczne Wektory Elastyczności (Prawo Hooke'a) - CZERWONE ---
% Wektor Pionowy (Siła Hooke'a F = -kx)
\draw[-{Stealth[length=2mm]}, very thick, color=red!90!black] (90:\GranuleRadius cm) -- (90:\NewEnd cm);
\node[right=5pt, anchor=west, color=red!90!black] at (0, \NewEnd cm) {Force $\mathbf{F} = -k\mathbf{x}$};
% Oznaczenie stałej k (nad wektorem F)
\node[color=red!90!black, above=2pt] at (0, \NewEnd cm) {$\mathbf{k}$};
% Wektory Poziome (Symbol sprężystości)
\draw[-{Stealth[length=2mm]}, very thick, color=red!90!black] (180:\GranuleRadius cm) -- (180:\NewEnd cm);
\draw[-{Stealth[length=2mm]}, very thick, color=red!90!black] (0:\GranuleRadius cm) -- (0:\NewEnd cm);
% Wektor Pionowy Dolny
\draw[-{Stealth[length=2mm]}, very thick, color=red!90!black] (270:\GranuleRadius cm) -- (270:\NewEnd cm);
% Promień EMC (związany ze skalą Plancka) - CZARNE
\draw[dashed, black!70] (0,0) -- (\GranuleRadius, 0);
% Przesunięcie w lewo
\draw[<->, very thick, draw=black!90, shorten >=3pt, shorten <=3pt] (\GranuleRadius, -0.1) -- (-0.1, -0.1) node[midway, below] {$\mathbf{r_{\text{EMC}}} \sim l_p$};
\end{tikzpicture}
\caption{\textbf{The Elastic Medium Constituent (EMC) and Hooke's Law.} The EMC is the minimal geometric unit (defined by $r_{\text{EMC}} \sim l_p$) where the fundamental elasticity ($\mathbf{k}$) of the medium manifests as a repulsive force $\mathbf{F} = -k\mathbf{x}$, ensuring the Soliton's stability against geometric collapse. \textbf{(Note: $l_p$ denotes the Planck length, establishing the geometric scale for $r_{\text{EMC}}$.)}}
\label{fig:emc_hookes_law}
\end{figure}
\begin{figure}[h!]
\centering
\begin{tikzpicture}[scale=1.5]
\def\GranuleRadius{0.8} % Promień granulki
\def\CenterX{0.8} % Pozycja środka (częściowe nałożenie)
\def\CenterY{0.5}
% Rysowanie dwóch EMC
% EMC 1 (Lewa)
\draw[ultra thick, fill=white, draw=blue!80!black] (-\CenterX, \CenterY) circle (\GranuleRadius cm) node at (-\CenterX, \CenterY) {EMC 1};
% EMC 2 (Prawa)
\draw[ultra thick, fill=white, draw=blue!80!black] (\CenterX, \CenterY) circle (\GranuleRadius cm) node at (\CenterX, \CenterY) {EMC 2};
% --- Reprezentacja Ściskania (x) i Siły Wyporu (F) ---
% Ściskanie x (NIEBIESKIE)
% Używamy stylu |-|, lepszego do wymiarowania/odległości
\draw[<->, very thick, draw=blue!70!black, >=|] (-\GranuleRadius, \CenterY - 1.2) -- (\GranuleRadius, \CenterY - 1.2);
\node[align=center, below, font=\bfseries] at (0, \CenterY - 1.2) {Overlap/Compression $\langle\vec{\mathbf{x}}\rangle$};
% Siła Odpychania F (CZERWONA)
% Strzałka w prawo (od EMC 1)
\draw[-{Stealth[length=3mm]}, ultra thick, color=red!90!black] (-\GranuleRadius, \CenterY + 0.5) -- (\CenterX + \GranuleRadius + 0.8, \CenterY + 0.5) node[right, red!90!black] {Force $\mathbf{F} = -k\mathbf{x}$};
% Strzałka w lewo (od EMC 2)
\draw[-{Stealth[length=3mm]}, ultra thick, color=red!90!black] (\GranuleRadius, \CenterY + 0.5) -- (-\CenterX - \GranuleRadius - 0.8, \CenterY + 0.5);
% Usunięto: Etykieta Centralna (Hooke's Law)
\end{tikzpicture}
\caption{\textbf{Elastic Interaction between two EMCs.} The geometric overlap (compression $\vec{\mathbf{x}}$) between adjacent Constituents generates the repulsive Hooke's Force $\mathbf{F} = -k\vec{\mathbf{x}}$. This mechanism is the source of Soliton stability, balancing the internal geometric deficit $\mathbf{(\epsilon_{G})}$.}
\label{fig:emc_interaction}
\end{figure}
The macroscopic stiffness parameter $N$ (as defined in Eq. \ref{eq:epsilon_M_definition}) used in the derivation of the gravitational constant and anomalous magnetic moments is the emergent aggregate of the microscopic elastic constants $k$ of the BCC lattice substrate. While $k$ defines the fundamental repulsive interaction between individual EMCs following Hooke's Law \eqref{eq:hooke_law}, $N$ represents the global resistance of the vacuum to volumetric displacement. This connection bridges the localized elastic forces shown in Fig. \ref{fig:emc_interaction} with the large-scale stability required for the precise determination of leptonic anomalies.
\subsection{From Energy Domain to Geometric Domain}
The Energy Wave Theory (EWT), as developed by Yee \cite{yee2020constants}, successfully derived 23 fundamental physical constants from five wave constants: longitudinal amplitude $A_l$, longitudinal wavelength $\lambda_l$, aether density $\rho$, wave speed $c$, and the electron's wave center count $K_{WC}=10$. In that framework, charge was already reinterpreted as wave amplitude, measured in meters, hinting at an underlying geometric reality. The present work extends this program by identifying the physical substrate of these waves: a Body-Centered Cubic (BCC) lattice of spherical Elastic Medium Constituents (EMCs). The wave constants are thus replaced by geometric invariants of this lattice: the statutory neutrino radius $r_{\nu}$ (related to $\lambda_l$ and $K_{WC}$), the effective nodal stiffness $N_{\text{geom}} = 8\pi^4(1-\zeta)$ (derived from the BCC coordination number and packing impedance), and the magnetic deficit $\epsilon_M = 1/(N_{\text{geom}}\pi^3)$ (encoding the 7-dimensional weak interaction scale). This transition from the energy domain to the geometric domain not only preserves the predictive power of EWT but also unifies gravity, electromagnetism, and the weak force under a single topological framework.
\section{Geometric Equation of the Fine-Structure Constant and the Deficit Terms}
\label{sec:alpha_geometric_deficit}
The \textbf{fine-structure constant} ($\alpha$) is defined within Energy Wave Theory (EWT) as a geometric ratio describing the relative strengths of fundamental forces---charge energy, magnetism, and gravity \cite{Yee2019alfa,yee2025geometriccorrection}.
The derivation of the inverse fine-structure constant ($1/\alpha$) is realized as the combination of a purely geometric core and a small topological correction. The core is obtained from the surface geometry of the soliton, while the correction is dictated by the BCC lattice structure.
This approach redefines fundamental particle properties:
\begin{itemize}
\item \textbf{Charge as Amplitude:} Electric charge is interpreted not as an abstract quantity, but as the physical \textbf{amplitude} ($x$) of a standing wave oscillation within a quantum medium.
\item \textbf{Geometric Ratio for $\alpha$:} The fine-structure constant is defined as the ratio of squared amplitudes, which is equated to a geometric ratio involving the total surface area of energy propagation ($S$):
\end{itemize}
\begin{equation}
\alpha = \frac{A_{1}^{2}}{A_{0}^{2}} = \frac{x^{2}}{S}
\end{equation}
\subsection*{Geometric Soliton Core ($\mathbf{4\pi^{3} + \pi^{2} + \pi}$)}
The derivation of the pure geometric constant $\mathbf{A}_{\pi}$ was first proposed by Jeff Yee \cite{Yee2019alfa} within the framework of the Energy Wave Theory. The core postulate involves equating the fine-structure constant to a specific ratio of surface areas in the quantum background, and the derivation proceeds in the following steps:
\begin{enumerate}[label=\textbf{Step \arabic*:}]
\item \textbf{Defining the Total Surface Area $S$}
The total surface area $S$ is the sum of the sphere surface area and the total cone surface area:
\begin{equation}
S = \underbrace{4\pi l^{2}}_{\text{Sphere Area}} + \underbrace{(\pi r l + \pi r^{2})}_{\text{Total Cone Area}}
\end{equation}
\item \textbf{Substitution of Geometric Relations ($r=x$, $l=\pi x$)}
Substituting $r=x$ and $l=\pi x$ expresses $S$ solely in terms of $\pi$ and $x$:
\begin{equation}
S = 4\pi (\pi x)^{2} + (\pi (x) (\pi x) + \pi x^{2})
\end{equation}
\item \textbf{Simplification}
The expression is simplified by factoring out $x^2$:
\begin{equation}
S = 4\pi^3 x^2 + \pi^2 x^2 + \pi x^{2} = x^{2}(4\pi^{3} + \pi^{2} + \pi)
\end{equation}
\item \textbf{Final Geometric Fine-Structure Constant}
Substituting the simplified $S$ into $\alpha = x^2 / S$, the $x^2$ terms cancel, yielding $\alpha$ as a pure function of $\pi$:
\begin{equation}
{\mathbf{A}_{\pi}}^{-1} = \frac{1}{4\pi^{3} + \pi^{2} + \pi}
\label{eq:A_pi}
\end{equation}
\end{enumerate}
\paragraph{Kinematic Origin of the \(\pi\) Factor}
The relation \(l = \pi x\) defines the propagation distance in terms of the source amplitude. It is not an arbitrary geometric choice but a consequence of the harmonic motion of the central EMC in an elastic medium with constant propagation speed \(c\). In one complete oscillation the central granule travels a total longitudinal displacement of \(2x\). During the same time interval, the disturbance emitted by this motion propagates outward at the lattice speed \(c\). Because the central granule follows a sinusoidal path, its corresponding longitudinal phase advance is exactly \(\pi x\), whereas the undisturbed wavefront travels the longer distance \(l = \pi x\). The factor \(\pi\) therefore enters through the kinematics of harmonic oscillation, not as a fitted parameter. This mechanical origin of \(l\) is what ultimately generates the characteristic powers \(\pi^{3}, \pi^{2}, \pi\) in the fine-structure geometry.
\subsection{BCC Lattice Geometry and the Geometric Ladder}
\label{sec:geom_ladder}
The vacuum lattice is a discrete body-centred cubic (BCC) lattice of Elastic Medium Constituents (EMCs). The BCC lattice is characterised by:
\begin{itemize}
\item \(8\) nearest neighbours,
\item packing fraction
\begin{equation}
\eta_{\text{BCC}} = \frac{\sqrt{3}\,\pi}{8},
\label{eq:eta_BCC}
\end{equation}
\item ideal projection factor
\begin{equation}
L_p^{\text{geom}} = \frac{2}{\sqrt{3}},
\label{eq:Lp_geom}
\end{equation}
\end{itemize}
The factor \(L_p^{\text{geom}}\) is the inverse of the dimensionless nearest-neighbour distance in the BCC lattice. It is not an adjustable constant but a direct consequence of the \(Im\bar{3}m\) space group: the nearest neighbour lies at \(d/a = \sqrt{3}/2\), and its inverse gives the geometric projection factor \(2/\sqrt{3}\).
The BCC geometry introduces the constants \(\pi\) and \(\sqrt{3}\) directly through the packing fraction. In later derivations, the face-diagonal factor \(\sqrt{2}\) appears in the lattice projection operators and in the unified coupling bridge, while Euler's number \(e\) enters through the Eulerian dilution of the statutory vacuum density. Neither of these constants is fitted; each has a well-defined geometric role in the corresponding section.
The geometry of the lattice imposes a natural dimensional hierarchy on the soliton's wave structure. Each additional active degree of freedom contributes one factor of \(\pi\), giving rise to the following geometric ladder:
\begin{table}[h]
\centering
\small
\caption{The Geometric Ladder: Dimensional Interaction Topology}
\label{tab:dimensional_ladder_origin}
\begin{tabular}{l l l c}
\toprule
\textbf{Scale} & \textbf{Interaction} & \textbf{Budget Components} & \textbf{Dim.} \\
\midrule
$\pi^7$ & Charged Weak & 3D + $A + f + r + Q$ & 7 \\
$\pi^6$ & Neutral Weak & 3D + $A + f + r$ & 6 \\
$\pi^5$ & Flavor Mixing & 3D + $A + f$ & 5 \\
$\pi^4$ & Int. Binding & 3D + $A$ & 4 \\
$\pi^3$ & Spatial Substrate & 3D & 3 \\
\bottomrule
\end{tabular}\\[4pt]
\textit{Legend: A = amplitude, f = frequency, r = radius, Q = charge.}
\end{table}
The factor \(\pi\) appearing in every rung of this ladder is not introduced by hand. Its origin is the same as in the geometric soliton core: the kinematic relation \(l = \pi x\), which reflects one full harmonic phase advance of the central EMC during one oscillation. Each additional degree of freedom therefore multiplies the phase-space budget by one further factor of \(\pi\).
The \(\pi^7\) rung is particularly important: it represents the charged weak sector, in which the soliton engages seven independent geometric degrees of freedom. The BCC coordination number is \(8\). The magnetic deficit \(\epsilon_M\) introduced below is therefore naturally associated with the inverse of the product \(8\pi^7\), with a small correction due to the non-ideal spherical packing of the lattice.
\subsection{Geometric Magnetic Deficit \(\epsilon_M\)}
\label{sec:magnetic_deficit}
The ideal stiffness of the BCC lattice follows from its eight nearest neighbours and the four-dimensional saturation budget:
\begin{equation}
N_{\text{ideal}} = 8\pi^4 .
\label{eq:N_ideal}
\end{equation}
The non-ideal spherical packing of the EMCs gives rise to a small lattice impedance
\begin{equation}
\zeta = \frac{1-\eta_{\text{BCC}}}{\eta_{\text{BCC}} N_{\text{ideal}}} .
\label{eq:zeta}
\end{equation}
Applying this impedance to the ideal stiffness yields the effective geometric stiffness:
\begin{equation}
N_{\text{geom}} = N_{\text{ideal}} (1-\zeta) .
\label{eq:N_geom}
\end{equation}
The magnetic deficit is then defined by the key relation
\begin{equation}
\boxed{
\epsilon_M = \frac{1}{N_{\text{geom}} \pi^3}
= \frac{1}{8\pi^7 (1-\zeta)}
}
\label{eq:epsilon_M_definition}
\end{equation}
In the ideal continuum limit \(\zeta \to 0\), this reduces to
\begin{equation}
\epsilon_M^{(\text{ideal})} = \frac{1}{8\pi^7} .
\label{eq:epsilon_M_final_geo}
\end{equation}
The complete geometric inverse fine-structure constant therefore has the form
\begin{equation}
\frac{1}{\alpha} = A_\pi - \epsilon_M - \sum \epsilon_G,
\end{equation}
where \(\sum \epsilon_G\) is a lower-order gravitational deficit term.
For the electron this term is negligible compared with \(\epsilon_M\), so the working expression used throughout this work is
\begin{equation}
\frac{1}{\alpha_{\text{geom}}} = A_\pi - \epsilon_M .
\label{eq:alpha_normalized_final}
\end{equation}
The omitted lower-order term \(\sum \epsilon_G\) is retained as a formal remainder; it is not fitted and may become relevant when the lower-order gravitational correction is no longer negligible.
This expression contains no calibrated parameters. All quantities on the right-hand side are fixed by the BCC lattice geometry and the mathematical constants \(\pi\), \(e\), and \(\sqrt{2}\).
\subsection{The Fundamental Lattice Response Parameter \(\epsilon_M\)}
A central role in the Enhanced EWT framework is played by the parameter \(\epsilon_M\), traditionally referred to as the \textit{magnetic deficit factor}. Initially, this parameter was identified as a functional heuristic---a "magnetic deficit" required to reconcile the fine-structure constant \(\alpha\) within the energy wave equations. However, as the framework evolved, it became evident that \(\epsilon_M\) was not a localized adjustment, but a fundamental property defining the very "stiffness" of the 3D space occupied by matter.
Within the unified geometric context of this work, \(\epsilon_M\) is more fundamentally defined as the \textbf{Global Lattice Impedance Constant}. It represents the intrinsic structural resistance of the BCC vacuum substrate to any deviation from ideal spherical wave symmetry. This realization transformed it from a specialized electromagnetic factor into a cornerstone of Enhanced EWT, acting as a universal "scaling bridge" across different physical sectors.
By treating \(\epsilon_M\) as a singular topological property, the model achieves numerical convergence across disparate scales---from the gravitational constant \(G\) to the anomalous magnetic moments of leptons---without the need for independent empirical constants. The structural coherence of this approach is formally validated in Section \ref{sec:robustness}, where it is shown that this single value functions as the primary scaling anchor for the entire theory.
\textbf{Ultimately, this work reveals that \(\epsilon_M\) is not an arbitrary input, but a direct consequence of the BCC lattice coordination.} Its explicit geometric form is given in Eq.~\eqref{eq:epsilon_M_definition}.
\section{Dimensional Hierarchy and Dynamic Resonant Modulations}
\label{sec:dimensional_hierarchy}
This section translates the geometric ladder introduced in Section~\ref{sec:alpha_geometric_deficit} into concrete lattice operators for the bosonic and fermionic sectors. The high-precision \textbf{2022 CDF II} measurement of $M_W$ serves as an experimental anchor, revealing that the reported Standard Model mass tensions arise from the omission of volumetric lattice impedance inherent to the BCC substrate.
\subsection{The Universal Geometric Modulators: Substrate Properties}
The formation of mixing angles within the EWT framework is governed by a hierarchy of modulators derived from the global magnetic deficit $\epsilon_M$. These factors account for the intrinsic lattice impedance and the resonant displacement required to maintain equilibrium within the BCC vacuum substrate. Rather than being empirical parameters, these modulators represent the structural response of the lattice to different interaction topologies (volumetric vs. surface).
\subsubsection{Unified Local Constant $\mathbf{C}_{\text{local}}$}
The \textbf{Unified Local Constant} is the structural bridge between the global lattice magnetic deficit ($\epsilon_{M}$) and the local chiral projection ($2\sqrt{2}$):
\begin{equation}
\boxed{\mathbf{C}_{\text{local}} \equiv \frac{\epsilon_{M}}{2\sqrt{2}}}
\end{equation}
\subsubsection{The $\pi^6$ Resonance: Volumetric Bosonic Coupling}
Vector bosons ($W, Z, H$) are high-energy excitations involving the full phase space. The modulator $\mathbf{C}_{\text{gap}}$ accounts for the volumetric resistance of the lattice:
\begin{equation}
C_{\text{gap}} = 1 + \pi^6 \cdot C_{\text{local}}
\end{equation}
The Weinberg angle emerges as a structural equilibrium point between the 6D volumetric resonance ($\pi^6$) and the boson mass ratio:
\begin{equation}
\label{eq:weinberg_angle_pure_ewt}
\boxed{\sin^2\theta_W = 1 - \left( \frac{M_W}{M_Z} \right)^2 \cdot \frac{1}{C_{\text{gap}}}}
\end{equation}
By utilizing this structural constant, the framework identifies the ideal mass attractor for the $W$ boson, accounting for the 6D volumetric resonance:
\begin{equation}
\label{eq:w_mass_prediction_final}
\boxed{M_W^{\text{EWT, Ideal}} = M_Z^{\text{CODATA}} \cdot \sqrt{(1 - \sin^2\theta_W^{\text{Target}}) \cdot C_{\text{gap}}}}
\end{equation}
\subsubsection{The $\pi^7$ Resonance: Charge-Induced Amplitude Loading}
The highest rung of the geometric ladder, $\pi^7$, is associated with the charged weak sector ($W^{\pm}$). Unlike the neutral $Z^0$ and $H^0$ solitons, the $W$ boson carries non-compensated wave amplitude (charge), which acts as an additional \textbf{7th degree of freedom} within the BCC substrate.
In the EWT framework, the $W$ boson mass is not an independent input but a \textbf{geometric attractor}: the vacuum must sustain a mass of approximately $80.5141\ \text{GeV}$ to maintain structural equilibrium against the charge-induced displacement.
\subsubsection{The $\pi^5$ Resonance: Surface Interaction Modulator}
For the quark sector and flavour mixing, the interaction topology shifts from the volume to the \textbf{soliton boundary}. The modulator $\mathbf{C}_{\text{fermion}}$ represents a \textbf{5D holographic projection} (3D momentum + 2D spherical surface):
\begin{equation}
\boxed{\mathbf{C}_{\text{fermion}} \equiv (1 + \pi^5 \cdot \mathbf{C}_{\text{local}})^2}
\end{equation}
The quadratic form reflects the bi-local nature of mixing between two quark states within the lattice substrate.
\subsection{Geometric Mixing Predictions: Higgs and Cabibbo Sectors}
\subsubsection{Higgs-Vector Boson Mixing}
The Higgs boson interactions are governed by the $\pi^6$ volumetric laws mapped onto the Higgs mass scale ($M_H^{\text{CODATA}} = 125.25$ GeV), utilising the geometric $M_W^{\text{EWT, Ideal}}$:
\begin{table}[h]
\centering
\small
\caption{Geometric Mixing Angles for Higgs-Vector Boson Pairs}
\label{tab:higgs_mixing_variants}
\begin{tabular}{lcc}
\toprule
\textbf{Mixing Interaction} & \textbf{Calculation Formula} & \textbf{EWT Prediction} \\
\midrule
$\sin^2\theta_{ZH}$ & $1 - \left( \frac{M_Z^{\text{EWT}}}{M_H^{\text{EWT}}} \right)^2 \cdot \frac{1}{C_{\text{gap}}}$ & \textbf{0.4686} \\
$\sin^2\theta_{WH}$ & $1 - \left( \frac{M_W^{\text{EWT, Ideal}}}{M_H^{\text{EWT}}} \right)^2 \cdot \frac{1}{C_{\text{gap}}}$ & \textbf{0.5906} \\
\bottomrule
\end{tabular}
\end{table}
\begin{equation}
\label{eq:higgs_z_falsification}
\boxed{\sin^2\theta_{ZH}^{\text{EWT}} = \mathbf{0.4686}}
\end{equation}
\textbf{Falsification of the Standard Model (VEV Mechanism):}
The stability of Eq.~(\ref{eq:higgs_z_falsification}) serves as a critical test. Confirming this discrete value would prove the Higgs is a composite soliton, thereby \textbf{falsifying the Standard Model}, as such a resonant state is incompatible with the vacuum-expectation-value (VEV) mechanism.
\subsubsection{Cabibbo Mixing Angle}
Using the $\pi^5$ surface modulator and the EWT-derived masses for $d$ and $s$ quarks, obtained from the spherical mode at wave centre counts $K_{WC}=15$ and $K_{WC}=28$:
\begin{equation}
\boxed{\sin\theta_C = \sqrt{\frac{M_d}{M_s}} \cdot C_{\text{fermion}}}
\end{equation}
where
\begin{equation}
C_{\text{fermion}} = \left(1 + \pi^5 C_{\text{local}}\right)^2,
\end{equation}
and the masses calculated from the spherical mode are:
\begin{align}
M_d^{\text{EWT}} &= 0.004034\,\text{GeV}, \\
M_s^{\text{EWT}} &= 0.094885\,\text{GeV}.
\end{align}
The experimental value (PDG 2022) is $\sin\theta_C \approx 0.2243$. The EWT-derived masses lead to a relative difference of about $7.24\%$ (Variant A in Table~\ref{tab:cabibbo_variants}).
To isolate the precision of the geometric mixing mechanism itself, the calculation is repeated using PDG 2022 experimental quark masses as input:
\begin{align}
M_d^{\text{PDG}} &= 0.004692\,\text{GeV}, \\
M_s^{\text{PDG}} &= 0.094954\,\text{GeV}.
\end{align}
Substituting these values into the same operator yields a deviation of only $0.0055\%$ (Variant B), confirming that the $\pi^5$ surface resonance operator $C_{\text{fermion}}$ correctly captures the physics of flavour mixing at the level of numerical precision.
\begin{table}[h]
\centering
\caption{Cabibbo angle prediction: sensitivity to quark mass input.}
\label{tab:cabibbo_variants}
\begin{tabular}{lcccc}
\toprule
\textbf{Variant} & $M_d$ \textbf{[GeV]} & $M_s$ \textbf{[GeV]} & $\sin\theta_C$ & \textbf{Error} \\
\midrule
A: EWT spherical mode & $0.004034$ & $0.094885$ & $0.20805$ & $7.24\%$ \\
B: PDG 2022 targets & $0.004692$ & $0.094954$ & $0.22429$ & $0.0055\%$ \\
\midrule
PDG 2022 (reference) & -- & -- & $0.22430$ & -- \\
\bottomrule
\end{tabular}
\end{table}
\subsubsection{Dimensional Budget of Resonances: Reflection vs. Mixing}
The scaling of the modulators is determined by the ``dimensional budget'' of the resonance involved in the interaction with the BCC lattice:
\begin{itemize}
\item \textbf{Bosons ($\pi^6$ and $\pi^7$):} These are volumetric excitations where the action occurs in 3D space, involving 1D amplitude, 1D frequency, and 1D radius ($r$). For charged bosons, an additional 1D of freedom (charge) expands the budget to $\pi^7$. These processes represent a unified ``reflection'' of the energy packet off the lattice, resulting in a linear correction ($C_{\text{gap}}$).
\item \textbf{Fermions ($\pi^5$):} In the fermionic sector, the interaction is localised on the phase-surface. The budget includes 3D space, 1D amplitude, and 1D frequency, but excludes the volumetric radius ($r$). This $\pi^5$ resonance describes the surface integrity of the soliton.
\item \textbf{The Square (Interference):} Unlike the singular reflection of bosons, the Cabibbo angle represents the \textbf{mixing} of two such $\pi^5$ states. Consequently, the lattice modulation must be applied to both participating objects, leading to the quadratic form $C_{\text{fermion}} = (1 + \pi^5 C_{\text{local}})^2$.
\end{itemize}
\subsubsection{Symmetry of Observables: Energy Density vs. Amplitude Interference}
\label{sec:symmetry_observables}
The contrasting mathematical forms of the key observables---\(\sin^2\theta_W\) for the bosonic sector and \(\sin\theta_C \propto \sqrt{M_d/M_s}\) for the fermionic sector---are not coincidental. They reflect a fundamental transition in the nature of the interaction within the BCC lattice, rooted in the dimensional hierarchy of the Geometric Ladder.
\begin{itemize}
\item \textbf{Bosonic Sector (Volumetric Energy Density):}
The Weinberg angle, \(\sin^2\theta_W\), emerges from the ratio of the \(W\) and \(Z\) boson masses. In the EWT framework, mass is a measure of volumetric energy density, which at the \(\pi^6\) and \(\pi^7\) levels involves the full set of degrees of freedom: 3D space, amplitude \(A\), frequency \(f\), radius \(r\), and (for charged bosons) charge \(Q\). The squared form of the observable directly mirrors the squared relation between mass and the underlying wave amplitude (\(E \propto A^2\)), making \(\sin^2\theta_W\) the natural expression for a volumetric, energy-density-based coupling.
\item \textbf{Fermionic Sector (Surface Amplitude Interference):}
In contrast, the Cabibbo angle, \(\sin\theta_C\), describes the mixing of two boundary-localised fermions (\(d\) and \(s\) quarks). This is a bi-local interference process occurring on the \(\pi^5\) phase-surface, where the relevant physical quantity is the wave amplitude \(A\) itself, not the volume-integrated energy. At the \(\pi^5\) level, the soliton possesses 3D space, amplitude \(A\), and frequency \(f\)---the minimal set required for a massive surface excitation. Its mass scales as \(M \propto A^2\), as energy is quadratic in amplitude. To access the amplitude \(A\) directly, one must therefore take the square root of the mass. This operation effectively projects the energy-based observable from the \(\pi^5\) level down to the \(\pi^4\) level of the Geometric Ladder, where the fundamental amplitude \(A\) resides in 3D space as the static structural skeleton of the particle (3D + \(A\)). The linear form \(\sin\theta_C \propto \sqrt{M_d/M_s}\) is thus the direct signature of amplitude interference at the soliton boundary.
\end{itemize}
This dichotomy---\(\sin^2\) for volumetric energy ratios versus \(\sin\) for surface amplitude interference---is a direct and testable consequence of the dimensional hierarchy. It confirms that the EWT framework does not merely fit parameters, but derives the very structure of physical laws from the topology of the vacuum substrate.
\subsubsection{Interpretation of Quark Masses in the EWT Framework}
\label{subsec:quark-mass-interpretation}
While the Standard Model operates on the abstraction of point-particles within a passive vacuum, the Enhanced EWT model restores the physical necessity of the medium. Matter cannot exist in space without being of space. The \(\bm{\pi^4}\) Quark Stability budget formalises this necessity: the 3D spatial substrate (\(\bm{\pi^3}\)) is not merely a background, but the indispensable structural foundation for any dynamic amplitude (\(\bm{\pi^1}\)) and/or frequency (\(\bm{\pi^1}\)) to manifest as a stable particle.
\noindent
\begin{center}
\fbox{
\begin{minipage}{0.85\textwidth}
\centering
\vspace{5pt}
\small \textbf{Remark on Quark Masses and the Nature of Confinement:} \\
In the EWT framework, quarks are not fundamental particles but
topological excitations confined within hadronic solitons. Their
``masses'' are not intrinsic properties of free entities, but
effective measures of the binding energy within the collective
\(\pi^5\) phase-surface. The permanent isolation of a quark is
geometrically impossible: it would require severing the \(\pi^4\)
amplitude-space core from the \(\pi^5\) surface, leaving a residual
frequency without a spatial substrate.
\vspace{5pt}
\end{minipage}
}
\end{center}
\vspace{1em}
\subsection{Structural Transition to \(N\)-Stiffness: From Geometric Volume to Lattice Impedance}
\label{sec:n_transition}
To unify the model, the correction parameters \(C_{\text{gap}}\) and \(C_{\text{fermion}}\) are expressed directly through the geometric vacuum stiffness \(N_{\text{geom}}\) introduced in Section~\ref{sec:alpha_geometric_deficit}. Using the identity \(C_{\text{local}} = \epsilon_M/(2\sqrt{2})\) and \(\epsilon_M = 1/(N_{\text{geom}}\pi^3)\), the geometric structure reveals the scaling hierarchy:
\subsubsection*{1. Direct \(N\)-Representation}
\begin{equation}
C_{\text{gap}} = 1 + \pi^6 \cdot C_{\text{local}} = 1 + \frac{\pi^3}{2\sqrt{2} \cdot N_{\text{geom}}}
\end{equation}
\begin{equation}
C_{\text{fermion}} = (1 + \pi^5 \cdot C_{\text{local}})^2 = \left( 1 + \frac{\pi^2}{2\sqrt{2} \cdot N_{\text{geom}}} \right)^2
\end{equation}
\subsubsection*{2. Physical Interpretation: The Pi-Power Scaling}
\begin{itemize}
\item \textbf{\(C_{\text{gap}}\) (Volumetric Coupling):} The \(\pi^3/N_{\text{geom}}\) term identifies the magnetic gap as a 3D volumetric resonance. The \(\pi^3\) factor represents the interaction of the spherical soliton with the BCC lattice stiffness.
\item \textbf{\(C_{\text{fermion}}\) (Surface Scaling):} The reduction to \(\pi^2/N_{\text{geom}}\) within the squared operator identifies the fermion correction as a 2D surface effect. The square accounts for the bi-directional (spin-lattice) coupling required for mass stabilisation.
\item \textbf{The \(N_{\text{geom}}\)-Anchor:} Both constants are locked to the same geometric stiffness parameter, proving that the difference between magnetic and mass-surface anomalies is purely a matter of geometric dimensionality (\(\pi^3\) vs \(\pi^2\)).
\end{itemize}
\begin{center}
\fbox{
\begin{minipage}{0.85\textwidth}
\centering
\vspace{5pt}
The transition to the \(N_{\text{geom}}\)-anchor reveals a fundamental split in the vacuum's response: the bosonic sector is governed by 3D volumetric resonance, while the fermionic sector is dictated by 2D surface-coupling dynamics.
\vspace{5pt}
\end{minipage}
}
\end{center}
\section{Analysis of Neutrino Boundary Conditions}
\label{sec:neutrino-analysis}
Before proceeding to the detailed analysis of the neutrino's boundary conditions, it is crucial to place the Geometric Gravity mechanism of EWT---derived from the Gravitational Deficit \(\epsilon_{G}\)---within the broader context of modern theoretical physics. The Energy Wave Theory's postulate that gravity arises from a deficit in the \textbf{Elastic Medium Constituent} (EMC) components conceptually aligns with the \(\mathbf{Emergent~Gravity}\) paradigm. This framework suggests that gravity is not a fundamental force, but rather an effective phenomenon arising from the microstructure or thermodynamics of spacetime \cite{padmanabhan2010thermodynamics}. Key proponents, such as Padmanabhan and Verlinde, develop theories where gravity emerges from spacetime thermodynamics or the information encoded on a holographic screen \cite{verlinde2016emergent}.While such models face significant theoretical and empirical challenges \cite{visser2020emergent}, the EWT approach offers a concrete geometric mechanism linking a specific wave-centre structure to a macroscopic gravitational effect, without invoking entropic or thermodynamic assumptions. This links a specific wave-centre structure to a macroscopic gravitational effect, providing a unique, finite, and quantifiable emergent model.
The stability of the Neutrino as a Soliton is dependent on the precise balancing of internal geometric forces. These forces are represented by the \textbf{Constant Geometric Deficit (\(\epsilon_{G}\))}, the \textbf{global Magnetic Deficit (\(\epsilon_{M}\))}, and the \textbf{Geometric Soliton Core}.
\subsection{Standard Conditions: Mass and Minimal Magnetism}
Under standard conditions, the Neutrino is confirmed to possess non-zero mass (empirically validated by oscillation experiments \cite{kajita1998evidence, mcdonald2002sno}) and a negligible, but potentially non-zero, magnetic moment \cite{tereschenko2012results}.
\begin{itemize}
\item \textbf{Stability (Hooke's Force):} Non-zero mass is understood to imply that the Neutrino possesses an internal \textbf{Constant Geometric Deficit \(\epsilon_{G}\)}. The internal geometric pressure, caused by \(\epsilon_{G}\) and other factors, is \textbf{balanced} by the repulsion force resulting from \textbf{Hooke's Law} (Elastic Interaction) between the constituents, which keeps the Soliton in a stable state.
\item \textbf{Charge:} The Soliton's charge is \textbf{considered effectively zero} (\(\approx 0\)).
\item \textbf{Magnetism and \(\epsilon_{M}\):} The global magnetic deficit \(\epsilon_M\) is fixed by the BCC lattice geometry and does not vanish for the neutrino. However, because the neutrino carries no charge and no spin, it does not generate the local magnetic torque that compresses charged leptons. As a result, the neutrino exhibits only a negligible local magnetic response, even though a tiny moment \(\mu_{\nu} \neq 0\) is not excluded.
\end{itemize}
\subsection{Extreme Conditions: Wave Center in a Geometric Black Hole (GBH)}
In the case of a Geometric Black Hole (GBH) \cite{yee2020geometric}, extreme geometric compression and the dominance of the accumulated gravitational field (\(\sum \epsilon_{G}\)) impose severe conditions.
\begin{itemize}
\item \textbf{Dominance of \(\epsilon_{G}\) and Stability (Hooke's):} At the Critical Distance (\(d_{crit}\)) of the GBH, geometric forces are so extreme that \textbf{all geometric terms other than gravity are suppressed}. However, the \textbf{Elastic Interaction (\(F_{\text{Hooke}}\))} is an invariant property and \textbf{is still active}, guaranteeing that the Soliton's radius does not fall below \(r_{\nu}\) (the limit of minimal Soliton stability), and the Neutrino remains a stable WC.
\item \textbf{Empirical Validation (Supernovae):} The observation that \textbf{99\% of supernova energy is released as neutrinos} constitutes empirical confirmation that the collapse of matter under extreme gravity leads to the conversion of the dominant mass into the \textbf{minimal geometric state} of the Neutrino (\(r_{\nu}\)) at the point \(d_{crit}\). This fact justifies the adoption of the Neutrino as the fundamental WC for the GBH model.
\item \textbf{Local Magnetic Suppression:} Under conditions of extreme compression, the soliton's local spin and magnetic degrees of freedom are geometrically frozen. This does not mean that the global lattice parameter \(\epsilon_M\) changes; rather, the local contribution of the spin sector to the soliton's energy balance is suppressed.
\item \textbf{Pure WC (Boundary Condition):} At the critical point (\(d_{crit}\)), the geometric boundary conditions of the GBH force the complete elimination of charge and the local magnetic response. The Neutrino is converted into a \textbf{pure Wave Center (WC)} with the single dominant characteristic (\(\epsilon_{G}\)):
\begin{equation}
\text{Charge} = 0 \quad \text{and the local magnetic contribution is suppressed}.
\end{equation}
\end{itemize}
\subsubsection*{Hypothesis of Spin Recovery Beyond the GBH Horizon}
Within the EWT framework, the geometric structure of the WC (and thus its local spin/magnetic properties) may be \textbf{partially recovered or enhanced} outside the GBH's critical boundary \(d_{crit}\). This phenomenon is driven by the reduced compression and resulting non-linear elasticity of the spacetime medium away from the core, aligning conceptually with information preservation hypotheses near the horizon.
\section{Neutrino as the Geometric Anchor}
\label{sec:neutrino_anchor}
The statutory neutrino radius \(r_\nu\) sets the fundamental length scale of the BCC lattice. In this section, \(r_\nu\) is not treated as an independent input. Instead, it emerges from the geometric fine-structure constant \(\alpha_{\text{geom}}\), the elementary charge amplitude \(e\), and the topology of the BCC lattice.
\subsection{Planck Charge from Geometric Alpha}
\label{sec:qP_from_alpha}
The Planck charge in EWT is interpreted as the fundamental geometric amplitude. It is not introduced as a separate empirical constant; it follows from the relation between the elementary charge amplitude \(e\) and the geometric fine-structure constant:
\begin{equation}
q_P = \frac{e}{\sqrt{\alpha_{\text{geom}}}},
\label{eq:qP_from_alpha}
\end{equation}
where \(e = 1.602176634 \times 10^{-19}\) m is the CODATA elementary charge amplitude, and \(\alpha_{\text{geom}}\) is the purely geometric fine-structure constant derived in Section~\ref{sec:alpha_geometric_deficit}.
The resulting ratio
\begin{equation}
\frac{q_P}{e} = \frac{1}{\sqrt{\alpha_{\text{geom}}}} \approx 11.70624886
\end{equation}
is therefore a geometric prediction, not a fitted input.
\subsection{Decomposition of the Scaling Factor \(S = r_\nu/q_P\)}
\label{sec:S_decomposition}
The dimensionless scaling factor \(S = r_\nu/q_P\) is obtained by combining three physically distinct mechanisms that act in the undisturbed BCC vacuum lattice.
\begin{enumerate}
\item \textbf{Static lattice projection.}
The soliton potential, described by the inverse geometric fine-structure constant \(\alpha_{\text{inv, geom}}\), is distributed over the eight BCC coordination nodes and the spherical wave front:
\begin{equation}
S_{\text{proj}} = \frac{\alpha_{\text{inv, geom}}}{8 + \pi}.
\end{equation}
\item \textbf{Dynamic wave expansion.}
The natural exponential decay of the standing-wave amplitude from the centre outward introduces Euler's number \(e\) as an integrated factor:
\begin{equation}
S_{\text{exp}} = e.
\end{equation}
\item \textbf{Discrete lattice impedance.}
The discrete BCC lattice and wave propagation along the face diagonals add a small correction:
\begin{equation}
\delta_{\text{imp}} = (1 - g_v)(\sqrt{2} - 1).
\end{equation}
Here \(g_v\) is the geometric correction factor associated with the neutrino ground state. The factor \(\sqrt{2}-1\) measures the excess diagonal path length, while \(1-g_v\) quantifies the deviation of the relaxed neutrino state from an ideal continuum response.
\end{enumerate}
The total scaling factor is the sum of these components:
\begin{equation}
S_{\text{tot}} = S_{\text{proj}} + S_{\text{exp}} + \delta_{\text{imp}}.
\label{eq:S_tot}
\end{equation}
\subsection{Geometric Fixed Point of \(g_v\)}
\label{sec:gv_fixed_point}
The dynamic relation for the neutrino radius is
\begin{equation}
r_\nu = \frac{2 q_P e^2}{g_v}.
\end{equation}
In terms of the scaling factor, this becomes
\begin{equation}
S_{\text{tot}} = \frac{2 e^2}{g_v}.
\end{equation}
Equating this with Eq.~\eqref{eq:S_tot} gives
\begin{equation}
\frac{2 e^2}{g_v}
=
\frac{\alpha_{\text{inv, geom}}}{8 + \pi}
+
e
+
(1 - g_v)(\sqrt{2} - 1).
\end{equation}
Rearranging leads to the quadratic equation
\begin{equation}
(\sqrt{2} - 1) g_v^2
-
\left(
\frac{\alpha_{\text{inv, geom}}}{8 + \pi}
+
e
+
\sqrt{2}
-
1
\right) g_v
+
2 e^2
=
0 .
\label{eq:gv_quadratic}
\end{equation}
This equation has two roots:
\begin{equation}
g_v \approx 0.983594
\qquad\text{and}\qquad
g_v \approx 36.27 .
\end{equation}
Only the first root satisfies \(0 < g_v < 1\), which is required for stable wave propagation and a physical soliton. Thus
\begin{equation}
g_v \approx 0.983594
\label{eq:gv_value}
\end{equation}
is the unique geometric fixed point of the BCC lattice. It is not an adjustable parameter, but a direct consequence of the lattice topology.
\subsection{Resulting Neutrino Radius}
\label{sec:r_nu_result}
Using the fixed-point value of \(g_v\) and the geometric Planck charge \(q_P\), the neutrino radius is
\begin{equation}
r_\nu = q_P S_{\text{tot}}
\approx
2.817935 \times 10^{-17}\ \text{m}.
\label{eq:r_nu_geom}
\end{equation}
This value is in close agreement with the earlier dynamical expression
\begin{equation}
r_\nu = \frac{2 q_P e^2}{g_v},
\end{equation}
and the two approaches differ only at the \(10^{-6}\) level. This confirms that \(r_\nu\) is derived from the same BCC geometry as \(\alpha_{\text{geom}}\) and \(\epsilon_M\).
\subsection{Decadic Resonance Test: \(r_e / r_\nu \approx 100\)}
\label{sec:decadic_test}
An immediate test of the geometric anchor is provided by the ratio of the classical electron radius to the neutrino radius:
\begin{equation}
\frac{r_e}{r_\nu}
\approx
100.00017 .
\label{eq:decadic_ratio}
\end{equation}
The corresponding fifth power
\begin{equation}
\left(\frac{r_e}{r_\nu}\right)^5
\approx
1.0000087 \times 10^{10}
\end{equation}
reproduces the \(10^{10}\) scaling expected from the difference between the electron wave-centre count \(K_{WC}=10\) and the neutrino count \(K_{WC}=1\). This is a direct consequence of the geometric mass-to-radius identity, Eq.~\eqref{eq:mass_to_radius_id}, discussed in Section~\ref{sec:geometric_mass_to_radius}. It provides a non-trivial consistency test linking the geometric radius to the \(r^5\) energy scaling used throughout the model.
\subsection{Physical Interpretation: \(\epsilon_M\) as a Global Lattice Parameter}
\label{sec:neutrino_epsilonM}
The magnetic deficit \(\epsilon_M\) is a global topological property of the BCC lattice and does not vanish for any soliton. What differs between the neutrino and charged leptons is the local magnetic response.
The neutrino carries no charge and no spin; it therefore generates no local magnetic torque. Consequently, its soliton relaxes to the natural radius \(r_\nu\) given by Eq.~\eqref{eq:r_nu_geom}.
For the electron, the local magnetic response compresses the soliton below this relaxed state. The factor \(g_v\) measures exactly this difference: it is the ratio between the relaxed neutrino radius and the compressed wavelength that would follow from the simple wave constants. The global \(\epsilon_M\) remains unchanged; it is the local magnetic compression that differs between particles.
Thus the neutrino is not a “small electron”, but the fundamental, torque-free ground state of the BCC lattice. The electron is a compressed and locally magnetised excitation of this same ground state.
\subsection{Topological Necessity of \(r_\nu\)}
\label{sec:r_nu_necessity}
The decomposition of \(S_{\text{tot}}\) into
\begin{equation}
\frac{\alpha_{\text{inv, geom}}}{8+\pi},\quad
e,\quad
(1-g_v)(\sqrt{2}-1)
\end{equation}
shows that the neutrino radius is fixed by three simultaneous geometric constraints:
\begin{itemize}
\item the static soliton potential distributed over the eight BCC directions and the spherical wave front,
\item the natural exponential decay encoded by Euler's number \(e\),
\item the discrete lattice correction along the face diagonals.
\end{itemize}
No free parameter is introduced. All quantities are determined by \(\pi\), \(e\), \(\sqrt{2}\), the BCC coordination number, and the geometric fine-structure constant.
This completes the emergence of the neutrino as a topological anchor of the BCC lattice. No fitted parameter is introduced in this derivation.
\section{Planck Length and Reduced Planck Constant from Geometry}
\label{sec:planck_from_geometry}
The geometric fine-structure constant \(\alpha_{\text{geom}}\), the electron radius \(r_e\), and the electron mass \(m_e\) determine the reduced Planck constant without invoking \(\hbar\) as an independent input. The same geometric machinery then yields the Planck length \(\lambda_l\) as a derived quantity.
\subsection{Reduced Planck Constant from Geometric Alpha}
\label{sec:hbar_from_alpha}
In EWT, the classical electron radius is not defined through \(\hbar\) but is treated as a geometric scale fixed by the electron soliton. The reduced Planck constant follows from the relation
\begin{equation}
\hbar_{\text{geom}}
=
\frac{m_e c r_e}{\alpha_{\text{geom}}},
\label{eq:hbar_geom}
\end{equation}
where \(c\) is the metric conversion factor defined in Section~\ref{sec:c_as_metric}.
Using the CODATA values
\begin{equation}
m_e = 9.1093837015 \times 10^{-31}\ \text{kg},
\qquad
r_e = 2.8179403262 \times 10^{-15}\ \text{m},
\end{equation}
and the geometric fine-structure constant \(\alpha_{\text{geom}}\), Eq.~\eqref{eq:hbar_geom} gives
\begin{equation}
\hbar_{\text{geom}}
\approx
1.0545738 \times 10^{-34}\ \text{kg}\,\text{m}^{2}\,\text{s}^{-1},
\end{equation}
in agreement with the CODATA value at the level of the underlying experimental inputs. No new free parameter is introduced.
\section{The Physical Origin of Charge as Wave Amplitude}
\label{sec:coulomb_derived_unit}
The identification of charge with wave amplitude is a foundational
postulate of Energy Wave Theory, established in the primary EWT
literature \cite{yee2019masscharge}. The present section makes the
dimensional reduction explicit, in the same way that the kilogram was
reduced to a geometric unit in Section~\ref{sec:mass_geometric_status}.
\subsection{Charge as Spatial Wave Amplitude}
\label{sec:charge_as_amplitude}
In EWT, the elementary charge $e$ of a single electron represents the physical
wave displacement amplitude of the lattice constituents at the first wavelength.
Because displacement in a spatial lattice is fundamentally a geometric length,
charge carries the dimension of length ($[Q] = [L]$).
In the International System of Units (SI), where the fundamental unit of spatial
length is the metre, the elementary charge amplitude is given by:
\begin{equation}
e_{\text{geom}} = 1.602176634 \times 10^{-19}\ \text{m}.
\end{equation}
This is a direct dimensional mapping: the numerical value of the CODATA elementary
charge is preserved, while the dimension changes from coulombs ($\text{C}$) to metres ($\text{m}$).
\subsection{Conversion of the Coulomb and Distinction from CGS}
\label{sec:coulomb_conversion}
From the definition $1\ \text{C} = 1\ \text{A}\,\text{s}$ and the geometric
representation of charge as amplitude ($\text{m}$), the coulomb is recognized
as a derived unit of spatial displacement:
\begin{equation}
e_{\text{SI}} = 1.602176634 \times 10^{-19}\ \text{C}
\quad \Longleftrightarrow \quad