-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComplexity.tex
More file actions
1951 lines (1665 loc) · 95.2 KB
/
Complexity.tex
File metadata and controls
1951 lines (1665 loc) · 95.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
%
\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}
\usepackage{longtable,booktabs,array}
\usepackage{calc} % for calculating minipage widths
% Correct order of tables after \paragraph or \subparagraph
\usepackage{etoolbox}
\makeatletter
\patchcmd\longtable{\par}{\if@noskipsec\mbox{}\fi\par}{}{}
\makeatother
% Allow footnotes in longtable head/foot
\IfFileExists{footnotehyper.sty}{\usepackage{footnotehyper}}{\usepackage{footnote}}
\makesavenoteenv{longtable}
\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{structural-consequences-of-observational-incompleteness}{%
\section{Structural Consequences of Observational
Incompleteness}\label{structural-consequences-of-observational-incompleteness}}
\hypertarget{from-chemistry-to-computation}{%
\subsubsection{From Chemistry to
Computation}\label{from-chemistry-to-computation}}
\textbf{Author:} Alex Maybaum\\
\textbf{Date:} April 2026\\
\textbf{Status:} DRAFT PRE-PRINT\\
\textbf{Classification:} Theoretical Physics / Foundations /
Astrobiology
\begin{center}\rule{0.5\linewidth}{0.5pt}\end{center}
\hypertarget{abstract}{%
\subsection{Abstract}\label{abstract}}
The Observational Incompleteness (OI) framework derives the Standard
Model's gauge structure from a single definition of embedded observation
{[}1, 2{]}. We trace the consequences of this derived structure from
atomic physics through computation. The structural chain is entirely
parameter-free: d = 3 determines the orbital algebra SO(3), the periodic
table, carbon's tetrahedral bonding geometry, the nuclear-atomic scale
hierarchy, water's solvent properties, and the thermal window. Three
generations guarantee CP violation; the Higgs guarantees a mass
hierarchy; chiral SU(2) produces a parity-violating energy difference
whose sign is fixed by the partition. The viable fraction of the
18-dimensional parameter space is estimated at \textasciitilde16\%.
The combinatorial diversity of carbon chemistry (\(\sim 20^N\) peptides
of length \(N\)) exceeds both Kauffman's autocatalytic threshold and von
Neumann's self-reproducing automaton threshold by \(\sim 10^{56}\).
Template replication follows from three independently structural
capabilities (linear polymers, complementary pairing, catalysis). The
origin of life is identified as the first molecular system to satisfy
C1--C3: RNA is the unique molecule that simultaneously serves as
template (C2, C3) and catalyst (C1), making the RNA world a structural
prediction. C1--C3 systems are exponential-growth attractors in chemical
space; the transition from prebiotic chemistry to life is inevitable and
irreversible. Darwinian evolution follows from imperfect template
replication. The chain extends through information processing, neural
computation, semiconductor physics (Group IV band gaps → transistors →
NAND → universal computation), and AI --- with one contingent step
(general intelligence). The same C1--C3 conditions that produce QM
cosmologically are satisfied in proteins
(\(\tau_S / \tau_B \sim 10^{-9}\) to \(10^{-12}\)), predicting
non-Markovian enzyme kinetics consistent with single-molecule
experiments. The non-Markovian corrections grow as \(\tau_S / \tau_B\)
increases, approaching engineering relevance in quantum computing
(\(10^{-3}\)) and quantum sensing (\(10^{-6}\)). The framework
identifies a new design space --- engineered C1--C3 architectures --- in
which the environment is programmable quantum memory rather than noise.
\begin{center}\rule{0.5\linewidth}{0.5pt}\end{center}
\hypertarget{introduction}{%
\subsection{1. Introduction}\label{introduction}}
The fine-tuning problem in physics rests on a counterfactual: if the
laws of physics or the values of fundamental constants were different,
the universe would not permit complex structures, and we would not exist
to observe it. The anthropic principle elevates this observation into an
explanatory principle --- our existence selects the laws from an
ensemble of possibilities.
The OI framework {[}1, 2{]} challenges the premise. The companion papers
prove that an embedded observer in a deterministic system with
conditions C1--C3 (coupling, slow bath, sufficient capacity) necessarily
describes the visible sector using quantum mechanics {[}1{]}, and that
the dynamics uniquely selected by this requirement determines the
Standard Model's complete structure {[}2{]}. If the laws are derived
rather than contingent, the largest source of anthropic variation ---
the structure of the laws themselves --- is eliminated.
This paper traces the consequences. §2 establishes the structural chain
from (S, φ) to the full preconditions for organic chemistry --- orbital
structure, the periodic table, carbon's bonding geometry, the
nuclear-atomic scale hierarchy, water's solvent properties, and the
thermal window for dynamic chemistry. §3 estimates the viable fraction
of the parameter space using existing literature. §4 derives the
chirality chain from the partition to biological homochirality. §5
extends the chain through autocatalytic networks, template replication,
the origin of life (identified as the first molecular C1--C3 system),
Darwinian evolution, information processing, and artificial
intelligence, identifying the one contingent step and the structural
limits on all embedded observers. §6 addresses the existence question.
§7 applies C1--C3 to biological systems, predicting non-Markovian enzyme
kinetics with implications for drug design. §8 identifies where OI
corrections reach engineering relevance --- quantum computing, quantum
sensing, and precision metrology --- and proposes three engineering
frontiers: engineered partitions (the bath as programmable memory),
non-Markovian quantum computation (P-indivisible gate sequences), and
quantum materials with designed C1--C3 architectures.
\begin{center}\rule{0.5\linewidth}{0.5pt}\end{center}
\hypertarget{the-structural-chain}{%
\subsection{2. The Structural Chain}\label{the-structural-chain}}
\hypertarget{from-s-ux3c6-to-orbitals}{%
\subsubsection{2.1 From (S, φ) to
orbitals}\label{from-s-ux3c6-to-orbitals}}
The framework derives d = 3 {[}2, §3.2{]} from four independent
self-consistency filters (propagating gravity, stable matter, the dark
sector concordance, and renormalizability). In three spatial dimensions,
the rotation group is SO(3), whose irreducible representations are
labeled by angular momentum quantum number \(l = 0, 1, 2, 3, \ldots\)
with \((2l+1)\) states each. These are the atomic orbitals: s
(\(l = 0\), spherical, 1 orientation), p (\(l = 1\), dumbbell, 3
orientations), d (\(l = 2\), 5 orientations), f (\(l = 3\), 7
orientations).
This is the \emph{only} orbital algebra consistent with embedded
observation. In \(d = 2\), angular momentum has a single component ---
only circular harmonics exist, with no three-dimensional bonding
geometry. In \(d \geq 4\), the Coulomb potential \(V(r) \sim r^{2-d}\)
does not support stable bound states {[}3, 4{]}: classical orbits spiral
into the nucleus, and the quantum Hamiltonian is unbounded below.
\hypertarget{from-orbitals-to-the-periodic-table}{%
\subsubsection{2.2 From orbitals to the periodic
table}\label{from-orbitals-to-the-periodic-table}}
The framework derives spin-1/2 fermions from the staggered structure on
the d = 3 lattice {[}2, §4.2{]}. The spin-statistics theorem --- a
consequence of the emergent QFT's Lorentz invariance {[}2, §3.1{]} ---
gives the Pauli exclusion principle: each orbital holds at most 2
electrons (spin up and spin down). The shell capacities follow:
\[s: 2, \quad p: 6, \quad d: 10, \quad f: 14\]
The periodic table's period lengths --- 2, 8, 8, 18, 18, 32 --- are
determined by the filling order of these shells. This architecture is
entirely structural: it depends on d = 3, spin-1/2, and the Pauli
principle, all of which are derived.
\hypertarget{carbons-bonding-geometry}{%
\subsubsection{2.3 Carbon's bonding
geometry}\label{carbons-bonding-geometry}}
Element 6 (carbon) has electron configuration 1s² 2s² 2p² --- four
valence electrons. In d = 3, four valence electrons admit three
hybridization modes:
\emph{sp³ hybridization:} Four equivalent orbitals pointing to the
vertices of a regular tetrahedron (bond angle 109.5°). This is the
geometry of methane (CH₄), diamond, and the backbone of all organic
macromolecules --- proteins, nucleic acids, lipids, carbohydrates.
\emph{sp² hybridization:} Three planar orbitals at 120° plus one π bond.
This is the geometry of graphite, benzene, and aromatic chemistry.
The \emph{possibility} of these hybridizations --- and hence the
possibility of three-dimensional macromolecular architecture --- is a
structural consequence of the angular momentum algebra in d = 3.
\hypertarget{beyond-carbon-the-extended-structural-chain}{%
\subsubsection{2.4 Beyond carbon: the extended structural
chain}\label{beyond-carbon-the-extended-structural-chain}}
Four additional structural results extend the chain beyond orbital
chemistry.
\textbf{Matter-antimatter asymmetry.} Three generations {[}2, §4.7{]}
give the CKM matrix with a physical CP-violating phase --- one of the
three Sakharov conditions for baryogenesis {[}5{]}. The partition breaks
P {[}2, §4.8, Theorem 13{]}. Combined with CP violation, baryogenesis is
structurally possible. Without three generations, the CKM matrix has no
CP-violating phase and the standard electroweak baryogenesis mechanism
does not operate.
\textbf{Mass hierarchy.} The Higgs mechanism {[}2, §4.7{]} gives fermion
masses through Yukawa couplings to a single doublet. The taste-breaking
mechanism {[}2, §4.7{]} produces generation-dependent couplings
generically, ensuring different generations have different masses. This
guarantees the existence of light fermions (electron, u and d quarks)
--- not as a coincidence, but as a structural feature of the staggered
lattice.
\textbf{Nuclear binding.} SU(3) color confinement {[}2, §4.6{]} produces
bound hadrons. The existence of multi-nucleon bound states (nuclei)
requires specific parameter values (§3), but the \emph{mechanism} ---
color confinement binding quarks into hadrons, residual strong force
binding hadrons into nuclei --- is structural.
\textbf{Chiral chemistry.} Chiral SU(2) {[}2, §4.8{]} produces
electroweak parity violation in all weak processes. This propagates to
molecular physics as a parity-violating energy difference between
mirror-image molecules (§4).
\hypertarget{the-scale-hierarchy}{%
\subsubsection{2.5 The scale hierarchy}\label{the-scale-hierarchy}}
The framework derives two independent gauge groups --- SU(3) and U(1)
--- with independent coupling strengths corresponding to independent
eigenvalues of the coupling matrix M {[}2, §4.6{]}. This guarantees two
widely separated energy scales:
\[E_{\text{nuclear}} \sim \Lambda_{\text{QCD}} \sim \text{MeV}, \qquad E_{\text{atomic}} \sim \alpha^2 m_e c^2 \sim \text{eV}\]
The ratio \(E_{\text{nuclear}} / E_{\text{atomic}} \sim 10^6\) is partly
parametric (it depends on the specific couplings), but the
\emph{existence} of two independent scales is structural --- it follows
from having two independent gauge groups. The universal induced coupling
\(1/\alpha_0 = 23.25\) at the Planck scale is itself structural ---
determined by \(N_f = 6\) and the Dynkin index, not by the eigenvalues
of \(M\) --- and the framework reproduces all three SM gauge couplings
at \(M_Z\) through non-perturbative gauge self-energy corrections and RG
running {[}2, §6{]}. This separation has a profound consequence: nuclei
are stable against chemical reactions. Chemistry rearranges electrons
(eV) without touching nuclei (MeV). Atoms are permanent building blocks
that can be assembled, disassembled, and reassembled without being
destroyed.
\hypertarget{water}{%
\subsubsection{2.6 Water}\label{water}}
Element 8 (oxygen): configuration 1s² 2s² 2p⁴ --- six valence electrons,
two unpaired. The sp³-like hybridization in d = 3, distorted by two lone
pairs, gives a bond angle of \textasciitilde104.5°. This is the geometry
of water (H₂O).
Water's anomalous properties follow from this geometry. The bent
structure creates a permanent dipole moment. The lone pairs enable
hydrogen bonding --- a secondary interaction (\textasciitilde0.2 eV)
intermediate between covalent bonds (\textasciitilde3 eV) and thermal
energy (\textasciitilde0.025 eV at 300K). Hydrogen bonding produces:
high specific heat (thermal buffering for chemical reactions), density
maximum near 4°C (ice floats, insulating liquid water below), and
exceptional solvent capability (dissolving ionic and polar molecules for
solution-phase chemistry).
The \emph{possibility} of a molecule with these properties is
structural: element 8's electron configuration in d = 3 with the derived
orbital algebra guarantees a bent dihydride with lone pairs capable of
hydrogen bonding. The \emph{existence} of a liquid phase at specific
temperatures is parametric.
\hypertarget{the-thermal-window}{%
\subsubsection{2.7 The thermal window}\label{the-thermal-window}}
For chemistry to support complexity, a thermal window must exist where
bond energies (\textasciitilde1--5 eV) \(\gg kT\) (bonds are stable),
\(kT > E_{\text{activation}}\) (reactions proceed), and a liquid solvent
exists. The scale hierarchy (§2.5) guarantees that
\(E_{\text{bond}} / E_{\text{thermal}} \gg 1\) at any temperature where
a liquid exists --- chemistry is inherently \emph{stable but dynamic} in
any universe with two independent gauge groups and the derived orbital
structure.
\hypertarget{summary-of-the-structural-chain}{%
\subsubsection{2.8 Summary of the structural
chain}\label{summary-of-the-structural-chain}}
\[\text{(S, } \varphi\text{)} \xrightarrow{\text{derived}} d = 3 \xrightarrow{\text{SO(3)}} \text{orbitals} \xrightarrow{\text{Pauli}} \text{periodic table} \xrightarrow{\text{element 6}} \text{tetrahedral carbon}\]
\[\text{(S, } \varphi\text{)} \xrightarrow{\text{derived}} \text{3 generations} \xrightarrow{\text{CKM}} \text{CP violation} \xrightarrow{\text{Sakharov}} \text{baryogenesis possible}\]
\[\text{(S, } \varphi\text{)} \xrightarrow{\text{derived}} \text{Higgs} \xrightarrow{\text{taste-breaking}} \text{mass hierarchy} \xrightarrow{} \text{light fermions} \xrightarrow{} \text{stable atoms}\]
\[\text{(S, } \varphi\text{)} \xrightarrow{\text{derived}} \text{SU(3)} \xrightarrow{\text{confinement}} \text{hadrons} \xrightarrow{\text{residual force}} \text{nuclei possible}\]
\[\text{(S, } \varphi\text{)} \xrightarrow{\text{derived}} \text{SU(3) + U(1) independent} \xrightarrow{} \text{scale hierarchy} \xrightarrow{} \text{atoms are permanent building blocks}\]
\[\text{(S, } \varphi\text{)} \xrightarrow{\text{derived}} \text{element 8 in d = 3} \xrightarrow{} \text{bent H}_2\text{O} \xrightarrow{\text{H-bonding}} \text{anomalous solvent}\]
\[\text{(S, } \varphi\text{)} \xrightarrow{\text{derived}} \text{scale hierarchy + orbital structure} \xrightarrow{} \text{thermal window exists}\]
\[\text{(S, } \varphi\text{)} \xrightarrow{\text{derived}} \text{chiral SU(2)} \xrightarrow{\text{PVED}} \text{L-amino acid preference}\]
Every arrow is either a theorem from {[}1, 2{]} or a standard textbook
result applied to the derived structure. No parameter values enter. The
possibility of a universe with atoms, nuclei, a periodic table, organic
chemistry, matter-antimatter asymmetry, and chirally selected molecules
is a theorem about embedded observation.
\begin{center}\rule{0.5\linewidth}{0.5pt}\end{center}
\hypertarget{the-viable-parameter-space}{%
\subsection{3. The Viable Parameter
Space}\label{the-viable-parameter-space}}
\hypertarget{the-question}{%
\subsubsection{3.1 The question}\label{the-question}}
The structural chain establishes that organic chemistry is
\emph{possible}. For it to be \emph{actual}, the 18 free parameters of
the SM must fall in a viable region. How large is this region?
Traditional fine-tuning studies {[}6, 7, 8{]} vary both the structure
and the parameters. The OI framework fixes the structure, reducing the
question to parameters alone. This sharpens the problem considerably:
the gauge group, dimension, generation count, and discrete symmetries
are no longer free variables.
\hypertarget{the-most-constrained-parameters}{%
\subsubsection{3.2 The most constrained
parameters}\label{the-most-constrained-parameters}}
Not all 18 parameters are equally constrained. The literature identifies
four as critical for complex chemistry:
\textbf{The fine-structure constant α.} Governs atomic binding,
molecular bond strengths, and the balance between electromagnetic and
thermal energies. Stable atoms require \(\alpha \lesssim 1\) (above
this, relativistic effects destabilize inner shells). Complex chemistry
requires bond energies \(\gg kT\) at habitable temperatures, giving
\(\alpha \gtrsim 10^{-3}\) {[}8{]}. The viable range spans roughly two
orders of magnitude: \(10^{-3} \lesssim \alpha \lesssim 10^{-1}\), with
our universe at \(\alpha \approx 1/137 \approx 7.3 \times 10^{-3}\) ---
within the viable range but not near its center.
\textbf{The electron-to-proton mass ratio \(m_e / m_p\).} Determines the
separation of nuclear and atomic scales. Stable atoms with a rich
periodic table require \(m_e / m_p \ll 1\) (so electrons orbit far from
the nucleus). Complex chemistry breaks down for
\(m_e / m_p \gtrsim 10^{-1}\) (electron clouds too compact for
directional bonding). The viable range is roughly
\(10^{-5} \lesssim m_e / m_p \lesssim 10^{-1}\), spanning four orders of
magnitude. Our value: \(m_e / m_p \approx 5.4 \times 10^{-4}\).
\textbf{The quark mass ratio \(m_d - m_u\).} Controls the proton-neutron
mass difference and hence nuclear stability. If \(m_d - m_u\) changes
sign (proton heavier than neutron), hydrogen is unstable ---
catastrophic for chemistry. If \(m_d - m_u\) is too large, no bound
nuclei beyond hydrogen exist. The viable range is approximately
\(1 \lesssim (m_d - m_u) / \text{MeV} \lesssim 5\) {[}9{]}, about a
factor of 5. Our value: \((m_d - m_u) \approx 2.5\) MeV.
\textbf{The strong coupling \(\alpha_s\).} At the QCD scale
(\textasciitilde1 GeV), \(\alpha_s\) determines nuclear binding. If
\(\alpha_s\) is \textasciitilde10\% smaller, the deuteron is unbound and
big bang nucleosynthesis fails to produce helium --- but stellar
nucleosynthesis could still produce carbon {[}8{]}. If \(\alpha_s\) is
\textasciitilde30\% larger, di-protons are bound, stars burn through
hydrogen catastrophically fast. The viable range is roughly
\(0.8 \alpha_s^{\text{obs}} \lesssim \alpha_s \lesssim 1.3 \alpha_s^{\text{obs}}\),
about a factor of 1.6 {[}10{]}.
\hypertarget{the-viable-fraction}{%
\subsubsection{3.3 The viable fraction}\label{the-viable-fraction}}
The four critical parameters span roughly:
\begin{longtable}[]{@{}lll@{}}
\toprule\noalign{}
Parameter & Viable range (orders of magnitude) & Log-fraction \\
\midrule\noalign{}
\endhead
\bottomrule\noalign{}
\endlastfoot
α & \textasciitilde2 orders within \textasciitilde3 available &
\textasciitilde60\% \\
\(m_e / m_p\) & \textasciitilde4 orders within \textasciitilde6
available & \textasciitilde65\% \\
\(m_d - m_u\) & factor of \textasciitilde5 within \textasciitilde10
available & \textasciitilde50\% \\
\(\alpha_s\) & factor of \textasciitilde1.6 within \textasciitilde2
available & \textasciitilde80\% \\
\end{longtable}
The joint viable fraction, treating the parameters as independent (a
conservative assumption --- correlations generally enlarge the viable
region), is roughly:
\[f_{\text{viable}} \sim 0.6 \times 0.65 \times 0.5 \times 0.8 \approx 16\%\]
This is a rough estimate, but the order of magnitude is robust: the
viable fraction is \(\mathcal{O}(10\%)\), not \(\mathcal{O}(10^{-50})\).
The remaining 14 SM parameters (heavy quark masses, lepton masses,
mixing angles) are less constrained --- they affect the details of
nuclear and atomic physics but not the existence of carbon chemistry.
\hypertarget{comparison-to-fine-tuning-claims}{%
\subsubsection{3.4 Comparison to fine-tuning
claims}\label{comparison-to-fine-tuning-claims}}
Traditional fine-tuning arguments quote numbers like \(10^{-120}\) (for
the cosmological constant) or \(10^{-50}\) (for the Higgs mass). These
numbers arise from varying the \emph{structure} --- asking what happens
if the gauge group is different, or if there are different numbers of
generations, or if d ≠ 3. The OI framework eliminates all of these
variations. What remains is a 16\% viable fraction in the critical
parameter subspace --- not fine-tuned by any reasonable standard.
\begin{center}\rule{0.5\linewidth}{0.5pt}\end{center}
\hypertarget{the-chirality-chain}{%
\subsection{4. The Chirality Chain}\label{the-chirality-chain}}
\hypertarget{from-the-partition-to-parity-violation}{%
\subsubsection{4.1 From the partition to parity
violation}\label{from-the-partition-to-parity-violation}}
The OI partition breaks parity: the trace-out over the hidden sector
treats left-handed and right-handed spinor components asymmetrically
(\(D_{LL} = 0\), \(D_{RR} \neq 0\)) {[}2, §4.8, Theorem 13{]}. This is
structural --- any observer in any (S, φ) sees a chiral weak force. The
result: the W and Z bosons couple only to left-handed fermions, and
parity is maximally violated in all weak processes.
\hypertarget{molecular-parity-violation}{%
\subsubsection{4.2 Molecular parity
violation}\label{molecular-parity-violation}}
The weak neutral current (Z boson exchange between electrons and nuclei)
produces a parity-violating potential in atoms and molecules. For chiral
molecules --- molecules that are not superimposable on their mirror
image --- this creates an energy difference between left-handed (L) and
right-handed (D) enantiomers {[}11, 12{]}:
\[\Delta E_{\text{PV}} \sim G_F \alpha Z^5 m_e c^2 \left(\frac{a_0}{R}\right)^3\]
where \(G_F\) is the Fermi constant, \(Z\) the nuclear charge, and \(R\)
the bond length. For amino acids: \(\Delta E_{\text{PV}} \sim 10^{-14}\)
eV \(\sim 10^{-17} \, kT\) at 300 K {[}11{]}. The sign is universal ---
it favors L-amino acids --- and is fixed by the partition: the same
partition that makes SU(2) left-handed makes L-amino acids lower in
energy.
\hypertarget{the-amplification-argument}{%
\subsubsection{4.3 The amplification
argument}\label{the-amplification-argument}}
The energy difference \(10^{-17} \, kT\) is far too small to directly
select one handedness. The enantiomeric excess at thermal equilibrium
would be \(ee \sim 10^{-17}\). The question is whether amplification
mechanisms can promote this bias to complete homochirality.
Three mechanisms are experimentally demonstrated. Autocatalytic
amplification (the Soai reaction {[}13{]}) amplifies \(ee \sim 10^{-5}\)
to \(> 99\%\). Crystallization (Viedma ripening {[}14{]}) drives racemic
crystal mixtures to homochirality from small initial biases. Chiral
polymerization with cross-inhibition {[}15{]} amplifies small monomer
\(ee\) to polymer homochirality.
The gap between \(10^{-17}\) (PVED) and \(10^{-5}\) (Soai threshold) is
12 orders of magnitude. The resolution: the PVED does not need to
provide the full \(ee\). In a small prebiotic pool of \(N\) chiral
molecules, random statistical fluctuations produce
\(ee \sim 1/\sqrt{N}\). For \(N \sim 10^6\) (a microdroplet),
statistical \(ee \sim 10^{-3}\) --- within the Viedma threshold. The
PVED's role is not to \emph{produce} the excess but to \emph{bias its
direction}: in each independent pool, the fluctuation is random in
magnitude, but the PVED tips the direction toward L. Over many pools,
L-dominant outcomes outnumber D-dominant outcomes. The magnitude of the
PVED is irrelevant --- only its sign matters, and the sign is derived.
\hypertarget{the-structural-conclusion}{%
\subsubsection{4.4 The structural
conclusion}\label{the-structural-conclusion}}
If the amplification chain is robust --- and every step is either
derived, known physics, or experimentally demonstrated --- then
biological homochirality is traced to (S, φ). The handedness of every
amino acid in every protein in every organism is a consequence of the
partition structure that produces quantum mechanics.
\begin{longtable}[]{@{}
>{\raggedright\arraybackslash}p{(\columnwidth - 4\tabcolsep) * \real{0.2609}}
>{\raggedright\arraybackslash}p{(\columnwidth - 4\tabcolsep) * \real{0.3913}}
>{\raggedright\arraybackslash}p{(\columnwidth - 4\tabcolsep) * \real{0.3478}}@{}}
\toprule\noalign{}
\begin{minipage}[b]{\linewidth}\raggedright
Step
\end{minipage} & \begin{minipage}[b]{\linewidth}\raggedright
Content
\end{minipage} & \begin{minipage}[b]{\linewidth}\raggedright
Status
\end{minipage} \\
\midrule\noalign{}
\endhead
\bottomrule\noalign{}
\endlastfoot
1 & Partition breaks P & Theorem {[}2, §4.8{]} \\
2 & SU(2)\_L → electroweak PV & Structural consequence \\
3 & Electroweak PV → PVED & Known physics {[}11, 12{]} \\
4 & Statistical fluctuation + directional bias → homochirality &
Demonstrated mechanisms {[}13, 14, 15{]}; sign from Step 1 \\
5 & Biological homochirality & Observed \\
\end{longtable}
\begin{center}\rule{0.5\linewidth}{0.5pt}\end{center}
\hypertarget{implications}{%
\subsection{5. Implications}\label{implications}}
\hypertarget{the-dissolution-of-fine-tuning}{%
\subsubsection{5.1 The dissolution of
fine-tuning}\label{the-dissolution-of-fine-tuning}}
The fine-tuning problem assumes two freedoms: the laws could have been
different, and the parameters could have been different. The OI
framework removes the first --- the structure is derived. §3 shows the
second is not as constrained as traditionally claimed: the viable
parameter fraction is \(\mathcal{O}(10\%)\), not
\(\mathcal{O}(10^{-50})\). The apparent fine-tuning was dominated by
structural variation that the framework proves doesn't exist.
The substratum gauge group \(\mathcal{G}_{\text{sub}}\) {[}33, §4{]}
makes this precise. The structural chain of §2 --- \(d = 3\), orbitals,
the periodic table, carbon's tetrahedral bonding, water, the thermal
window, chirality --- is invariant under every generator of
\(\mathcal{G}_{\text{sub}}\): state relabeling, alphabet change,
deep-sector enlargement, and graph isomorphism up to statistical
isotropy. These preconditions for complexity are not contingent features
that happen to hold in our universe. They are gauge-invariant properties
of the equivalence class \([(S, \varphi)]/\mathcal{G}_{\text{sub}}\) ---
they hold for every \((S, \varphi)\) in the class. The only quantities
that could have been different are the solution-specific parameters
(gauge couplings, fermion masses, mixing angles), and §3 shows these
have a viable fraction of \(\mathcal{O}(10\%)\).
\hypertarget{the-dissolution-of-the-anthropic-principle}{%
\subsubsection{5.2 The dissolution of the anthropic
principle}\label{the-dissolution-of-the-anthropic-principle}}
The anthropic principle assumes there is an ensemble of possible
universes from which observation selects. The framework removes the
ensemble: the structure is the only structure consistent with embedded
observation (characterization theorem {[}1, §3.4{]}; reconstruction
theorem {[}33, §3{]}). The preconditions for organic chemistry ---
atoms, carbon bonding geometry, the scale hierarchy, water, the thermal
window, chiral selection --- are structural (§2). The parameters have a
viable fraction of \(\mathcal{O}(10\%)\) (§3). There is nothing for
observation to select, because there is nothing that could have been
otherwise.
The completeness of \(\mathcal{G}_{\text{sub}}\) {[}33, Theorem 24{]}
closes this argument: the four generator families are proved to exhaust
all observables-preserving transformations (via Stinespring uniqueness
applied at the substratum level). No finer distinction between substrata
is empirically accessible. The structural preconditions for complexity
are therefore as immutable as the gauge group itself --- they are not
drawn from an ensemble but fixed by the equivalence class.
\hypertarget{the-autocatalytic-argument}{%
\subsubsection{5.3 The autocatalytic
argument}\label{the-autocatalytic-argument}}
The structural chain derives the preconditions for life. This section
argues that the transition from prebiotic chemistry to self-replication
is not merely possible but statistically expected, given the derived
structure.
\textbf{Combinatorial diversity is structural.} Carbon's sp³
hybridization in d = 3 (§2.3) produces chain-forming chemistry with four
bonding directions. The number of distinct molecules constructible from
C, H, O, N grows exponentially with chain length: \(\sim 20^N\) for
amino acid sequences, \(\sim 4^N\) for nucleotide sequences. For chains
of length 50: \(\sim 10^{65}\) possible peptides, \(\sim 10^{30}\)
possible RNA sequences. This combinatorial explosion is structural ---
it follows from the orbital algebra in d = 3 with four valence
electrons. No other element in the derived periodic table produces
comparable diversity: silicon has similar valence but weaker bonds
(\(\sim 2.3\) eV for Si-Si vs.~\(\sim 3.6\) eV for C-C), insufficient
for stable long chains at thermal window temperatures.
\textbf{The autocatalytic threshold.} Kauffman's theorem {[}16{]}: in a
network of \(N\) molecule types where each molecule has probability
\(p\) of catalyzing any given reaction, autocatalytic sets --- closed
networks that collectively catalyze their own production from simple
feedstocks --- emerge with probability approaching 1 when \(N \times p\)
exceeds a critical threshold of \(\mathcal{O}(1)\). The framework
provides \(N \sim 10^{65}\) (structural). The question reduces to
whether \(p > 10^{-65}\) --- whether catalysis is not astronomically
rare among organic molecules.
\textbf{Catalysis is not rare.} Empirically, short random peptides show
catalytic activity at rates suggesting \(p \sim 10^{-9}\) to \(10^{-7}\)
per pair {[}17{]}. RNA fragments catalyze their own splicing and
polymerization {[}18, 19{]}. Simple amino acids catalyze aldol reactions
(the Hajos-Parrish reaction). Even individual metal ions in aqueous
solution show catalytic activity for a range of organic reactions. With
\(p \sim 10^{-9}\) and \(N \sim 10^{65}\): \(N \times p \sim 10^{56}\),
exceeding Kauffman's threshold by 56 orders of magnitude.
\textbf{The role of chirality.} The PVED (§4) selects L-amino acids,
halving the combinatorial space and --- critically --- eliminating
cross-chiral parasitic reactions. In a racemic mixture, L-monomers can
be incorporated into D-chains and vice versa, poisoning both.
Homochirality, driven by the PVED's directional bias (§4.3), ensures
that the combinatorial exploration proceeds within a self-consistent
chemical subspace. This is not a minor refinement --- it may be the
difference between a productive autocatalytic network and a parasitized
one {[}15{]}.
\textbf{What's structural vs.~parametric.}
\begin{longtable}[]{@{}
>{\raggedright\arraybackslash}p{(\columnwidth - 2\tabcolsep) * \real{0.5294}}
>{\raggedright\arraybackslash}p{(\columnwidth - 2\tabcolsep) * \real{0.4706}}@{}}
\toprule\noalign{}
\begin{minipage}[b]{\linewidth}\raggedright
Element
\end{minipage} & \begin{minipage}[b]{\linewidth}\raggedright
Status
\end{minipage} \\
\midrule\noalign{}
\endhead
\bottomrule\noalign{}
\endlastfoot
Combinatorial diversity (\(N \sim 20^L\)) & Structural (carbon in d =
3) \\
Energy-driven exploration & Structural (thermal window, §2.7) \\
Chirality eliminates cross-inhibition & Structural (PVED sign, §4) \\
Catalytic probability \(p\) & Parametric (depends on bond energies,
activation barriers) \\
\(p > 1/N\) & Empirically satisfied by \textasciitilde56 orders of
magnitude \\
\end{longtable}
The framework derives \(N\) (structural), the thermal window
(structural), and the chiral bias (structural). The catalytic
probability \(p\) is parametric but empirically enormous relative to the
threshold. The autocatalytic emergence of self-replication is therefore
not a lucky accident but a statistical consequence of the combinatorial
diversity that carbon chemistry in d = 3 necessarily produces.
\hypertarget{self-replication-as-read-write-cycling}{%
\subsubsection{5.4 Self-replication as read-write
cycling}\label{self-replication-as-read-write-cycling}}
\textbf{The structural parallel.} The framework derives QM from
read-write cycling: the observer reads the visible sector and writes
correlations into the hidden sector through the coupling \(H_{VB}\); the
hidden sector stores those writes and returns them on subsequent reads;
the resulting statistics are quantum mechanics {[}33, §2{]}. Template
replication is the same structural pattern at the molecular level: a
polymer reads its own sequence (through complementary hydrogen bond
pairing) and writes a copy (through catalytic polymerization).
Self-replication is not a special biological capability --- it is
molecular read-write cycling, the chemical instantiation of the same
information-theoretic pattern that produces quantum mechanics.
\textbf{Von Neumann's threshold.} Von Neumann's self-reproducing
automaton theorem {[}20{]} establishes that in any computational system
above a complexity threshold, self-reproducing configurations must
exist. The threshold requires three capabilities: (a) a universal
constructor --- a subsystem that reads instructions and assembles a
product; (b) a copying mechanism --- that duplicates the instructions;
(c) a control mechanism --- that sequences construction and copying.
The derived chemistry provides all three:
\emph{(a) Universal construction.} Any catalytic polymer that reads a
template sequence and assembles a corresponding product from a monomer
alphabet. The autocatalytic argument (§5.3) establishes that catalysis
is statistically abundant (\(N \times p \sim 10^{56}\)).
Template-directed assembly follows from complementary pairing
(structural, §2.6) combined with catalytic activity.
\emph{(b) Instruction copying.} Template replication --- a polymer
directing the synthesis of its complement through complementary pairing.
Three independently structural capabilities whose intersection is
template replication (§5.5, below).
\emph{(c) Control.} The thermal window (§2.7) provides environmental
cycling --- temperature fluctuations, wet-dry cycles, concentration
gradients --- that drives alternation between construction and copying
phases. This is structural: the thermal window guarantees that the
environment fluctuates on timescales relevant to chemistry.
Von Neumann's threshold is exceeded by the same combinatorial margin
(\(\sim 10^{56}\)) that drives the autocatalytic argument.
Self-reproducing molecular configurations are not a lucky accident in
the derived chemistry --- they are a mathematical consequence of the
system's computational richness exceeding von Neumann's threshold.
\hypertarget{from-template-replication-to-evolution}{%
\subsubsection{5.5 From template replication to
evolution}\label{from-template-replication-to-evolution}}
Template replication requires three capabilities, each independently
structural: (i) \emph{Linear information-carrying polymers} --- carbon's
sp³ hybridization allows chain formation carrying \(N\) units of
sequence information (structural). (ii) \emph{Complementary pairing} ---
hydrogen bonding in d = 3 is directional, enabling selective
donor-acceptor pairing between complementary sequences --- the
structural basis of Watson-Crick pairing (structural). (iii)
\emph{Catalytic copying} --- template-directed catalysis is a subset of
the statistically abundant catalysis established in §5.3, with
selectivity provided by complementary pairing.
\textbf{The RNA precedent.} RNA is simultaneously a linear polymer, a
substrate for complementary pairing, and a catalyst (ribozymes
{[}18{]}). RNA-catalyzed RNA polymerization has been demonstrated
{[}19{]}. This dual capability is the natural intersection of the three
structural capabilities in a single molecular family.
\textbf{Heritable variation is automatic.} Template copying with finite
fidelity produces errors. Errors in a self-replicating polymer are
mutations. Faster replicators outcompete slower ones (selection),
copying errors produce variants (variation), and successful variants
propagate (heredity). This is Darwinian evolution --- the inevitable
dynamics of imperfect template replication.
\textbf{The structural status of evolution.}
\begin{longtable}[]{@{}
>{\raggedright\arraybackslash}p{(\columnwidth - 2\tabcolsep) * \real{0.5294}}
>{\raggedright\arraybackslash}p{(\columnwidth - 2\tabcolsep) * \real{0.4706}}@{}}
\toprule\noalign{}
\begin{minipage}[b]{\linewidth}\raggedright
Element
\end{minipage} & \begin{minipage}[b]{\linewidth}\raggedright
Status
\end{minipage} \\
\midrule\noalign{}
\endhead
\bottomrule\noalign{}
\endlastfoot
Linear polymers & Structural (carbon sp³ in d = 3) \\
Complementary pairing & Structural (H-bonding geometry in d = 3) \\
Catalytic activity & Statistically expected (§5.3) \\
Template replication & Intersection of the above three \\
Copying errors & Inevitable (finite-fidelity copying) \\
Selection & Inevitable (competition for finite resources) \\
Darwinian evolution & Consequence of replication + variation +
selection \\
\end{longtable}
Each row follows from the preceding rows. No row requires contingent
facts about our universe beyond the derived structure and the
\textasciitilde16\% viable parameter fraction.
\textbf{Caveats.} The argument establishes that Darwinian evolution is
\emph{structurally expected} in any system with carbon chemistry, a
thermal window, and a chiral aqueous environment. It does not determine:
the specific molecular system that first replicates (RNA, PNA, or
something else), the timescale for the transition (millions or billions
of years), or the specific pathway from simple replicators to cellular
organization. These depend on the specific φ, local geochemistry, and
contingent history.
\hypertarget{the-origin-of-life-c1c3-at-the-molecular-scale}{%
\subsubsection{5.6 The origin of life: C1--C3 at the molecular
scale}\label{the-origin-of-life-c1c3-at-the-molecular-scale}}
The OI framework's characterization theorem is scale-independent:
whenever a fast subsystem is coupled to a slow, high-capacity hidden
sector (C1--C3), the fast subsystem's dynamics is necessarily
non-Markovian --- history-dependent. At the cosmological scale, this
produces quantum mechanics. At the molecular scale, it produces
\emph{heredity}: a chemical system whose future depends on its past
through information stored in a persistent template. The transition from
prebiotic chemistry to life is the first time a molecular system
satisfies all three conditions.
\textbf{Before life: Markovian chemistry.} Ordinary chemical reactions
are Markovian --- the reaction rate depends on current concentrations
alone, not on the history of the mixture. Products do not remember how
they were made. Each reaction cycle is statistically independent of the
previous one. No memory, no heredity, no evolution.
\textbf{The transition: molecular C1--C3.} Life begins when a molecular
system first establishes: (C1) catalytic feedback --- the template
directs synthesis and synthesis maintains the template; (C2) persistence
--- the template outlives individual reaction cycles (RNA half-life of
hours--days vs.~reaction times of seconds--minutes); (C3) capacity ---
the template's sequence space is large enough to encode catalytic
function (\(4^{20} \sim 10^{12}\) for a 20-mer RNA, vastly exceeding the
\$\sim\$10--100 reactions in a minimal metabolism).
\textbf{After life: non-Markovian chemistry.} The system's future
depends on its history, stored in the template. This is heredity --- the
defining property of life --- derived from the same C1--C3 conditions
that produce quantum mechanics at the cosmological horizon.
\textbf{RNA as the unique single-molecule C1--C3 system.} RNA is the
only natural polymer that satisfies all three conditions with a single
molecular species: it is both template (C2: persistent; C3: 4-letter
alphabet with arbitrary length) and catalyst (C1: ribozymes catalyze RNA
polymerization {[}18, 19{]}). DNA stores information but cannot
catalyze; proteins catalyze but cannot easily template. The RNA world
hypothesis is not a historical accident --- it is the structural
prediction that the simplest C1--C3 system is an RNA-like molecule. DNA
and proteins are later optimizations: DNA improves C2 (greater chemical
stability), proteins improve C1 (more diverse catalysis). The RNA →
DNA+protein transition refines C1--C3 without changing the qualitative
architecture.
\textbf{C1--C3 systems are attractors.} A self-replicating system
(C1--C3 satisfied) grows exponentially in a pool of feedstock molecules.
A non-replicating system grows at most linearly (by accretion or random
synthesis). Exponential growth dominates linear growth on any finite
timescale. Any chemical system that \emph{accidentally} satisfies C1--C3
--- even transiently, even imperfectly --- will dominate its
environment. The transition is a one-way door: once C1--C3 is
established, it is self-reinforcing. Combined with the autocatalytic
argument (§5.3: \(N \times p \sim 10^{56}\), guaranteeing C1), the
automatic persistence of polymers (C2), and the enormous sequence space
(C3), the establishment of molecular C1--C3 is not merely possible but
\emph{inevitable} in any aqueous organic chemistry operating in the
thermal window.
\textbf{The timescale.} The earliest evidence for life on Earth is
\$\sim\$3.8 Gya (carbon isotope signatures in Isua, Greenland {[}32{]}),
on a planet that formed \$\sim\$4.5 Gya. The \$\sim\$700 Myr gap is
consistent with the framework's prediction: C1--C3 is inevitable but
requires a period of prebiotic chemical exploration whose duration
depends on solution-specific parameters (concentration, temperature
fluctuation rates, mineral surface availability).
\hypertarget{from-evolution-to-intelligence}{%
\subsubsection{5.7 From evolution to
intelligence}\label{from-evolution-to-intelligence}}
\textbf{Information processing is generically fitness-enhancing.} In an
environment with the derived physics --- a thermal window (§2.7)
guarantees fluctuating conditions (\(kT > 0\)) --- organisms that
respond to environmental information outcompete those that do not. A
cell that detects a nutrient gradient and moves toward it outcompetes
one that moves randomly. This is not a contingent fact about Earth ---
it follows from the structure: fluctuating environments reward better
internal models of external conditions. Selection generically favors
information processing.
\textbf{Neural computation is structurally possible.} Fast
electrochemical signaling requires ions (Na⁺, K⁺, Ca²⁺ --- present in
the derived periodic table) moving through channels in lipid membranes.
Carbon chemistry in d = 3 provides amphiphilic molecules (hydrophilic
head + hydrophobic tail from the orbital structure) that self-assemble
into bilayer membranes. The scale hierarchy (§2.5) separates neural
signaling energies (\textasciitilde meV) from chemical bond energies
(\textasciitilde eV), so information processing does not destroy the
substrate.
\textbf{General intelligence is structurally unconstrained but not
guaranteed.} The derived structure \emph{permits} arbitrarily complex
neural circuits (the orbital algebra provides materials, the scale
hierarchy provides energetic separation), but whether evolution
\emph{reaches} general-purpose reasoning --- abstraction, planning,
language --- depends on the specific fitness landscape. On Earth,
general intelligence arose once in \textasciitilde4 billion years.
Whether this is evidence of rarity or inevitability the framework cannot
determine. This is the one step in the chain where the structural
argument is weakest: information processing is generically favored, but
general intelligence is a much more specific capability.
\hypertarget{from-intelligence-to-ai-and-the-self-referential-limit}{%
\subsubsection{5.8 From intelligence to AI and the self-referential
limit}\label{from-intelligence-to-ai-and-the-self-referential-limit}}
\textbf{The structural chain to universal computation.} If general
intelligence exists --- for whatever contingent or structural reason ---
then AI follows from the derived structure through a specific chain in
which every link is structural.
\emph{Band theory.} Derived QM (Main, Part I) applied to electrons in a
periodic crystal potential (the sp³ diamond-cubic lattice of a Group IV
element) gives Bloch's theorem: energy bands separated by gaps. The
periodic potential is structural --- it follows from sp³ hybridization
in d = 3. Band structure is a consequence of derived QM applied to
derived crystal geometry.
\emph{Semiconductors.} For Group IV elements (4 valence electrons per
atom), the Pauli exclusion principle (derived --- spin-statistics from
staggered fermions {[}2, §4.2{]}) exactly fills the valence band and
leaves the conduction band empty. The band gap for silicon
(\textasciitilde1.1 eV) sits in the thermal sweet spot:
\(E_{\text{gap}} / kT \sim 40\) at room temperature. Large enough that
thermal excitation doesn't flood the conduction band (the material isn't
always conducting); small enough that a modest voltage promotes
electrons across the gap (the material can be switched). The
\emph{existence} of Group IV semiconductors with gaps in the right range
relative to the thermal window is structural --- it follows from the
scale hierarchy (§2.5): the gap is set by the atomic energy scale
(\(\alpha^2 m_e c^2\)), and the thermal window operates far below it.
\emph{Doping.} Replacing a silicon atom (Group IV) with phosphorus
(Group V, 5 valence electrons) adds one free electron --- n-type.
Replacing with boron (Group III, 3 valence electrons) removes one ---
p-type. Both dopant types exist in the derived periodic table. The
ability to create n-type and p-type regions is a structural consequence
of the periodic table architecture.
\emph{From transistors to universal computation.} A p-n junction
rectifies current. A transistor (two p-n junctions) amplifies and
switches. Transistors in combination implement logic gates. A NAND gate
is functionally complete --- any Boolean function can be built from NAND
gates alone. Sufficient NAND gates implement a universal Turing machine.
Each step is either a structural consequence of semiconductor physics or
a mathematical theorem about computation.
\begin{longtable}[]{@{}
>{\raggedright\arraybackslash}p{(\columnwidth - 4\tabcolsep) * \real{0.2609}}
>{\raggedright\arraybackslash}p{(\columnwidth - 4\tabcolsep) * \real{0.3913}}
>{\raggedright\arraybackslash}p{(\columnwidth - 4\tabcolsep) * \real{0.3478}}@{}}
\toprule\noalign{}
\begin{minipage}[b]{\linewidth}\raggedright
Step
\end{minipage} & \begin{minipage}[b]{\linewidth}\raggedright
Content
\end{minipage} & \begin{minipage}[b]{\linewidth}\raggedright
Status
\end{minipage} \\
\midrule\noalign{}
\endhead
\bottomrule\noalign{}
\endlastfoot
Band theory & QM + periodic crystal potential & Structural \\
Band gap for Group IV & Exactly filled valence band (4 electrons +
Pauli) & Structural \\
Semiconductor behavior & Gap in thermal sweet spot
(\(E_{\text{gap}} / kT \sim 40\)) & Structural (scale hierarchy) \\
Doping & Group III / V substitution & Structural (periodic table) \\
p-n junctions & Interface between p-type and n-type & Structural
consequence \\
Transistors & Voltage-controlled p-n junctions & Structural \\
Logic gates & Transistors in series / parallel & Structural \\
Universal computation & NAND is functionally complete & Mathematical
theorem \\
\end{longtable}
The chain from (S, φ) to a universal computer is structural --- given
someone to build it. That is the same contingent step (general
intelligence) identified in §5.7. The reconstruction theorem {[}33,
§3{]} implies that a sufficiently sophisticated observer can discover
(S, φ) --- and an observer that understands its own substrate can build
computational devices exploiting it.