-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSubstratum.tex
More file actions
1358 lines (1203 loc) · 70.2 KB
/
Substratum.tex
File metadata and controls
1358 lines (1203 loc) · 70.2 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
% Options for packages loaded elsewhere
\PassOptionsToPackage{unicode}{hyperref}
\PassOptionsToPackage{hyphens}{url}
% xcolor driver fix applied
%
\documentclass[
11pt,
]{article}
\usepackage{amsmath,amssymb}
\usepackage{iftex}
\ifPDFTeX
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{textcomp} % provide euro and other symbols
\else % if luatex or xetex
\usepackage{unicode-math} % this also loads fontspec
\defaultfontfeatures{Scale=MatchLowercase}
\defaultfontfeatures[\rmfamily]{Ligatures=TeX,Scale=1}
\fi
\ifPDFTeX\else
% xetex/luatex font selection
\setmainfont[]{DejaVu Serif}
\setsansfont[]{DejaVu Sans}
\setmonofont[]{DejaVu Sans Mono}
\fi
% Use upquote if available, for straight quotes in verbatim environments
\IfFileExists{upquote.sty}{\usepackage{upquote}}{}
\IfFileExists{microtype.sty}{% use microtype if available
\usepackage[]{microtype}
\UseMicrotypeSet[protrusion]{basicmath} % disable protrusion for tt fonts
}{}
\makeatletter
\@ifundefined{KOMAClassName}{% if non-KOMA class
\IfFileExists{parskip.sty}{%
\usepackage{parskip}
}{% else
\setlength{\parindent}{0pt}
\setlength{\parskip}{6pt plus 2pt minus 1pt}}
}{% if KOMA class
\KOMAoptions{parskip=half}}
\makeatother
\usepackage[dvipsnames,svgnames,x11names]{xcolor}
\usepackage[margin=1in]{geometry}
\setlength{\emergencystretch}{3em} % prevent overfull lines
\providecommand{\tightlist}{%
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
\setcounter{secnumdepth}{-\maxdimen} % remove section numbering
\ifLuaTeX
\usepackage{selnolig} % disable illegal ligatures
\fi
\IfFileExists{bookmark.sty}{\usepackage{bookmark}}{\usepackage{hyperref}}
\IfFileExists{xurl.sty}{\usepackage{xurl}}{} % add URL line breaks if available
\urlstyle{same}
\hypersetup{
colorlinks=true,
linkcolor={blue},
filecolor={Maroon},
citecolor={Blue},
urlcolor={blue},
pdfcreator={LaTeX via pandoc}}
\author{}
\date{}
\begin{document}
\hypertarget{the-substratum-construction-reconstruction-the-substratum-gauge-group-and-the-qm-gr-synthesis}{%
\section{The Substratum Construction: Reconstruction, the Substratum
Gauge Group, and the QM-GR
Synthesis}\label{the-substratum-construction-reconstruction-the-substratum-gauge-group-and-the-qm-gr-synthesis}}
\textbf{Author:} Alex Maybaum\\
\textbf{Date:} April 2026\\
\textbf{Status:} DRAFT PRE-PRINT\\
\textbf{Classification:} Theoretical Physics / Foundations
\begin{center}\rule{0.5\linewidth}{0.5pt}\end{center}
\hypertarget{abstract}{%
\subsection{Abstract}\label{abstract}}
Quantum mechanics and general relativity are conventionally treated as
two fundamental theories awaiting unification. This paper establishes
that they are instead two projections of a single finite deterministic
construction, with the apparent incompatibility arising as a category
error rather than a technical problem. The construction is the bijection
\((S, \varphi)\) on a finite configuration space whose visible-sector
projection is the Standard Model {[}SM{]} and whose
boundary-thermodynamic projection is general relativity {[}GR{]}, as
developed in companion papers. The substratum-level results that make
these emergences a single construction rather than two independent
applications of the same formalism are: (i) the \emph{reconstruction
theorem} (Theorem 23), which shows that observed physics --- quantum
mechanics with Bell violations, finite boundary entropy, and spatial
isotropy --- together with the framework's structural assumptions
(finiteness, determinism, bounded coupling, center independence,
linearity, background independence) uniquely determines the equivalence
class \([(S, \varphi)]/\mathcal{G}_{\text{sub}}\) at the lattice level,
with the Standard Model gauge group
\(\mathrm{SU}(3) \times \mathrm{SU}(2) \times \mathrm{U}(1)\) and
\(\bar\theta = 0\) as forced retrodictions, and the anomaly-free
hypercharge assignment forced once the observed family pattern is given
(fermion embedding closed via the link-carrier construction, with the
absolute generation count locked at exactly three by coupling-degree
minimality); and (ii) the \emph{substratum gauge group}
\(\mathcal{G}_{\text{sub}}\) (Theorem 24), with four explicit families
of generators proved to exhaust all observables-preserving
transformations via Stinespring uniqueness. The Standard Model gauge
group is the visible-sector shadow of \(\mathcal{G}_{\text{sub}}\) ---
the image of the substratum's symmetry under the trace-out --- and the
three-level gauge hierarchy (substratum, emergent QFT, emergent
Hamiltonian) provides the structural account of why the Standard Model
has its specific gauge structure. The synthesis claim is that the QM-GR
incompatibility, as conventionally posed, asks how to merge two
descriptions that share no common framework; the present construction
provides that common framework, and the apparent incompatibility is the
artifact of treating two different projections of one object as if they
were two different theories. The result is not a unification of quantum
mechanics and general relativity in the traditional sense --- that
program remains as ill-posed as before --- but a dissolution of the
question.
\begin{center}\rule{0.5\linewidth}{0.5pt}\end{center}
\hypertarget{introduction}{%
\subsection{1. Introduction}\label{introduction}}
The standard physical picture of the world contains two fundamental
theories. Quantum mechanics describes the microscopic regime in terms of
unitary evolution on a Hilbert space, superposition, and Born-rule
probabilities. General relativity describes the gravitational regime in
terms of a deterministic, classical, dynamical metric obeying Einstein's
equations. The two are mathematically and conceptually incompatible.
Quantum mechanics has no preferred temporal foliation and no
observer-independent state; general relativity has both. Quantum
mechanics treats measurement as a primitive operation; general
relativity treats it as a process within the dynamics. Quantum mechanics
is linear; general relativity is not. Every attempt to unify them --- to
quantize gravity, to geometrize quantum mechanics, to merge the two into
a deeper underlying theory --- has produced either inconsistencies,
ambiguities, or empirically unfalsifiable conjectures. The unification
problem has resisted solution for nearly a century, and the most active
current programs (loop quantum gravity, string theory, causal dynamical
triangulations, asymptotic safety) have produced neither a quantitative
empirical confirmation nor a clean conceptual resolution.
This paper argues that the QM-GR incompatibility is not a technical
problem to be solved by finding the right mathematical framework. It is
a category error: an attempt to merge two descriptions that turn out to
be projections of the same underlying object viewed from different
perspectives, rather than two competing accounts of the same regime. The
framework developed in the four-paper sequence to which this paper
belongs --- {[}Main{]}, {[}SM{]}, {[}GR{]}, and the present paper ---
provides the underlying object and the projection map. The underlying
object is a finite deterministic bijection \((S, \varphi)\) on a
configuration space partitioned into a visible sector accessible to an
embedded observer and a hidden sector beyond the observer's causal
reach. The projection from the underlying object to quantum mechanics is
the trace-out over the hidden sector, formalized in {[}Main{]} as the
embedded-observation theorem: under three structural conditions (C1:
non-trivial coupling, C2: slow bath, C3: high-capacity hidden sector),
the embedded observer's description is necessarily quantum mechanics,
with the wave function, Born rule, and unitary evolution arising as
derived rather than fundamental constructs. The projection from the same
underlying object to general relativity is the thermodynamic limit at
the partition boundary, formalized in {[}GR{]} as the
cosmological-horizon application: applied to the cosmological horizon as
a causal partition, the framework determines
\(\hbar = c^3 (2 l_p)^2 / (4G)\), the Bekenstein-Hawking entropy with
the \(1/4\) coefficient, and the dissolution of the cosmological
constant problem. The Standard Model emerges from the same bijection on
a cubic lattice with the wave equation as substratum dynamics, with the
gauge group
\(\mathrm{SU}(3) \times \mathrm{SU}(2) \times \mathrm{U}(1)\), three
chiral generations, the Higgs as composite, and \(\bar\theta = 0\) as
forced consequences {[}SM{]}.
The present paper develops the substratum-level results that make these
three emergences --- emergent QM in {[}Main{]}, the Standard Model
derivation in {[}SM{]}, and the gravitational sector in {[}GR{]} --- a
single construction rather than three separate applications of the same
formalism. The two technical results that do this work are the
\emph{reconstruction theorem} (§3) and the \emph{substratum gauge group}
(§4). The reconstruction theorem shows that the map from
\((S, \varphi)\) to observed physics is invertible within the
framework's structural class: observed quantum mechanics with Bell
violations, together with finite boundary entropy and spatial isotropy
and the structural assumptions of the framework (finiteness,
determinism, bounded coupling, center independence, linearity,
background independence), uniquely determine the equivalence class of
bijections on a lattice, with the Standard Model structure as a forced
retrodiction. The substratum gauge group identifies the kernel of this
inverse map --- four families of transformations of \((S, \varphi)\)
that exhaust all observables-preserving operations --- and shows that
the Standard Model gauge group is its shadow under the trace-out. The
combination of these two results turns the framework's three derivations
into a single object: the SM gauge group is not chosen from a landscape,
the gravitational thermodynamics are not appended to a quantum
description, and the emergent QM is not postulated as a starting point.
All three emerge from the same \((S, \varphi)\), and the substratum
gauge group is the symmetry that makes the relationship between them
exact rather than approximate.
The synthesis claim that follows from these results --- developed in §5
--- is that quantum mechanics and general relativity are not two
theories awaiting unification but two projections of the same
construction, viewed at different levels of description. Quantum
mechanics lives at the level of the visible-sector trace-out: the
embedded observer sees the bijection through the hole of finite causal
access, and the resulting compressed description is unitary QM. General
relativity lives at the level of the boundary thermodynamics: the same
causal partition that produces QM at the visible-sector level produces
classical horizon thermodynamics at the boundary level, and Jacobson's
thermodynamic argument promotes this to Einstein's equations. The two
descriptions are not in tension because they refer to different objects
in the construction --- not different \emph{aspects of the same regime},
which would invite unification, but different \emph{projections of the
same substratum}, which makes unification a category error. The
substratum gauge group makes this precise: at the level of
\((S, \varphi)\), there is no quantum and no classical, no metric and no
wave function; there is only the bijection and its symmetries. The
trace-out at the visible-sector level produces one set of derived
structures (the wave function, the SM gauge group, particle content),
and the thermodynamic limit at the boundary level produces another (the
metric, \(\hbar\), the BH entropy, the dynamical dark energy), and the
framework provides the construction that makes both of these
descriptions exact projections of the same object.
The paper is organized as follows. §2 develops the physical
interpretation of \((S, \varphi)\) as a finite lossless memory with
partial read-write access, and addresses the substrate objection (what
is the memory made of?) by identifying it as gauge in the precise
technical sense established by the substratum gauge group of §4. §3
states and proves the reconstruction theorem (Theorem 23). §4 states and
proves the substratum gauge group result (Theorem 24) and develops the
three-level gauge hierarchy. §5 makes the synthesis claim explicit,
citing {[}Main{]}, {[}SM{]}, and {[}GR{]} for the empirical content. §6
discusses structural realism, the ontological hierarchy, and the
dissolution of the measurement problem. §7 concludes. The paper is short
by design: the technical content fits in two sections (§§3--4) and the
rest is the structural and interpretive context that shows why those two
sections matter.
\begin{center}\rule{0.5\linewidth}{0.5pt}\end{center}
\hypertarget{the-physical-interpretation-of-s-ux3c6}{%
\subsection{2. The Physical Interpretation of (S,
φ)}\label{the-physical-interpretation-of-s-ux3c6}}
\textbf{Storage and memory.} S is the set of all distinguishable states:
\emph{finite capacity}. φ is a bijection: \emph{perfect memory} ---
information is never created or destroyed. Together, (S, φ) is a finite
lossless memory. The partition V defines the observer's \emph{access}
--- both read and write. The observer reads the visible sector
(measuring x) and writes to the hidden sector (each visible-sector
operation imprints correlations on H through the coupling
\(H_{\text{int}}\)). The slow bath (C2) preserves those writes;
subsequent reads retrieve them --- producing the information backflow
that constitutes P-indivisibility. Quantum mechanics is the statistics
of this read-write cycle: not passive observation of a static memory,
but the self-consistent description that emerges when a finite subsystem
both reads from and writes to a lossless register it cannot fully
access. The Born rule is the equilibrium of the cycle, not of passive
reading. Interference is write-then-read: information deposited in the
hidden sector during one transition is retrieved on a later transition
and partially cancels or reinforces the transition probabilities.
The \(10^{122}\) CC discrepancy is the compression ratio between total
storage and readable storage. The dark sector is the gravitational
effect of the unreadable storage. The Bekenstein-Hawking entropy is the
storage capacity of the partition boundary. The action scale ℏ is the
conversion factor between storage geometry and read-write statistics.
\textbf{Remark (the domain of the substratum dynamics).} The wave
equation of {[}SM §4.1{]} --- the unique second-order reversible
nearest-neighbor dynamics compatible with center independence, isotropy,
and linearity --- is defined on the full substratum \((S, \varphi)\),
not on the visible sector alone. Both visible and hidden sectors run the
same wave equation; the partition \(V\) imposes an observer-access
structure on this common dynamics but does not change it. This
convention makes three pieces of the framework consistent: (i) the
trace-out of {[}Main{]} proceeds by marginalizing over the hidden
sector's substratum degrees of freedom, which requires those degrees of
freedom to have a well-defined dynamics; (ii) the nested trace-out of
{[}GR §8.4{]} extends the construction to a deep hidden sector by
running the same wave equation at all levels; (iii) the link-carrier
construction of {[}SM §4.7.1.2{]} places matter on links that span
visible and hidden sublattices --- which makes sense only because both
sublattices are governed by the same dynamics. The full-substratum wave
equation is therefore the common dynamical input to all three companion
papers, with each applying a different projection map to extract
observer-level physics.
\textbf{The substrate objection.} ``What is the memory made of?'' (S, φ)
is a \emph{complete description} of reality --- it determines all
observables. Space, time, matter, and energy are derived from (S, φ), so
they cannot appear in its definition without circularity. Whether (S, φ)
\emph{is} reality or \emph{describes} reality is provably undecidable by
any measurement (reconstruction theorem below).
\textbf{Relation to computation.} A Turing machine has a tape (storage),
a head (partial read/write access), and a transition function (update
rule). The correspondence is suggestive: S is the tape, V is the head's
access window, φ is the transition function. But three differences are
physically significant. First, a Turing machine's tape is potentially
infinite; S is finite --- finiteness is essential for the recurrence
proof of P-indivisibility and QM, though the effective finiteness result
({[}GR, §8.4{]}) shows the deep hidden sector may be infinite without
affecting the observable physics. Second, a Turing machine is generally
irreversible (it can erase, overwrite, and halt); φ is a bijection ---
nothing is erased, nothing is created, there is no halting. Third, a
Turing machine computes an \emph{extrinsic function} (input → output for
an external user); (S, φ) computes no extrinsic function --- it is a
closed permutation that cycles through states and returns. The
appearance of dynamics, probability, particles, and forces is entirely
the observer's perspective --- what the permutation looks like through
the partial window V.
\textbf{Remark (the Turing connection under effective finiteness).} The
three differences soften under the effective finiteness result. With the
deep hidden sector potentially infinite, the first difference is between
the formal definition (S finite) and the physical requirement (only
\(\mathcal{C}_V \times \mathcal{C}_B\) need be finite). The second
difference is a specialization, not an opposition: reversible Turing
machines (Bennett, Fredkin-Toffoli) are a well-studied subclass. The
third difference --- extrinsic vs.~intrinsic --- is the one that does
physical work. The mapping is then structural: V is the head, H is the
tape, φ is a reversible transition function, and C1--C3 characterize the
architecture. The framework extends Turing's question: instead of asking
what a machine can compute for an external observer, it asks what
computation looks like to a component of the machine --- and proves the
answer is quantum mechanics.
\textbf{The arrow of time.} The substratum has no arrow of time --- φ
and φ⁻¹ are equally valid. Entropy increase is a property of the
observer's coarse-grained description: the standard Boltzmann mechanism
applied to the partition.
\textbf{The incompleteness family.} The framework's central result
belongs to a family of impossibility-with-structure theorems. Gödel: a
formal system cannot prove all truths about itself --- the unprovable
truths have rigid structure. Turing: a computer cannot decide all
questions about its own behavior --- the undecidable problems have rigid
structure. OI: an observer embedded in a deterministic system cannot
access the complete state --- the emergent description has rigid
structure (quantum mechanics). The common structure is
\emph{self-reference under finite resources}.
The precise OI analog of the halting problem is: \emph{can the observer
determine the hidden-sector state \(h\)?} The question is well-posed ---
\(h\) has a definite value at every moment, because \((S, \varphi)\) is
deterministic. Different \(h\) values produce different physical
outcomes. But the observer provably cannot determine \(h\): multiple
hidden states are compatible with any visible-sector history, and
transition probabilities \(T_{ij}(t)\) are averages over \(h\). The
structural consequence of this inaccessibility is quantum mechanics ---
just as the structural consequence of the halting problem's
undecidability is computability theory. The framework also identifies a
second class of inaccessible quantities --- the alphabet size \(q\)
({[}SM, §2.7{]}) and the deep-sector cardinality \(|\mathcal{C}_D|\)
({[}GR, §3.2{]}) --- but these are \emph{gauge}, not undecidable:
different values produce identical observables, so the question itself
is physically empty. The hidden state \(h\) is undecidable (real answer,
provably inaccessible). The cardinality \(|\mathcal{C}_D|\) is gauge (no
answer to find).
\textbf{Mathematics and physics.} The trace-out performs a
Jordan-Chevalley projection ({[}SM, Appendix A{]}): it extracts the
semisimple part of the dynamics and erases the nilpotent monodromy.
Physics is the semisimple shadow of mathematics --- the diagonalizable
spectral data, projected by the trace-out and organized by the gauge
group's representation structure. The reconstruction theorem (below)
proves that the mathematical description and the physics determine each
other uniquely up to gauge.
\begin{center}\rule{0.5\linewidth}{0.5pt}\end{center}
\hypertarget{the-reconstruction-theorem}{%
\subsection{3. The Reconstruction
Theorem}\label{the-reconstruction-theorem}}
The forward direction --- from \((S, \varphi)\) to observed physics ---
is established by {[}SM §§3.1, 4--5{]} and the companion paper
{[}Main{]}. The converse question is whether the observed physics
uniquely determines \((S, \varphi)\). The reconstruction proceeds in
three stages, each taking specified inputs and producing specified
outputs with an explicit uniqueness claim. The composite theorem
(Theorem 23) then aggregates the stages.
\hypertarget{inputs-to-the-reconstruction}{%
\subsubsection{3.1 Inputs to the
reconstruction}\label{inputs-to-the-reconstruction}}
The reconstruction takes two kinds of inputs: empirical observations and
structural assumptions. Being explicit about both is essential to the
uniqueness claim.
\textbf{Empirical inputs} (facts about the observed universe):
(E1) \textbf{Unitary quantum mechanics.} The observed physics is quantum
mechanical: states are vectors in a complex Hilbert space, time
evolution is unitary, observables are self-adjoint operators,
measurement outcomes follow the Born rule.
(E2) \textbf{Bell violations.} The observed correlations violate Bell
inequalities, ruling out local hidden-variable theories with
factorizable distributions.
(E3) \textbf{Finite boundary entropy.} The entropy of any bounded region
is finite and scales as the area of its boundary. This is supported by
holographic bounds {[}1, 2{]}; the cosmological horizon has finite area
so the bound applies.
(E4) \textbf{Spatial isotropy.} Observed physics is rotationally
invariant; no spatial direction is preferred.
\textbf{Structural assumptions} (restrictions on the class of candidate
substrates \((S, \varphi)\)):
(A1) \textbf{Finiteness.} The configuration space \(S\) is finite.
(Follows from E3 + the holographic bound interpreted as Hilbert-space
dimension cutoff \(\dim \mathcal{H} \leq e^{A/4}\).)
(A2) \textbf{Determinism.} \(\varphi: S \to S\) is a bijection
(deterministic, reversible dynamics).
(A3) \textbf{Bounded coupling degree.} Each site is coupled to a bounded
number of neighbors in \(\varphi\)'s action. (Required for locality and
the emergence of a coupling graph with well-defined dimension.)
(A4) \textbf{Center independence.} The dynamics \(\varphi\) does not
depend on a choice of ``center'' site; equivalently, \(\varphi\)
commutes with lattice translations up to gauge. (Required to derive the
wave equation in Stage 2.)
(A5) \textbf{Linearity.} The wave equation for \(\varphi\) is linear.
(Required to obtain the specific gauge structure in Stage 2; nonlinear
alternatives are not ruled out but would require a separate derivation.)
(A6) \textbf{Background independence.} The dynamics is invariant under
local transformations of internal indices, promoting the global
commutant symmetry to local gauge invariance ({[}SM §3.1{]}).
The theorem's uniqueness claim holds under E1--E4 \textbf{and} A1--A6
jointly; removing any of A3--A6 either requires new derivations or
weakens the uniqueness. The set A1--A6 is sufficient for the
reconstruction but is not proved to be minimal: A4 (center independence)
and A6 (background independence) overlap in physical content (A6
promotes the symmetry that A4 constrains), and A5 (linearity) is partly
derived from the other assumptions via the dynamics-selection argument
of {[}SM §4.1{]}. A tighter axiomatization may be possible but is not
pursued here; the reconstruction's validity depends on the sufficiency
of A1--A6, not on their independence.
\textbf{Critical dependencies.} Theorem 23's proof relies on the
following prior theorems, whose individual correctness is assumed:
\begin{itemize}
\tightlist
\item
{[}Main §3.2{]} Stinespring dilation for finite-dim CPTP channels
\item
{[}Main §3.4{]} Characterization theorem (Bell violation ⇒ C1, QM ⇒ C2
+ C3)
\item
{[}SM §3.2{]} Coupling-graph dimension → d = 3
\item
{[}SM §4.1{]} Center independence + isotropy + linearity → wave
equation
\item
{[}SM Theorems 5--15{]} Gauge group, generations, hypercharges
derivation chain
\item
{[}SM Theorems 17--21{]} T-invariance → \(\bar\theta = 0\)
\item
{[}GR §3{]} Gap equation from thermal self-consistency →
\(\hbar = c^3 \epsilon^2 / (4G)\)
\end{itemize}
Theorem 23's confidence is bounded above by the minimum confidence in
these dependencies.
\hypertarget{stage-1-observed-qm-deterministic-embedding-with-c1c3}{%
\subsubsection{3.2 Stage 1: Observed QM → deterministic embedding with
C1--C3}\label{stage-1-observed-qm-deterministic-embedding-with-c1c3}}
\textbf{Inputs:} E1 (unitary QM), E2 (Bell violations), E3 (finite
boundary entropy), A1 (finiteness), A2 (determinism).
\textbf{Output:} There exists a triple \((S, \varphi, V)\) with \(S\)
finite, \(\varphi\) a bijection on \(S\), and \(V \subset S\) a
distinguished subset such that: - The observed quantum dynamics is the
reduced description obtained by tracing out \(S \setminus V\) from the
deterministic evolution under \(\varphi\). - The triple satisfies C1
(non-trivial coupling), C2 (slow-bath memory), and C3 (high
hidden-sector capacity).
\textbf{Derivation.} Any CPTP quantum channel on a finite-dimensional
Hilbert space admits a Stinespring dilation as unitary evolution on a
larger Hilbert space {[}Main §3.2{]}. Finiteness of \(\dim \mathcal{H}\)
is justified by E3 (boundary entropy bound). The dilation extends to a
bijection on a finite configuration space by the standard embedding
{[}Main §3.2, Lemma{]}. Bell violations (E2) are incompatible with a
factorizable distribution and hence require non-trivial coupling between
visible and hidden sectors (C1). The characterization theorem {[}Main
§3.4{]} establishes that any QM dynamics (E1) arising from deterministic
evolution with trace-out necessarily satisfies C2 (slow-bath memory is
required for the non-Markovian returns that produce quantum
interference) and C3 (high hidden-sector capacity is required for the
visible sector to have sufficient entropy to support observed states).
\textbf{Uniqueness at Stage 1.} The triple \((S, \varphi, V)\) is
uniquely determined by the observations up to the equivalences: -
Stinespring ambiguity: different dilations producing the same channel
differ by unitary rotations on the hidden sector, which are absorbed
into \(\mathcal{G}_{\text{sub}}\) (Theorem 24). - Hidden-sector basis
choice: relabeling of hidden states is gauge (generator (i) of
\(\mathcal{G}_{\text{sub}}\)). - Deep-sector enlargement: additional
hidden degrees of freedom with \(\tau_B^D \gg \tau_S\) leave
observations unchanged (generator (iii) of
\(\mathcal{G}_{\text{sub}}\)).
\textbf{Status:} Theorem.
\hypertarget{stage-2-embedding-isotropy-specific-lattice-gauge-structure}{%
\subsubsection{3.3 Stage 2: Embedding + isotropy → specific lattice +
gauge
structure}\label{stage-2-embedding-isotropy-specific-lattice-gauge-structure}}
\textbf{Inputs:} Stage 1 output + E4 (spatial isotropy) + A3 (bounded
coupling) + A4 (center independence) + A5 (linearity) + A6 (background
independence).
\textbf{Output:} The substratum is a \(d = 3\) cubic lattice bijection
with: - \(K = 2d = 6\) internal components per site - Coupling matrix
eigenvalue multiplicities \((3, 2, 1)\) - Gauge group
\(\text{SU}(3) \times \text{SU}(2) \times \text{U}(1)\) - Three
generations of chiral fermions in the SM representations - One Higgs
doublet \((\mathbf{1}, \mathbf{2}, +1/2)\) - Anomaly-free hypercharges
\((Y_Q, Y_u, Y_d, Y_L, Y_e) = (1/6, 2/3, -1/3, -1/2, -1)\) -
\(\bar\theta = 0\) exactly
\textbf{Derivation.}
\begin{enumerate}
\def\labelenumi{(\alph{enumi})}
\item
\emph{Dimension.} The coupling graph inherited from Stage 1 has
polynomial growth exponent \(d\). Spatial isotropy (E4) plus bounded
coupling (A3) restricts \(d\) to the values admitting regular
isotropic lattices. Self-consistency of the derivation chain
(Myrheim-Meyer condition, anomaly structure, chirality) further
restricts to \(d = 3\) ({[}SM §3.2{]}).
\item
\emph{Wave equation.} Center independence (A4), isotropy (E4), and
linearity (A5) uniquely select the wave equation ({[}SM §4.1,
Theorem{]}): the unique second-order linear dynamics on a lattice that
is translation-invariant, isotropic, and reversible.
\item
\emph{Internal components.} Coupling-degree minimization applied to
the wave equation gives \(K = 2d = 6\) uniquely (Theorem 6). This
locks the absolute generation count at three (three spin-1/2 staggered
tastes emerge from the \(K = 6\) minimum).
\item
\emph{Gauge group.} Cubic-group decomposition of the \(K = 6\)
components gives multiplicities \((3, 2, 1)\) (Theorem 7). Background
independence (A6) promotes the commutant
\(\text{SU}(3) \times \text{SU}(2) \times \text{U}(1)\) from global to
local gauge invariance ({[}SM §3.1{]}).
\item
\emph{Matter content.} Staggered reduction gives three degenerate
spin-1/2 sectors (Theorems 8--10). Fermion embedding is completed via
the link-carrier construction ({[}SM §4.7.1.2{]}). Partition-spinor
identification (Theorem 12) and trace-out (Theorem 13) give chirality.
Anomaly cancellation (Theorems 14--15) uniquely fixes the
hypercharges.
\item
\emph{Discrete symmetries.} T-invariance of the bijection \(\varphi\)
combined with detailed balance in the emergent Hamiltonian forces
\(\bar\theta = 0\) at all energy scales (Theorems 17--21).
\end{enumerate}
\textbf{Uniqueness at Stage 2.} Each step (a)--(f) is an
\emph{if-and-only-if}: the stated structure is the unique consistent
choice given the inputs. The full chain is therefore a composition of
unique selections, so the output is unique up to
\(\mathcal{G}_{\text{sub}}\).
\textbf{Status:} Theorem at the lattice level.
\hypertarget{stage-3-dynamics-emergent-fundamental-constants}{%
\subsubsection{3.4 Stage 3: Dynamics → emergent fundamental
constants}\label{stage-3-dynamics-emergent-fundamental-constants}}
\textbf{Inputs:} Stage 2 output.
\textbf{Output:} The emergent value of \(\hbar\) is
\(\hbar = c^3 \epsilon^2 / (4G)\) with \(\epsilon = 2 l_p\), where
\(l_p\) is the Planck length.
\textbf{Derivation.} The gap equation from thermal self-consistency of
the boundary layer ({[}GR §3{]}) gives the stated relation. The
derivation uses: existence of thermal equilibrium at the boundary layer
(a consequence of the C1--C3 dynamics from Stage 1), the boundary-only
dependence lemma ({[}GR §3.2{]}), detailed balance (consequence of
\(\varphi\) being a bijection). No new structural assumptions beyond
Stages 1--2.
\textbf{Uniqueness at Stage 3.} The gap equation admits a unique
solution under the stated inputs ({[}GR §3, Theorem{]}).
\textbf{Status:} Theorem.
\hypertarget{the-composite-theorem}{%
\subsubsection{3.5 The composite theorem}\label{the-composite-theorem}}
\textbf{Lemma 23.0} (Uniqueness preservation). \emph{Let
\((S_1, \varphi_1)\) and \((S_2, \varphi_2)\) both be reconstructions of
the same observed physics (E1--E4) satisfying the structural assumptions
(A1--A6). Then \((S_1, \varphi_1)\) and \((S_2, \varphi_2)\) are in the
same equivalence class \([(S, \varphi)]/\mathcal{G}_{\text{sub}}\).}
\emph{Proof.} By Stage 1, each \((S_i, \varphi_i, V_i)\) is a C1--C3
embedding of the observed QM. By the Stinespring uniqueness and the
\(\mathcal{G}_{\text{sub}}\) identification of Stage 1, the two
embeddings are related by generators (i) and (iii) of
\(\mathcal{G}_{\text{sub}}\) (state relabeling and deep-sector
enlargement).
By Stage 2, each triple is placed on a \(d = 3\) cubic lattice with
\(K = 6\) and the specific gauge structure. Any two lattices satisfying
A3--A6 and having the observed isotropy (E4) are related by generator
(iv) of \(\mathcal{G}_{\text{sub}}\) (graph isomorphism up to
statistical isotropy). The alphabet size freedom is generator (ii).
By Stage 3, each triple produces \(\hbar = c^3 \epsilon^2 / (4G)\). The
constant is the same in both reconstructions.
Therefore \((S_1, \varphi_1)\) and \((S_2, \varphi_2)\) are related by
the composition of generators (i)--(iv) of \(\mathcal{G}_{\text{sub}}\),
and hence are in the same equivalence class. \(\square\)
\textbf{Theorem 23} (Layered reconstruction). \emph{Let E1--E4
(empirical inputs: QM with Bell violations, finite boundary entropy,
spatial isotropy) and A1--A6 (structural assumptions: finiteness,
determinism, bounded coupling degree, center independence, linearity,
background independence) hold. Then the equivalence class
\([(S, \varphi)]/\mathcal{G}_{\text{sub}}\) is uniquely determined: a
finite set with a bijection of bounded coupling degree and statistical
isotropy, with \(d = 3\), \(K = 6\), coupling matrix eigenvalue
multiplicities \((3, 2, 1)\), gauge group
\(\text{SU}(3) \times \text{SU}(2) \times \text{U}(1)\), three chiral
generations, one Higgs doublet, anomaly-free hypercharges,
\(\bar\theta = 0\), and \(\hbar = c^3 \epsilon^2/(4G)\).}
\emph{Proof.}
\begin{enumerate}
\def\labelenumi{(\arabic{enumi})}
\item
Stage 1 (§3.2) establishes existence and uniqueness (up to
\(\mathcal{G}_{\text{sub}}\)) of a C1--C3 embedding from E1--E3 +
A1--A2.
\item
Stage 2 (§3.3) takes the Stage 1 output plus E4 + A3--A6 and derives
the specific lattice, dimension, gauge group, matter content, and
discrete symmetries, with uniqueness at each step.
\item
Stage 3 (§3.4) takes the Stage 2 output and derives the emergent
constant \(\hbar\), with uniqueness.
\item
Lemma 23.0 establishes that any two reconstructions consistent with
the inputs are in the same equivalence class, completing the
uniqueness claim.
\end{enumerate}
The existence direction is the composition of Stages 1--3. The
uniqueness direction is Lemma 23.0. Together they establish the
bidirectional correspondence. \(\square\)
\hypertarget{remarks}{%
\subsubsection{3.6 Remarks}\label{remarks}}
\textbf{Remark} (Evidential weight of the reconstruction). The
reconstruction uniquely derives
\(\text{SU}(3) \times \text{SU}(2) \times \text{U}(1)\) with
multiplicities \((3, 2, 1)\), three chiral generations, one Higgs
doublet \((1, 2, +1/2)\), unique hypercharges, and \(\bar\theta = 0\).
Because the derivation is unique --- no free parameters, no
model-building choices, no landscape of alternatives --- every
independent experimental confirmation of the Standard Model's gauge
structure is retroactive evidence for the derivation chain that produces
it. The Standard Model is the most precisely tested mathematical
structure in the history of science (\(g - 2\) of the electron confirmed
to \(10^{-12}\), electroweak precision observables to \(10^{-5}\), QCD
cross-sections across decades of energy). This experimental record
transfers in full to the framework, because uniqueness of the derivation
makes the relationship between evidence and theory transitive: data
confirms structure, structure is uniquely derived, therefore data
confirms the derivation.
\textbf{Remark} (Scope of uniqueness). The theorem establishes
uniqueness within the class of candidate substrates satisfying A1--A6.
It does \textbf{not} exclude:
\begin{itemize}
\tightlist
\item
Intrinsically continuum theories (violate A1)
\item
Intrinsically stochastic theories (violate A2)
\item
Theories with unbounded coupling degree (violate A3)
\item
Theories violating center independence, linearity, or background
independence (violate A4--A6)
\end{itemize}
The framework's claim is that within the class of finite deterministic
bounded-coupling systems with the structural assumptions, the substratum
is unique. A separate argument would be required to rule out
alternatives outside this class. The framework's defense of A1--A6 (in
{[}SM §2{]} and elsewhere) is that they are natural given the empirical
inputs E1--E4, but this defense is itself an argument, not a theorem.
\textbf{Remark} (Hypothesis dependencies). Each structural assumption
can in principle be weakened or replaced:
\begin{itemize}
\tightlist
\item
A1 (finiteness) is supported by E3; alternative would be an
effective-finiteness argument with continuum UV completion, which the
framework does not develop.
\item
A2 (determinism) is the key ontological commitment; stochastic
alternatives would produce different reconstructions.
\item
A3 (bounded coupling) is conventional for physical systems; long-range
couplings would give different dimensional structure.
\item
A4 (center independence) rules out preferred-frame theories.
\item
A5 (linearity) is the strongest restriction; nonlinear wave equations
on finite lattices are a separate class.
\item
A6 (background independence) is standard for gauge theories.
\end{itemize}
Weakening any \(A_i\) does not merely enlarge the equivalence class; it
potentially produces \emph{different} reconstructions that may not agree
with observation. The framework's claim is that E1--E4 + A1--A6 is a
consistent set of inputs producing our observed physics; alternative
input sets are not investigated.
\textbf{Remark} (Continuum extension). The lattice-level predictions are
the framework's primary claims --- the lattice is the fundamental
description, not an approximation to a continuum theory. The structural
results (gauge group, representations, generation count,
\(\bar\theta = 0\)) are algebraic/topological properties of the lattice
theory and are exact. Quantitative observables (scattering amplitudes,
mass ratios) are compared to experiment through continuum perturbation
theory; the lattice-continuum discrepancy at any experimentally
accessible energy \(E\) is suppressed by
\((E\epsilon/\hbar c)^2 = (E/M_{\text{Pl}})^2\), which is
\(\sim 10^{-32}\) at LHC energies. The rigorous proof that lattice
Yang-Mills defines a continuum limit with a mass gap (a Clay Millennium
Prize problem) is an open problem in mathematics, but it is not required
by the OI framework: the lattice theory is complete, and its predictions
are lattice-exact.
\textbf{Remark} (Finite observation sets vs.~idealized empirical
inputs). The empirical inputs E1--E4 are stated as structural facts
about observed physics --- the full apparatus of QM, Bell violations
attaining Tsirelson's bound, the holographic entropy bound, exact
rotational invariance. Operationally, no finite observation set fully
establishes any of these; finite measurements support them only in the
sense of being consistent with the data so far. The reconstruction
theorem holds for the empirical inputs \emph{as stated} --- the
idealized infinite-data regime --- and proves uniqueness of the
equivalence class under that regime. Reconstruction from finite
observation sets is a related but distinct question: with finite data,
multiple equivalence classes may all be consistent, with the data
discriminating among them only weakly. The framework's operational
answer to the finite-data question is the cumulative weight of the
quantitative predictions of {[}SM §7{]} --- twenty-one structural
retrodictions of CKM/PMNS angles, mass ratios, and the Koide relation,
each at \(\lesssim 1\sigma\) --- which collectively rule out
reconstructions that would have produced different values. Theorem 23
establishes idealized uniqueness; the {[}SM §7{]} prediction set
establishes the operational uniqueness that a skeptical reader can check
against data.
The reconstruction establishes a bidirectional correspondence:
\[\text{Observed physics (E1–E4)} \; + \; \text{Structural assumptions (A1–A6)} \quad \longleftrightarrow \quad [(S, \varphi)] / \mathcal{G}_{\text{sub}}\]
The mathematical structure and the physics determine each other up to
gauge equivalence, given the structural assumptions. The distinction
between ``mathematics describes reality'' and ``mathematics is reality''
has no empirical content --- it is itself gauge, provably undecidable by
measurement (cf.~Theorem 24). This reframes Wigner's puzzle: the
``unreasonable effectiveness'' of mathematics is a theorem modulo the
structural assumptions, not a mystery.
\begin{center}\rule{0.5\linewidth}{0.5pt}\end{center}
\hypertarget{the-substratum-gauge-group}{%
\subsection{4. The Substratum Gauge
Group}\label{the-substratum-gauge-group}}
The equivalence relation \(\sim\) in the reconstruction theorem has a
precise structure. Define: \((S, \varphi) \sim (S', \varphi')\) if the
two systems produce identical emergent physics --- the same transition
probabilities \(T_{ij}(t)\), the same emergent Hamiltonian (up to
D-gauge), and the same \(\hbar\) --- for all partitions of the same
structural class. The set of transformations mapping \((S, \varphi)\) to
an equivalent \((S', \varphi')\) is a group --- the \emph{substratum
gauge group} \(\mathcal{G}_{\text{sub}}\).
\textbf{Theorem 24} (Generators of the substratum gauge group).
\emph{\(\mathcal{G}_{\text{sub}}\) contains at least four independent
families of transformations:}
\emph{(i) State relabeling.} For any bijection \(\sigma: S \to S\), the
conjugate
\((S, \sigma \circ \varphi \circ \sigma^{-1}) \sim (S, \varphi)\). The
transition probabilities depend on the coupling structure of
\(\varphi\), not on which labels are attached to which states. This is
an \(|S|!\)-element subgroup --- vastly larger than any gauge group in
the Standard Model.
\emph{(ii) Alphabet change.} Replacing the local state space
\(\mathbb{Z}/q\mathbb{Z}\) with \(\mathbb{Z}/q'\mathbb{Z}\) for any
\(q' \geq 2\), while preserving the coupling graph and dynamics class,
leaves all observables unchanged ({[}SM, §2.7{]}). This family is
parametrized by all integers \(q \geq 2\).
\emph{(iii) Deep-sector enlargement.} Adjoining additional degrees of
freedom to \(\mathcal{C}_D\) (the deep hidden sector beyond the boundary
layer), with arbitrary dynamics satisfying \(\tau_B^D \gg \tau_S\), does
not change the emergent description. The boundary-only dependence lemma
{[}GR, §3.2{]} proves
\(T_{ij}(t) = T_{ij}^{(B)}(t) + \mathcal{O}(t/\tau_B)\): observables
depend only on \(\mathcal{C}_V \times \mathcal{C}_B\). The deep sector
may be finite of any size, or infinite.
\emph{(iv) Graph isomorphism (up to statistical isotropy).} Two coupling
graphs \(G_\varphi\) and \(G_{\varphi'}\) that are quasi-isometric with
the same polynomial growth exponent \(d\), the same spectral properties,
and the same statistical isotropy at large scales produce the same
emergent physics. The regular cubic lattice \(\mathbb{Z}^3\) and any
bounded-degree random graph with \(d = 3\) polynomial growth and
statistical isotropy are gauge-equivalent.
\emph{Proof.} Each generator preserves all inputs to the derivation
chain. (i): conjugation preserves the coupling graph \(G_\varphi\) up to
relabeling, hence all graph-dependent quantities (area law, dispersion,
dimension, eigenvalue multiplicities). (ii): {[}SM, §2.7{]} proves
\(q\)-independence of every prediction. (iii): the boundary-only
dependence lemma gives the result directly. (iv): the derivation chain
uses only statistical properties of \(G_\varphi\) (dimension via
Myrheim-Meyer, isotropy, bounded degree), not the specific graph.
\(\square\)
\textbf{Completeness of the generators.} The four families exhaust
\(\mathcal{G}_{\text{sub}}\). The proof proceeds by showing that any
observables-preserving transformation decomposes into (i)--(iv).
Let \(g: (S, \varphi) \to (S', \varphi')\) preserve all observables
(transition probabilities \(T_{ij}(t)\), emergent Hamiltonian up to
D-gauge, and \(\hbar\)). By assumption, \(g\) preserves the
visible-sector CPTP channel \(\Phi\). Stinespring's uniqueness theorem
{[}Main, §3.2{]} constrains the freedom: any two dilations of the same
channel on the same visible Hilbert space differ by a partial isometry
on the hidden sector. At the substratum level, this partial isometry is
a relabeling of hidden-sector states (generator (i) restricted to
\(\mathcal{C}_H\)) when the hidden sectors have equal cardinality, or a
composition of relabeling and deep-sector enlargement/reduction
(generators (i) + (iii)) when they differ in size. The alphabet may
change freely (generator (ii), by {[}SM, §2.7{]}). The coupling graph
\(G_{\varphi'}\) must have the same statistical properties as
\(G_\varphi\) --- dimension, spectral dimension, isotropy --- since
these determine the derivation chain's outputs; two such graphs are
related by generator (iv). These four degrees of freedom ---
hidden-sector relabeling, deep-sector size, alphabet, and graph
statistical class --- exhaust the free parameters in the reconstruction,
so the four generators span \(\mathcal{G}_{\text{sub}}\). \(\square\)
Three candidate fifth families, identified during internal audit, are
explicitly subsumed:
\begin{itemize}
\tightlist
\item
\emph{Time reversal} (\(\varphi \to \varphi^{-1}\)): the wave
equation's T-invariance gives
\(\varphi^{-1} = T \circ \varphi \circ T^{-1}\) where \(T\) is the
phase-space layer swap \((x(t), x(t+1)) \mapsto (x(t+1), x(t))\). This
is generator (i) with \(\sigma = T\).
\item
\emph{Hidden-sector dynamical reparametrization} (beyond enlargement):
by Stinespring uniqueness, any two same-channel dilations of equal
hidden-sector dimension differ by a hidden-sector unitary ---
generator (i) restricted to \(\mathcal{C}_H\).
\item
\emph{Visible-sector emergent global phase} (\(U \to e^{i\theta}U\)):
at the substratum level \(S\) is a finite set with no complex
structure; the emergent phase is trivially the identity on
\((S, \varphi)\).
\end{itemize}
\textbf{The gauge hierarchy.} Three levels of gauge symmetry appear in
the framework, each projecting onto the next through the trace-out:
\emph{Level 3 (substratum):} \(\mathcal{G}_{\text{sub}}\) acts on
\((S, \varphi)\) before the trace-out. It is the largest gauge group and
includes transformations with no analog in the emergent description
(deep-sector enlargement, alphabet change).
\emph{Level 2 (emergent QFT):}
\(\text{SU}(3) \times \text{SU}(2) \times \text{U}(1)\) is the commutant
of the coupling matrix \(M\), acting on the emergent fields. It is the
image of \(\mathcal{G}_{\text{sub}}\) restricted to transformations that
permute internal components within the eigenspaces of \(M\).
\emph{Level 1 (emergent Hamiltonian):} The D-gauge \(H \to DHD^\dagger\)
with \(D\) a diagonal unitary, acting on the emergent Hamiltonian within
the emergent QM. It is the residual freedom after all
transition-probability data has been extracted.
Each level is contained in the one above: Level 1 \(\subset\) Level 2
\(\subset\) Level 3. The trace-out projects Level 3 onto Level 2 (the SM
gauge group is the shadow of \(\mathcal{G}_{\text{sub}}\) visible to the
emergent QFT), and restricting to the Hamiltonian projects Level 2 onto
Level 1.
\textbf{Remark.} The substratum gauge group is not a symmetry of a
Lagrangian or an action --- no Lagrangian exists at the substratum
level. It is a symmetry of the \emph{equivalence class of substrata},
defined by the condition that all observables are preserved. The
emergent gauge symmetries (Levels 1 and 2) are Lagrangian symmetries in
the standard sense, derived from the substratum through the trace-out.
\begin{center}\rule{0.5\linewidth}{0.5pt}\end{center}
\hypertarget{synthesis-qm-and-gr-as-projections-of-s-ux3c6}{%
\subsection{5. Synthesis: QM and GR as Projections of (S,
φ)}\label{synthesis-qm-and-gr-as-projections-of-s-ux3c6}}
The reconstruction theorem (§3) establishes that observed physics ---
quantum mechanics with Bell violations, finite boundary entropy, and
spatial isotropy --- uniquely determines the equivalence class
\([(S, \varphi)]/\mathcal{G}_{\text{sub}}\) at the lattice level. The
substratum gauge group (§4) makes the equivalence relation precise and
identifies the Standard Model gauge group as the visible-sector shadow
of \(\mathcal{G}_{\text{sub}}\). This section makes the synthesis claim
explicit: quantum mechanics and general relativity are not two theories
awaiting unification but two projections of the same finite
deterministic construction.
\hypertarget{the-two-projections}{%
\subsubsection{5.1 The two projections}\label{the-two-projections}}
The framework's three derivations --- emergent QM in {[}Main{]}, the
Standard Model in {[}SM{]}, and the gravitational sector in {[}GR{]} ---
apply the same trace-out machinery to the same kind of object
\((S, \varphi)\) at two different levels of description.
\textbf{Visible-sector projection.} At the level of the embedded
observer's epistemic access, the trace-out over the hidden sector
produces unitary quantum mechanics with the wave function, Born rule,
and Schrödinger evolution as derived structures (rather than postulated
ones). The proof in {[}Main, §3{]} establishes this as a theorem: under
the three structural conditions C1 (non-trivial coupling), C2 (slow
bath), and C3 (high-capacity hidden sector), the embedded observer's
compressed description is necessarily quantum mechanical, with the
conditions both necessary and sufficient. Applied to a cubic lattice
with the wave equation as substratum dynamics --- itself uniquely
selected among second-order reversible nearest-neighbor dynamics by
center independence, isotropy, and linearity ({[}SM, §4.1{]}) --- this
projection produces the Standard Model gauge group
\(\mathrm{SU}(3) \times \mathrm{SU}(2) \times \mathrm{U}(1)\) (as the
commutant of the coupling matrix, {[}SM, §§4.4--4.6{]}), three chiral
generations and the Higgs as a composite scalar in the singlet staggered
taste ({[}SM, §4.7{]}, Theorems 8--11), anomaly-free hypercharges
({[}SM, §4.9{]}, Theorems 14--15), and \(\bar\theta = 0\) at all energy
scales ({[}SM, §5{]}, Theorems 17--21). Twenty-one quantitative
predictions follow ({[}SM, §7{]}), including the Cabibbo angle from a
single Brillouin-zone distance, the Koide angle from a cubic-group
quadratic Casimir, all three PMNS angles within \(0.5\sigma\), six
fermion masses from one empirical input to better than \(1\%\), and all
three SM gauge couplings at \(M_Z\) ({[}SM, §6.3{]}).
\textbf{Boundary-thermodynamic projection.} At the level of the
partition boundary, classical horizon thermodynamics --- the
temperature, entropy, and dynamical evolution of the causal horizon as a
gravitating object --- produces general relativity through Jacobson's
thermodynamic argument: the Clausius relation \(dE = T \, dS\) applied
at local causal horizons yields Einstein's equations with the same
structural inputs that give the visible-sector projection its form.