-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
1109 lines (886 loc) · 86.8 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\documentclass{article}
\usepackage{cttools}
\addbibresource{sources.bib}
\title{Hegel in Mathematics}
\author{Alexander Prähauser}
\date{\today}
\begin{document}
\maketitle
\tableofcontents
\section{Acknowledgements}
I would like to thank Urs Schreiber, Richard Williamson and several anonymous contributers for proofreading and commentary.
\section{Introduction}
One might be surprised to find Hegel's thought in the middle of a deep intersection between current research
of logic, mathematics and physics, yet it would not have surprised Hegel, who saw in his method something
with universal applicability. That he even \emph{had} a method and was not just using obtuse language
without or with trivial meaning was often called into question, particularly by the analytical school,
starting with Russell in his \emph{History of Western Philosophy} \cite{Russ}:
\begin{quote}
The great mathematicians of the seventeenth century were optimistic and anxious for quick results;
consequently they left the foundations of analytical geometry and the infinitesimal calculus insecure.
Leibnitz believed in actual infinitesimals, but although this belief suited his metaphysics it has no
sound basis in mathematics. Weierstrass, soon after the middle of the nineteenth century, showed how to
establish the calculus without infinitesimals, and thus at last made it logically secure. Next came Georg
Cantor, who developed the theory of continuity and infinite numbers. ``Continuity'' had been, until he
defined it, a vague word, convenient for philosophers like Hegel, who wished to introduce metaphysical
muddles into mathematics. Cantor gave a precise significance to the word, and showed that continuity,
as he defined it, was the concept needed by mathematicians and physicists.
\end{quote}
It is ironic that the concepts Russell used in his attack, infinitesimals and ``continuity'', have been
particularly useful, once re-evaluated through the recent formalization of Hegel's thought in the context
of modal homotopy type theory. This was work started by William Lawvere in the 1985s \cite{Law96}:
\begin{quote}
In early 1985, while I was studying the foundations of homotopy theory, it occurred to me that the
explicit use of a certain simple categorical structure might serve as a link between mathematics and philosophy.
\end{quote}
Lawvere went on to provide a formally strict logical calculus that tries to capture Hegelian dialectics
and started the formalization of Hegel's objective logic \cite{Law91}. However, the mathematical power
of Lawvere's formalization, though already considerable, was restricted by the mathematics it was founded
on.\footnote{There is also some indication that Lawvere might not actually appreciate the current extension
of his work due to his dislike of $\infty$-categories.} More recently, a new foundation of mathematics
was developed under the initiative of Vladimir Voevodsky in homotopy type theory, which provides an alternative
to set theory and a setting for logic based on a radical interpretation of equality that amplifies its
power and has been found to show remarkable similarity to Hegel's thought. However, the importance of
these devopments exceeds mathematics and reaches into philosopy. Lawvere stated in 1992 \cite{Lawvere92}:
\begin{quote}
It is my belief that in the next decade and in the next century the technical advances forged by category
theorists will be of value to dialectical philosophy, lending precise form with disputable mathematical
models to ancient philosophical distinctions such as general vs. particular, objective vs. subjective,
being vs. becoming, space vs. quantity, equality vs. difference, quantitative vs. qualitative etc. In
turn the explicit attention by mathematicians to such philosophical questions is necessary to achieve
the goal of making mathematics (and hence other sciences) more widely learnable and useable. Of course
this will require that philosophers learn mathematics and that mathematicians learn philosophy.
\end{quote}
This article aims to provide an exposition of the current state of the formalization of Hegel's thought,
as continued in particular by Urs Schreiber, as it appeared first in \cite{SQuant} and \cite{SSOrb}. A
preliminary dictionary has been set up in \cite{nlabsol}, \footnote{see also \cite{Stalk}, \cite{SSh} for
an exposition with particular focus on the role of homotopy type theory, \cite{dcct}, particularly for
more detail on the mathematical structures and the physics, and section 5 in \cite{Cor}.} but it assumes
an understanding of several new mathematical disciplines. Usually it is impossible to explain current
mathematical research to a layperson, but the particularly intuitive character of the disciplines in question
might allow doing so in this special case. This is attempted here.
\subsection{How to read this text}
A work like this is inevitably torn between contradictory priorities. Should it be easily understandable
or exact? Exactness demands mathematics, and since the intended audience is one of non-mathematicians,
it has to be sacrificed for digestibility at certain points. However, mathematical notation, once
it is understood, greatly aids clarity, hence it has been adapted. So some necessary mathematical
notation is introduced throughout the text, sometimes with a, more or less exact, definition, sometimes
dialectical, so that their meaning might not be immediately understood but becomes clarified throughout
the text. Terms, when they are introduced, will be written in cursive, in which case the context in
which they are used should be taken as a first implicit definition or description of the notion they are
denoting. Readers are advised to use the meaning of a word they intuit, and allow it to
be modified throughout the text. Objects will often be denoted by letters, with similar letters denoting
similar objects. For instance, propositions will be denoted by $p$ and $q$, while types will be denoted $T$
and $S$.
Then, should the focus be on the current theory, or on Hegel's relationship to it? The foremost
purpose of this work is its applicability, thus exposition on the theory is generally preferred. However,
quotes which are relevant for the identification of Hegel's terms with mathematical constructions are
usually given, both in the original German and English, though this had the side effect of increasing
the length of the work. We will be using the translation of A. V. Miller and importing its paragraph numbering.
It should be noted that this text is an exposition of the current (and ongoing, though somewhat stalled)
formalization of Hegel's work as extended by Urs Schreiber and others, \emph{not} of Lawvere's original
formalization, so when terminology between Lawvere and Schreiber is in conflict, current terminology is
preferred over Lawvere's.
Since it cannot describe the mathematics it is rooted in, this work is inevitably incomplete. As such,
curious readers are invited to look up the details for themselves. Almost all the material presented
here is contained in \cite{nlabsol}, which also includes some philosophical reflections
in the introduction which will not be recapitulated since they can be read with ease. If any take up the
invitation, this work should form a good companion piece to aid the endeavour by providing intuitive guidance.
\subsection{Why read this text?}
The importance of a mathematical formalization of Hegel for anyone interested in Hegel's thought lies in, first of all,
simplicity and exactness, making it completely understandable without any ambiguity, and thus undeniable
without denying mathematics. This formalization, furthermore, opens connections between Hegelian thought and
current physics and mathematics, and can be used as a means to understand, in particular, geometry on a
highly conceptual level. As noted by Schreiber, a formalization of Hegel has to inevitably contain some
degree of arbitrariness. However, if Hegel claims to define a kind of logic, then his work should be
interpretable from a logical context. The fact that this can be done is significant.
\section{Category-theoretic preliminaries}
Over the past century, mathematics went through a rapid increase in expressiveness, as it subsumed not
just \emph{quantities} like numbers, but also \emph{qualitative} meaning, as the focus shifted first from
concrete entities, like numbers, to the structures they inhabit, like groups, and on to the relationships between
those structures and the realms they inhabit, which are categories. However, abstraction did not stop
there, but went on to define a whole slew of higher categories. These higher categories are where the
constructions behind our definitions reside. We will however only need the barest fundamentals of category
theory, for a more comprehensive introduction we refer to \cite{Lein}, see also \cite{CPhil} for a
philosophical treatment. An category,\footnote{The following definition yields categories
when applied to normal types, as they are usually understood. However, when we apply
the same definition to homotopy type theory, as explained in \ref{Hott} we get $(\infty,1)$-categories,
thus we don't have to define them separately.} consists of a \emph{type} of \emph{objects} $X$ and a type
of \emph{morphisms} $X\xrightarrow{f} Y$, such that each morphism has a \emph{source} and a \emph{target}. Furthermore, a morphism, usually called $f$ or $g$ and denoted as an arrow $f: X\rightarrow Y$ from its source $X$ to a target $Y$ can be composed with a morphism $g:Y\rightarrow Z$ with source $Y$ to a morphism $f\fcmp g:X\rightarrow Z$,
and every object $X$ has a morphism $id_X:X\rightarrow X$ called its \emph{identity}, such that, whenever a morphism
is composed with $id_X$, the result is equal to the morphism itself: $id_X\fcmp f = f$ and $g\fcmp id_X = g$. Such objects
can be identified with Hegel's \emph{Dinge}, expressed as in §1065a (of \emph{Science of Logic} \cite{Sol}):
\begin{quote}
Diese mehreren verschiedenen Dinge stehen in wesentlicher Wechselwirkung durch ihre Eigenschaften;
die Eigenschaft ist diese Wechselbeziehung selbst, und das Ding ist nichts außer derselben;
\end{quote}
\begin{quote}
These many different things stand in essential reciprocal action via their properties; the property
is this reciprocal relation itself and apart from it the thing is nothing;
\end{quote}
as the ``nature'' of an object in category theory is completely determined by its relations to other objects.\footnote{However,
a mathematical object can live in different categories at once, if it allows, or necessitates, several
different kinds of structures. For instance, the ``real numbers'' are a field, and as such live in the
category of fields, but they are also a total order, so they live in the category total orders. If an
object lives in several categories at once, the internal properties of the object often give rise to relations
between the categories it is living in.} In this sense, category theory can also be seen as a formalization
of mathematical \emph{structuralism} (see \cite{Ad03}).
We will mostly be focused on one particular (kind of) category, the \emph{universe of types}, where types are the structures as first developed by Russell and nowadays commonly used in computer science.\footnote{Of
course, this is a \emph{mathematical} universe that houses \emph{mathematical} structures, we will only
get to our physical universe at the very end.} There are several possible candidates for such a category,
and we will not make a choice yet. Rather, we will outline the \emph{theory} that has to be satisfied
by such a choice, and choose a \emph{model} later.
\section{Calculus of Hegelian dialectics}
Using category theory, we can explain Schreiber's formulation of Lawvere's formalization of Hegelian dialectics.
For this, what Hegel calls a ``Moment'' is formalized as a (co)modality on a category \footnote{In later
sections we will mainly look at universes of types, but the potential applicability of Lawvere's calculus
is much more general.}$C$: an operator $\unitsq$ that maps an object $X$ of $C$ to an object $\unitsq X$ called
the \emph{aspect} of $X$ under $\unitsq$, maps a morphism $Y\xrightarrow{f} X$ to a morphism $\unitsq Y\xrightarrow{\unitsq(f)}\unitsq
X$ between the aspects of $X$ and $Y$, and is idempotent: $\unitsq\unitsq =\unitsq$, together with, for each object $X$, a morphism between $X$ and
the image of $X$ under the operator: $\unitsq X\rightarrow X$ or $X\rightarrow \bigcirc(X)$. The direction
of this morphism depends on whether the moment is a modality or a comodality. We will call moments of the
form $\unitsq(X)\rightarrow X$ \emph{previous} moments and denote them by $\unitsq$, while we call moments of
the form $X\rightarrow \bigcirc(X)$ \emph{successive} moments.\footnote{The \emph{preceding} and \emph{successive}
terminology, as well as definitions building on it, are original work.}\footnote{Please note that these
dialectics are \emph{not} of a temporal, but \emph{causal} manner. These two overlap in our universe,
but in general, causality does not require time, which is why logic can be used when reasoning about mathematical
objects. This is in line with Hegel's use of the word ``moment'', which he always used in the neutral
gender i.e. ``das Moment'', meaning an aspect of something, while he also used ``der Moment'' with usual
temporal meaning (see also p. 43- 44 in \cite{Kli}). However, the analogy to time inherent in the word
is welcome for consequent nomenclature and gives the term a kind of double meaning.}
Due to idempotency, any type that lies in the image of a moment is \emph{purely of that moment} (and vice
versa): $Y = \unitsq X \Leftrightarrow \unitsq Y = Y$. Thus, the types that are invariant under a moment form their
own sub-category: $C_\unitsq\hookrightarrow C$. The image $\unitsq X $ of a type $X$ under that moment should
be thought of as ``the best possible approximation of $X$ in $C_\unitsq$'' or the $\unitsq$-aspect of $X$, and
the transformation $\unitsq X \rightarrow X$ (resp. $X\rightarrow \bigcirc X$), depending on the exact nature
of the moment, either a deduction of $X$ from $\unitsq X $ ($\bigcirc X $ from $X$), an embedding of $\unitsq
X $ into $X$ ($X$ into
$\bigcirc X$), or a construction/deformation that makes $\unitsq X$ into $X$ ($X$ into $\bigcirc X$).
From a category-theoretic
perspective, this state of affairs can be understood as saying that a moment $\unitsq$ can be decomposed into a \emph{projection}
of $C$ onto another category $C_\unitsq$, identifying objects if they have are the same in regards to the aspect $\unitsq$:
$$C\twoheadrightarrow C_\unitsq$$
and an \emph{embedding} of $C_\unitsq$ into $C$, assigning to each aspect a representative in $C$:
$$C_\unitsq\hookrightarrow C.$$
Now, the concept of a \emph{unity of opposites} is translated into a pair of moments $\bigtriangleup_1\dashv\bigtriangleup_2$
that fulfill the \emph{adjointness condition}: for any two objects $X,Y$ and each morphism $\bigtriangleup_1
Y\rightarrow X$, there exists a morphism $Y\rightarrow \bigtriangleup_2 X$, and these morphisms are subject to a further
naturality condition. Adjunctions are deep structures that can be expressed in a variety of ways, this
being the most concrete, and the reader cannot be expected to immediately grasp the meaning of the adjointness
condition. However, some of its consequences can be used for better understanding. For instance, it follows
that if one of the $\bigtriangleup_i$ is a preceding moment $\unitsq$, then the other is a successive moment
$\bigcirc$ and vice versa, so that a unity of opposites is either a \emph{unity of a preceding to an opposite
successive moment} (or \emph{ps-unity} for short) of the form $\unitsq\dashv\bigcirc$ or a \emph{unity of
a successive to an opposite preceding moment} (or \emph{sp}-unity) $\bigcirc\dashv\unitsq$. So a unity of
opposites is made up of moments that are actually of opposite kinds (preceding to successive), and two
opposite kinds of unities of opposites exist. Furthermore, one part of a unity of opposites uniquely
determines
the other in that if, for a moment $\unitsq$ both $\unitsq\dashv\bigcirc_1$ and $\unitsq\dashv\bigcirc_2$ hold, then $\bigcirc_1$ and $\bigcirc_2$
are equal, and the other way around (however, a moment can have both a left and a right opposite, so the
opposition is actually directed). Each type $X$ sits in between its preceeding and successive aspects
(let us call this the \emph{aspect sequence of the unity}):
$$\unitsq X\rightarrow X \rightarrow\bigcirc X.$$
Finally, the two sub-universes $C_\unitsq ,\ C_\bigcirc$ determined by the modalities are both equal \emph{without
the context of the surrounding universe $C$}, so their opposition actually lies in their relationship
to the larger category, and to be opposites they have to be the same. More precisely, we can, recalling
the decomposition of moments into a projection and an embedding we saw before, say that the opposites
of a unity share each one of their morphisms and describe the situation in the following way: a $ps$-unity
$\unitsq\dashv\bigcirc$ consists of \emph{two} embeddings of the same sub-universe $C_\unitsq=C_\bigcirc$ into
the universe $C$ and \emph{one} projection from $C$ onto $\mathcal{V}$:
$$C_\unitsq\stackrel{\longhookrightarrow{}}{\stackrel{\xtwoheadleftarrow{}}{\longhookrightarrow{}}}C$$
while an $sp$-unity consists of \emph{one} embedding of $\mathcal{V}$ into $C$ and \emph{two} projections
of $C$ onto $\mathcal{V}$:
$$C_\unitsq\stackrel{\xtwoheadleftarrow{}}{\stackrel{\longhookrightarrow}{\xtwoheadleftarrow{}}}C$$
From this follows in particular that in an $sp$-unity $\unitsq\bigcirc X=\unitsq\unitsq Y=\unitsq Y= \bigcirc X$ and
vice versa, so $\unitsq\bigcirc=\bigcirc$ and $\bigcirc\unitsq=\unitsq$. Thus, a type is purely of one moment if
and only if it is purely of the other.
Adjunctions are category-theoretic concepts and thus can be applied in any suitable 2-category, so that
an adjunction between a unity of opposites might itself be adjoint to a another unity of opposites \cite{Shu}.
This \emph{opposite to a unity} of opposites $\bigtriangleup_1\dashv\bigtriangleup_2$ is another unity of
opposites, and their relation will be denoted
$$
\begin{array}{ccc}
\bigtriangleup_3 &\dashv& \bigtriangleup_4
\\
\bot & & \bot
\\
\bigtriangleup_1 &\dashv& \bigtriangleup_2
\end{array}
\,.
$$
From the uniqueness of adjoints follows that in such a configuration the left moment of the first unity
has to be equal to the right moment of the second unity: $\bigtriangleup_1=\bigtriangleup_4$. So each
unity of opposites of unities takes the form of a string of modalities $⋄\dashv\unitsq\dashv\bigcirc$
or $\bigstar\dashv\bigcirc\dashv\unitsq$. We could ask for even higher opposites, but examples are rare and
largely in categories with exotic or no logics.\footnote{For instance, the forgetful functor of the category
of modules of a projective algebra is part of a five-fold adjunction. It could be interesting to see how
it interacts with their internal type theory.}
The other significant relation between unities of opposites is that of Aufhebung. Following (Schreiber's
formalization of) Hegel, we say a unity of opposites $\bigtriangleup_3\dashv\bigtriangleup_4$ is a \emph{higher
sphere}\footnote{This translation of the German word ``Sphäre'' is problematic because the meaning of
``Sphäre'' as a ball is less pronounced relative to the meaning ``höhere Sphäre'' as in ``higher sphere
of existence'', compared to the English word ``sphere''. The topos-theoretic concept that Lawvere's dialectics
is based on is called ``higher level'', which might be a better translation, since ``sphere'' too much
invokes the image of something round.} of a unity of opposites $\bigtriangleup_2\dashv\bigtriangleup_1$,
denoted
$$
\begin{array}{ccc}
\bigtriangleup_3 & \dashv & \bigtriangleup_4
\\
\vee & & \vee
\\
\bigtriangleup_1 & \dashv & \bigtriangleup_2
\end{array}
\
$$
if $\bigtriangleup_1$ is contained in $\bigtriangleup_3$: $\bigtriangleup_3\bigtriangleup_1=\bigtriangleup_1$
and $\bigtriangleup_2$ is contained in $\bigtriangleup_4$: $\bigtriangleup_4\bigtriangleup_2=\bigtriangleup_2$.
A higher sphere $\unitsq_2\rightarrow\bigcirc_2$ of a unity $\unitsq_1\rightarrow\bigcirc_1$ is a \emph{right
Aufhebung} of $\unitsq_1\rightarrow\bigcirc_1$ if furthermore $\unitsq_1$ is contained in $\bigcirc_2$: $\bigcirc_2\unitsq_1=\unitsq_1$
and a \emph{left Aufhebung} if $\bigcirc_1$ is contained in $\unitsq_2$: $\unitsq_2\bigcirc_1=\bigcirc_1$. Both
kinds can be referred to as \emph{Aufhebungen}. We can similarly define Aufhebungen for $sp$-unities $\bigcirc\dashv\unitsq$,
however, since in an $sp$-unity both moments project into the same sub-universe, each higher sphere of
$\bigcirc\dashv\unitsq$ is already both a left and a right Aufhebung. We will denote a right Aufhebung as
$$
\begin{array}{cccc}
\unitsq_2 &\dashv& \bigcirc_2
\\
\vee & & \vee
\\
\unitsq_1 & & \dashv& \bigcirc_1
\end{array}
\
$$
and a left Aufhebung as
$$
\begin{array}{cccc}
& \unitsq_2 & \dashv & \bigcirc_2
\\
& \vee & & \vee
\\
\unitsq_1 & \dashv & & \bigcirc_1
\end{array}
\
$$
So an Aufhebung of $\unitsq_1\dashv\bigcirc_1$ is a unity of opposites $\unitsq_2\dashv\bigcirc_2$ such that
$\unitsq_1$ is a special aspect of $\unitsq_2$ and $\bigcirc_1$ is a special aspect of $\bigcirc_2$, but where
\emph{also} both $\bigcirc_1$ and $\bigcirc_2$ are special aspects of one of the aspects of $\unitsq_2\dashv\bigcirc_2$,
let's say $\bigcirc_2$, so that they are unified in $\bigcirc_2$ and both on the same side of a greater
opposition. From this follows that the opposition $\unitsq_2\dashv\bigcirc_2$ is trivial on, in this case,
$\unitsq_1$: $\unitsq_2\unitsq_1=\unitsq_1=\bigcirc_2\unitsq_1$. Please note that this construction captures all three meanings of the German word \emph{Aufheben}: to lift, to preserve and to negate.
Generally, Aufhebungen are not unique, the same unity can have several of them. The \emph{minimal (left/right)
Aufhebung} of a unity $\unitsq\dashv\bigcirc$, the smallest sphere that fulfills the Aufhebungs-condition
would be unique, but does not always exist.\footnote{As usual, we are following \cite{nlabsol} in our terminology.
Lawvere \emph{defines} an Aufhebung as being minimal, see \cite{Lawvere92}. However, in light of the following
derivation of unities this seems too restrictive a notion.}
\section{\emph{Subjektive Logik} as Type Theory}
Following the work of Martin-Löf in \cite{Loef96}, Schreiber identifies the part of Hegelian logic which
he calls ``subjektive Logik'' and which has been understood as classical logic, in his formalization with
the deductive part of type theory, and extends it to type theory in general. A \emph{Begriff} in Hegel's terminology is here understood
as a type. For this identification it should be noted that to each logical proposition $p$ a type $T$
can be associated as the ``type of reasons $p$ is true'', so that a \emph{constituent} $t$ of $T$ can be
understood as a ``reason'' $p$ is true. We will call this the \emph{internal logical perspective on types}.
From this perspective, type theory is an extension of first order logic
(often assumed without the \emph{law of the excluded middle}, that either a proposition is true or its negation $p ∨ ¬p$ or equivalently that from the untruth of the negation of a proposition follows the proposition itself $¬¬p \Rightarrow p$, a point we will return
to): if $T$ contains the reasons a proposition $p$ is true and $S$ contains the reasons $q$ is true, then
a morphism $m:T\rightarrow S$, which associates to each constituent $t$ of $T$ a constituent $m(t)$ of
$S$, can be understood as a \emph{deduction} of $q$ from $p$, interpreting each reason $p$ is true as a reason $q$ is true, and be identified with Hegel's \emph{Urteil}
(judgement). Similarly, logical conjunction, disjunction and negation have type-theoretic equivalents.
The passage from ``reasons'' for a proposition $p$ to simply asking whether $p$ is true consists then
of a simple operation that can be accomplished within type theory.
However, a type can \emph{also} be understood as a \emph{context} for logic. We will call this the
\emph{external perspective on types}, and it is closely interlinked with the internal perspective. In this
understanding, a
proposition $p$ corresponds to the largest sub-context $U\hookrightarrow X$ in which it is true. For this
identification, it should be noted that the mathematical term ``type'' is abstracted from ``type of
mathematical
structure'', and one way to understand a type is as the container of a type of mathematical structure.
Then type theory is a means of applying logic in the context of a type of structure. This way, type theory
can be used as an alternative to \emph{set theory}.
\section{\emph{Wesen} as Homotopy Type Theory}\label{Hott}
We will now discuss homotopy type theory, which we identify with Hegel's notion of \emph{Wesen},\footnote{Translated as ``essence'' by Miller.} though we will only fully justify the identification at the end of \ref{Wesen}.
Of course, we can only give a very brief introduction to homotopy type theory, a more complete one is
given in \cite{Shuhott}.
The revolutionary advancement of homotopy type theory over traditional logic
is to treat equality not as a property but as a structure. Concretely, this means the following: for any
two constituents $s,t$ of a type $T$,\footnote{But \emph{not} for constituents of different types, in other
words, constituents of different types are not just not equal, the question of whether they are equal
cannot even be asked, at least without the context of a morphism between the two types.} there exists
a type $s=_T t$ of \emph{equalities} of $s$ and $t$. Applying this requirement to itself we see that for any two constituents of $s=_T t$ a
similar type of equalities has to exist, and so on. One way equality has traditionally been understood is as
the strongest possible equivalence relation. In homotopy type theory, this is translated to saying that,
given an equality $e:s=_T t$ between two constituents $s$ and $t$, each property that holds for a constituent
$s$ has to also hold for constituent $t$ \emph{once it has been transported along $e$}. In particular,
if there are two equalities $e:s=_T t$ and $f:t=_T s$, then \emph{$f$ yields an equality $e^{-1}\fcmp f: t =_T t$ of $t$ to
itself once it has been transported along $e$}. Furthermore, there is always at least one equality $id_t$ for each constituent $t$ of a type $T$ and a morphism always maps $id_t$ to $id_{m(t)}$.\footnote{Please note the similarity between the definition of equalities of constituents and that of morphisms of a category.}
We can now define a \emph{morphism of homotopy types} $m:S\rightarrow T$
recursively as a mapping that associates to each constituent $s$ of $S$
a constituent $m(s)$ of $T$ along with, for each pair of constituents $s,s^{\prime}$, a morphism of homotopy types from
$s=_{S} s^{\prime}$ to $m(s)=_T m(s^{\prime})$, satisfying a condition that expresses that it does
not matter whether an equality is transported along another equality before or after applying a morphism.
The homotopy-theoretic interpretation of equality can be visualized by imagining a type $T$ as a space,
constituents $s,t:T$ as points within this space and equalities $e,f:s=_T t$ as paths between the points
$s$ and $t$. The canonical identity $id_t$ of a constituent $t$ then corresponds to the constant path
on a point. An equality $f:s =_T t$ that is transported along another equality $e:t =_T s$ to give a
self-equality $e\fcmp f: t =_T t$ is visualized as, in a space with two points $s,t$ and two paths $e,f$
between them, first going along $e$ from $t$ to $s$, then along $f$ from $s$ to $t$, so going around a
loop that starts and stops at $t$. A higher equality $\alpha:s=_T t$ could be visualized as a surface
between the paths $e$ and $f$, and so on. In particular, $T$ contains only one constituent if and only
if its visualization is \emph{connected}. A morphism between homotopy types then maps points to points,
paths to paths, surfaces to surfaces, and so on. Two homotopy types are equivalent if and only if they
both have the same form once their fabric has been contracted as much as possible without gluing in new
fabric anywhere, or, equivalenty, if they have the same $n$-dimensional holes. The condition that a property
should hold for any equal constituents once it has been transported along an equality can be translated
to stating that each property can be transported along any path in the space.
Understanding spaces through their points and paths between them is called homotopy theory,\footnote{See
\cite{Htt} for an introduction.} and our mental image can be formalized into the statement that homotopy
types can be modeled by topological spaces up to homotopy. It should be stressed that \emph{this is a
model}. If $s$ and $t$ are constituents which are equal, they cannot be different points in
a space, since they then would not share every property. However, this model is important as it, conversely, allows us to model geometric shapes through
equalities. We will return to this.
Homotopy theory has been of great use in modern mathematics. Each space can be assigned an underlying
homotopy type, which captures a lot of information about that space. In a short while we will come across
homotopy types that have \emph{additional} geometric structure and study how Hegelian thought can be used
to describe the relationship between a space and its underlying homotopy type.
It should be in this way that each equality that has appeared in this exposition up to now is understood,
not as \emph{saying} that its two expressions are equal, but as explicitly providing an equality that
generally will not be the same as any other given equality between them. Another way to understand these
equalities is as \emph{equivalences}, in that they provide a means by which two structures can be exhibited
as fulfilling the same function. This is a philosophical problem that has plagued modern mathematics since
the formalization of its structures: often two structures are equivalent (or ``isomorphic'')\footnote{Actually,
isomorphism is only the first in a hierarchy of increasingly weaker notions of equivalence that all collapse
to equality if homotopy type theory is assumed. This is useful for the purposes of higher category theory,
where these weaker equivalences are what actually matters, since isomorphism would be too strong a notion,
similarly to how equality is too strong for lower-categorical structures.} in the sense that they fulfill
the same function, but not equal. Furthermore, making them equal would lose valuable information. Intuitively,
the problem is that, classically, there can be at most one equality between two structures. In homotopy
type theory, equivalence and equality can be treated equivalently (and are thus equal). This is in line
with Hegel's dictum on \emph{Verschiedenheit}:
\begin{quote}
Alle Dinge sind verschieden, oder: Es giebt nicht zwei Dinge, die einander gleich sind.
\end{quote}
\begin{quote}
All things are different; or: there are no two things like each other.
\end{quote}
Where difference between things is equated with the non-existence of an equivalence between them.
A way to express this \emph{Law of Equivalence}\footnote{This is actually the strongest possible form
of a ``law'' among category-theoreticians that no definition should treat equivalent things differently:
if equivalent things \emph{are} equal, then they cannot be treated differently.} is to posit the existence
of a ``type of types''. Such a type would be a reflection $u$ of the universe $\mathcal{U}$ inside
itself in that a type $T$ would correspond to a constituent $'T'$ of $u$, and an equality between
types $S$ and $T$ to a constituent $e$ of the type $'S'=_{u} 'T'$. This state of affairs reflects
Hegel's dictum that (§115)
\begin{quote}
Das Wesen scheint in sich, oder ist reine Reflexion...
\end{quote}
\begin{quote}
At first, essence shines or shows within itself, or is pure reflection...
\end{quote}
Then the \emph{Law of Equivalence} could be expressed as the \emph{Univalence Axiom} that, for any two
types $S,T$, such that $S$ and $T$ contain the reasons for propositions $p$ and $q$, an equivalence
exists between the type of \emph{outer} equivalences $S\simeq T$, which contains the reasons for
$p\Leftrightarrow q$, and the type $'S'=_{u} T'$of \emph{inner} equalities
between $'S'$ and $'T'$, which correspond to equalities between $S$ and $T$. This again can be understood in
Hegel's terms
as in §1149:
\begin{quote}
Das innere ist als die Form der reflektierten Unmittelbarkeit oder des Wesens, gegen das Aussere als
die Form des Seins bestimmt, aber beide sind nur eine Identitaet.
\end{quote}
\begin{quote}
The inner is determined as the form of reflected immediacy or of essence against the outer as the
form of being, but the two are only one identity.
\end{quote}
However, doing this naively we would run into problems similar to Russell's paradox. To deal with this
issue, usually a hierarchy of \emph{Grothendieck universes} $\mathcal{U}_i$ is assumed, each containing
the previous one, so that the universe $\mathcal{U}_{i+1}$ contains a type $u_i$, which contains
all types within $\mathcal{U}_i$. We will still denote our universe $\mathcal{U}$ and assume it is one
of the $\mathcal{U}_{i+1}$ on the ladder of universes, which contains a type of $\mathcal{U}_i$-types $u$.
One immediate consequence of the $\emph{Law of Equivalence}$ is a dramatic simplification of the type-theoretic
universe $\mathcal{U}$, since any equivalent types have to be equal. For comparison, in a model $\mathcal{M}$
for the standard set theory mathematicians use as a foundation, $ZFC$, each class of equivalent, but non-equal,
sets (except the one containing only the empty set), contains more members than any set in $\mathcal{M}$.
Another important consequence of the existence of a type of types is that it allows a type theory that
quantifies over sub-types of types and can thus be used to implement higher-order logic.
\section{Objective Logic}
We will now apply our formalization of Hegel's dialectics to the universe of types $\mathcal{U}$, which
results in a process of structures derived from each other starting with very elementary assumptions. This
process of derivation runs roughly parallel to the one Hegel sketched from his intuition in \emph{Science of
Logic}. However, the current process is strictly formalized and understandable through a fairly normal
logical and geometric framework. The notions at the beginning of this process are also what led Lawvere to
notice the similarity between mathematical structures and Hegel's. We will go through the mathematical
process and see how well it lines up with that of Hegel when we try to identify the resulting mathematical notions with Hegel's (following Schreiber).
\subsection{\emph{Sein} and \emph{Nichts}}
For the process to begin, we first have to assume the existence of a (unique) type with one constituent $*$.
This type is identified with Hegel's \emph{Sein} (being). Hegel says about pure being, ``it has no diversity
within itself nor any with a reference outwards''. Accordingly, everything within the one-constituent type
$*$ is equal. Furthermore, $*$ has no diversity with a reference outwards in that every morphism
$m:*\rightarrow T$ from $*$ to any other type is of the same form: a constituent $m(*)$ of $T$, which can
(and, in a sense, should, as we will see) be thought of as a point in a completely homogenous, completely
symmetric space of points. Notice also that for each type $T$, exactly one morphism $T\rightarrow *$ to $*$
exists, mapping each constituent of $T$ to $*$. This can be thought of as everything in $T$ becoming
equal.\footnote{Please note here that this becoming equal can be understood as projecting all of $T$ onto a
single element, or as inserting equalities between any pair of constituents of $T$, inserting equalities
between those equalities and so on, until everything is equal. According to homotopy type theory, these two
processes are the same.}
Next we introduce the \emph{empty type} $\varnothing$. This is a type that contains no constituents and is
identified with Hegel's \emph{Nichts} (nothing).\footnote{It should be noted here that there is a canonical
filtration of any $\infty$-topos $\mathcal{U}$ (such as the universe of homotopy types) by truncation
modalities $\tau_{\leq n}$, where $\tau_{\leq -1}(\mathcal{U})$ is the total order of truth values. In
classical logic only two truth values exist, $true$, which we identify with $*$, and $false$, which we
identify with $\varnothing$, so the image of $\tau_{\leq -1}$ has the concrete form of
$\varnothing\rightarrow *$. Furthermore, the image $\tau_{-2}(\mathcal{U})$ is the one object subcategory on
$\star$. In this sense, Hegel's introduction of being before nothing is correct. Reasoning within homotopy
type theory, the fact that being is in this sense more fundamental than nothing can be understood as saying
that if nothing (identified with the empty type $\varnothing$) exists, this nothing is equal to itself by
$id_\varnothing$, thus the existence of nothing implies the existence of being. Notice the similarity to
Hegel's description of nothing as ``simply equality with itself''.} Inspecting the possibilities for
morphisms on $\varnothing$, we notice that a unique morphism exists from the empty type to any other type,
with empty source and therefore empty image. This can be taken as a generalization of the logical proposition
that ``ex falsio quot libet''.
Though we have introduced $*$ and $\varnothing$ as axioms, we could also \emph{deduce} their existence from
that of finite products and coproducts in the universe $\mathcal{U}$ in question, which is equivalent to its
internal logic allowing the formation of arbitrary finite conjunctions resp. disjunctions. $*$ is then the
product over nothing, the conjunction of no propositions, which corresponds well to Hegel's description of being
as\footnote{This correspondence is original work.}
\begin{quote}
Sein, reines Sein,
ohne alle weitere Bestimmung.
\end{quote}
\begin{quote}
Being, pure being,
without any further determination.
\end{quote}
Dually, $\varnothing$ is the coproduct over nothing. Here an interpretation is more subtle, since binary
disjunction in a universe of types is not actually the binary coproduct, but the $(-1)$-truncation of the
binary coproduct. For this reason it is better in this context to think of the coproduct over nothing not in
terms of propositions but view it as expressing a disjoint union, which means then that $\varnothing$ is the
disjoint union of no sets/types.
We can now form our first unity of opposites. The left moment will be denoted $\varnothing$ and is defined by
$\varnothing T:= \varnothing$. Similarly the right moment will be denoted $*$ and is defined by $* T:= *$.
The adjunction condition is trivially fulfilled: $Hom(\varnothing, T)=*=Hom(T, *)$. This unity
$\varnothing\dashv *$ we take as \emph{becoming} as in Hegel's description
\begin{quote}
Das reine Seyn und das reine Nichts ist also dasselbe. Was die Wahrheit ist, ist weder das Seyn, noch das Nichts, sondern daß das Seyn in Nichts, und das Nichts in Seyn,—nicht übergeht,—sondern übergegangen ist. Aber eben so sehr ist die Wahrheit nicht ihre Ununterschiedenheit, sondern daß sie nicht dasselbe, daß sie absolut unterschieden, aber ebenso ungetrennt und untrennbar sind, und unmittelbar jedes in seinem Gegentheil verschwindet. Ihre Wahrheit ist also diese Bewegung des unmittelbaren Verschwindens des einen in dem andern; das Werden; eine Bewegung, worin beide unterschieden sind, aber durch einen Unterschied, der sich eben so unmittelbar aufgelöst hat.
\end{quote}
\begin{quote}
Pure Being and pure nothing are, therefore, the same. What is the truth is neither being nor nothing, but that being — does not pass over but has passed over — into nothing, and nothing into being. But it is equally true that they are not undistinguished from each other, that, on the contrary, they are not the same, that they are absolutely distinct, and yet that they are unseparated and inseparable and that each immediately vanishes in its opposite. Their truth is therefore, this movement of the immediate vanishing of the one into the other: becoming, a movement in which both are distinguished, but by a difference which has equally immediately resolved itself.
\end{quote}
and the aspect sequence of the unity of becoming $\varnothing = \varnothing T\rightarrow T \rightarrow * T =
*$ formalizes Hegel's statement that
\begin{quote}
...es gar nichts giebt, das nicht ein Mittelzustand zwischen Seyn und Nichts ist.
\end{quote}
\begin{quote}
...there is nothing which is not an intermediate state between being and nothing.
\end{quote}
\subsubsection{Negatives}
The existence of $*$ allows us to define another structure we will need later on: From a preceding moment
$\unitsq$, we can form a successive moment $\overline{\unitsq}$ given by, for each type $T$, the cofiber
$\overline{\unitsq}$ of the morphism $\unitsq T\rightarrow\ T$, which trivializes the the image of $\unitsq T$ in $T$
by collapsing it to a point. This is, perhaps somewhat more loosely, identified with the Hegelian
\emph{negative} based on the paragraphs 911:
\begin{quote}
Diese in sich reflektirte Gleichheit mit sich, die in ihr selbst die Beziehung auf die Ungleichheit enthält, ist das Positive; so die Ungleichheit die in ihr selbst die Beziehung auf ihr Nichtseyn, die Gleichheit enthält, ist das Negative.—Oder beide sind das Gesetztseyn; insofern nun die unterschiedene Bestimmtheit als unterschiedene bestimmte Beziehung des Gesetztseyns auf sich genommen wird, so ist der Gegensatz eines Theils das Gesetztseyn in seine Gleichheit mit sich reflektirt; andern Theils dasselbe in seine Ungleichheit mit sich reflektirt; das Positive und Negative.—Das Positive ist das Gesetztseyn als in die Gleichheit mit sich reflektirt; aber das reflektirte ist das Gesetztseyn, das ist, die Negation als Negation, so hat diese Reflexion in sich die Beziehung auf das Andere zu ihrer Bestimmung. Das Negative ist das Gesetztseyn als in die Ungleichheit reflektirt; aber das Gesetztseyn ist die Ungleichheit selbst, so ist diese Reflexion somit die Identität der Ungleichheit mit sich selbst und absolute Beziehung auf sich.—Beide also, das in die Gleichheit mit sich reflektirte Gesetztseyn hat die Ungleichheit, und das in die Ungleichheit mit sich reflektirte Gesetztseyn hat auch die Gleichheit an ihm.
\end{quote}
\begin{quote}
This self-likeness reflected into itself that contains within itself the reference to unlikeness, is the positive; and the unlikeness that contains within itself the reference to its non-being, to likeness, is the negative. Or, both are a positedness; now in so far as the differentiated determinateness is taken as a differentiated determinate self-reference of positedness, the opposition is, on the one hand, positedness reflected into its likeness to itself and on the other hand, positedness reflected into its unlikeness to itself — the positive and the negative. The positive is positedness as reflected into self-likeness; but what is reflected is positedness, that is, the negation as negation, and so this reflection-into-self has reference-to-other for its determination. The negative is positedness as reflected into unlikeness; but the positedness is unlikeness itself, and this reflection is therefore the identity of unlikeness with itself and absolute self-reference. Each is the whole; the positedness reflected into likeness-to-self contains unlikeness, and the positedness reflected into unlikeness-to-self also contains likeness.
\end{quote}
and 938:
\begin{quote}
Das Negative ist also die ganze, als Entgegensetzung auf sich beruhende Entgegensetzung, der absolute sich nicht auf Anderes beziehende Unterschied; er schließt als Entgegensetzung die Identität von sich aus; aber somit sich selbst, denn als Beziehung auf sich bestimmt er sich als die Identität selbst, die er ausschließt.
\end{quote}
\begin{quote}
The negative is, therefore, the whole opposition based, as opposition, on itself, absolute difference that is not related to an other; as opposition, it excludes identity from itself — but in doing so excludes itself; for as self-relation it is determined as the very identity that it excludes.
\end{quote}
Dually, we can also define a notion $\overline{\bigcirc}$ of the negative of a successive moment: the fiber
of the morphism $T\rightarrow \bigcirc T$. However, this fiber depends on a chosen basepoint, so it only
makes sense on types which have only one constituent (but possibly this constituent has (higher) equalities),
or, thought of homotopically, have only one connected component. In this case, $\overline{\bigcirc} T$
contains that part of the structure of $T$ that is trivialized by $T\rightarrow\bigcirc T$. Note that
$\overline{\unitsq}$ and $\unitsq$ (or the dual notions) do \emph{not} form a unity of opposites. However, for
each object $T$, a sequence $\overline{\unitsq} T \rightarrow T \rightarrow \unitsq T$ exists and this sequence
\emph{decomposes} each $T$, in the sense that $T$ could be reconstructed from its aspects under a moment and
its negative, as well as their relation. This is not generally true for unities of opposites.
\subsection{Quantity and Quality}
Given the unity of becoming $\varnothing\dashv *$, we can now derive a sequence of new unities starting with
its minimal Aufhebung. We begin this sequence of derivations with the smallest moment that contains both
$\varnothing$ and $*$, which is the \emph{double negation} modality, mapping a type $T_{p}$ of reasons a proposition $p$ is true to the type $T_{¬¬p}$ of reasons its double negation is true. \cite{Sketches}.\footnote{This terminology
stems from mathematical logic and is not to be confused with the Hegelian negative.} The sub-universe
$\mathcal{U}_\sharp$ that is invariant under $\sharp$ is the largest sub-universe in which the law of the
excluded middle holds. Thus, if our new unity is supposed to be non-trivial, the internal logic of our
universe $\mathcal{U}$ cannot be classical. \emph{If the law of the excluded middle is assumed to hold
universally, then the entire sequence of structures we are about to derive collapses into triviality}. We
will therefore assume that the internal logic we are operating in is \emph{intuitionistic}, meaning it is like
classical logic but without the law of the excluded middle. The action of the double negation modality can
again be understood both from an internal and an external perspective.
Internally, say a type $T$ is the context we are operating in, and a proposition $p$ defines the largest
sub-context $U\hookrightarrow T$ in which it holds. Then the negation $\neg p$ of $p$ similarly defines the
largest sub-context $\neg_T U$ on which it holds, and each constituent in $*\rightarrow T$ is either
contained in $U$ or in $\neg_T U$. However, in spite of this, $T$ is \emph{not} just the union of $U$ and
$\neg_T U$, which corresponds to the proposition $p\vee \neg_T p$, the law of the excluded middle in $T$.
What is missing from this union is a structure of $T$ that lives between $U$ and $\neg U$ and is not made up
of points. This is a kind of \emph{spatial} structure, which is not just determined by points, but goes
beyond them, kinds of local neighborhoods of points that build up the spatial structure of $T$. $U$ and
$\neg_T U$ slice up $T$ between them but in doing so cut out the spatial structure that connects them. The
double negation $\neg\neg T$ of $T$ is then a space with the same constituents as $T$, but where no
information is lost by slicing it up, which implies that the spatial structure between any constituents of $T$ is
trivial in some way.
Externally, since in intuitionistic logic it is assumed that a proposition implies its double negation even
if the law of the excluded middle is not, each constituent $t$ of a type $T$, which contains the reasons a
proposition $p$ is true, gives rise to a reason $\sharp_T (t):\sharp T$ for why $\neg\neg p$ is true. This
mapping constitutes the morphism $T \rightarrow \sharp T$ that is the expression of $p\Rightarrow\neg\neg p$.
If $t_1$ and $t_2$ are non-equal constituents of $T$ corresponding to reasons for $p$, then $\sharp_T (t_1)$
and $\sharp_T (t_2)$ correspond to non-equal reasons for $\neg\neg p$, thus $\sharp_T$ does not identify
points. The failure of the law of the excluded middle to hold is then the failure for this map to be an equivalence.
Since both $T$ and $\sharp T$ have the same points, this failure must be due to spatial structure that is not
determined by their points. Furthermore, since it is provable in intuitionistic logic that $\neg\neg\neg p$
is equivalent to $\neg p$, their corresponding types are equal. So the failure of the law of the excluded middle
can be measured by the amount of non-equal types $T$ that are mapped to the same double negation $\sharp T$
(at least two, $T$ and $\sharp T$ for some $T$ if the law of the excluded middle fails), which corresponds to
the amount of different spatial structures that can be put onto the same points. Furthermore, since each
$T$ maps to its double negation, $\sharp T$ must have the coarsest possible geometry among all types that it is the double negation of, in the sense that any morphism
$m$ into any $T$ yields a map into its double negation,
given by its composition with the double negation morphism $m\fcmp \sharp_T$. This means that no spatial structure can
exist to distinguish the points of $\sharp T$, they all exist in the same place, but they are not equal, so
that any morphism into $T$ is already \emph{continuous}. \emph{So the failure of the
law of the excluded middle in a context $T$ lies precisely in the geometry of $T$.} This state of affairs fits remarkably well Hegel's description of continuity:
\begin{quote}
Die Kontinuität ist also einfache, sich selbst gleiche Beziehung auf sich, die durch keine Grenze und Ausschließung unterbrochen ist, aber nicht unmittelbare Einheit, sondern Einheit der fürsichseienden Eins. Es ist darin das Außereinander der Vielheit noch enthalten, aber zugleich als ein nicht Unterschiedenes, Ununterbrochenes. Die Vielheit ist in der Kontinuität so gesetzt, wie sie an sich ist; die Vielen sind eins was andere, jedes dem anderen gleich, und die Vielheit daher einfache, unterschiedslose Gleichheit. Die Kontinuität ist dieses Moment der Sichselbstgleichheit des Außereinanderseins, das Sichfortsetzen der unterschiedenen Eins in ihre von ihnen Unterschiedenen.
\end{quote}
\begin{quote}
Continuity is, therefore, simple, self-same self-relation, which is not interrupted by any limit or exclusion; it is not, however, an immediate unity, but a unity of ones which possess being-for-self. The asunderness of the plurality is still contained in this unity, but at the same time as not differentiating or interrupting it. In continuity, the plurality is posited as it is in itself; the many are all alike, each is the same as the other and the plurality is, consequently, a simple, undifferentiated sameness. Continuity is this moment of self-sameness of the asunderness, the self-continuation of the different ones into those from which they are distinguished.
\end{quote}
We will therefore call $\sharp$ the \emph{moment of continuity}. We'll furthermore call our types
\emph{spaces} from now on and denote them by $X$ to remind us of their spatial structure. More abstractly, the moment of
continuity can be described as extracting from each space its points and collapsing them to the same place.
Similarly, its opposite, $\flat$, if it exists (which we demand it does), trivializes the spatial
$X$-structure by extracting the points of $X$ and putting each into its own piece of space, completely disconnected
from any other piece, forming the \emph{discrete} space $\flat X$. For each $X$, the aspect sequence of the
unity $\flat X \rightarrow X \rightarrow \sharp X$ can then be visualized as first bringing the points of
$\flat X$ together until they form $X$, then bringing them even closer until they all occupy the same place.
This unity $\flat\dashv\sharp$ can be understood as the \emph{unity of discreteness and continuity}, as
described by Hegel §397:
\begin{quote}
Unmittelbar hat daher die Größe in der Kontinuität das Moment der Diskretion, - die Repulsion, wie sie nun Moment in der Quantität ist. Die Stetigkeit ist Sichselbstgleichheit, aber des Vielen, das jedoch nicht zum Ausschließenden wird; die Repulsion dehnt erst die Sichselbstgleichheit zur Kontinuität aus. Die Diskretion ist daher ihrerseits zusammenfließende Diskretion, deren Eins nicht das Leere, das Negative, zu ihrer Beziehung haben, sondern ihre eigene Stetigkeit, und diese Gleichheit mit sich selbst im Vielen nicht unterbrechen.
\end{quote}
\begin{quote}
In continuity, therefore, magnitude immediately possesses the moment of discreteness — repulsion, as now a moment in quantity. Continuity is self-sameness, but of the Many which, however, do not become exclusive; it is repulsion which expands the selfsameness to continuity. Hence discreteness, on its side, is a coalescent discreteness, where the ones are not connected by the void, by the negative, but by their own continuity and do not interrupt this self-sameness in the many.
\end{quote}
Hegel writes of this unity in §398:
\begin{quote}
Die Quantität ist die Einheit dieser Momente, der Kontinuität und Diskretion.
\end{quote}
\begin{quote}
Quantity is the unity of these moments of continuity and discreteness.
\end{quote}
Since the spatial structure of $\sharp X$ is trivial, morphisms into it are completely determined by the
values of their points. These objects\footnote{As well as their subobjects.} are identified with the
\emph{intensive quantities} of Lawvere \cite{Law82}, Grassmann \cite{Grass}, and Hegel. Furthermore, the
negative $\overline{\sharp} X$ of $\sharp X$ consists purely of the structure that makes $X$ spatial, thus
the local aspects of $X$. So these are identified with \emph{extensive quantities}. A morphism on a space $X$
into an intensive quantity $\sharp X$ can be described as something that associates to each point of $X$ a
quantity, while a function into $\overline{\sharp} X$ associates a quantity to volumina of $X$.
One way to
understand how intensive and extensive quantities work is in relation to the decomposition of a system into
subsystems \cite{nlabie}: given a system $S_0$ that can be decomposed into two\footnote{Of course, a
decomposition of any cardinality can be assumed.} sub-systems $S_1$ and $S_2$, the value of an extensive
quantity $Q$ on $S_0$ is equal to the sum of the values of the quantity on $S_1$ and $S_2$. An example is the
mass of a body or the length of a text. Meanwhile, an intensive quantity $q$ has a value $v_0$ on the system
$S_0$ if and only if it has the same value on both sub-systems $S_1$ and $S_2$. An example is the temperature
of a body. However, if an intensive quantity $q$ of a system is constant on one value $v_0$, the map
$S_0\rightarrow\sharp T$ lifts through the aspect sequence $\flat T\rightarrow T\rightarrow\sharp T$. In
light of our understanding of the next unity in the process, we can see this as saying that \emph{constant
intensive quantities are qualities}.\footnote{This identification is original work.} This corresponds well to
our intuition. For instance, color, understood as the wavelength of light, is an intensive quantity. However,
we intuitively refer to an object as having a specific color if and only if all of its parts have the same
color. Finally, both $\sharp$ and $\flat T$ express the \emph{cardinality} of $X$, in its discrete and
continuous form, so the description of this unity as quantity seems justified.
The $\flat$-moment is also identified with the \emph{moment of repulsion} as in Hegel §342 and §343:
\begin{quote}
...so stößt das Eins sich selbst von sich ab. Die negative Beziehung des Eins auf sich ist Repulsion.
Diese Repulsion, so als das Setzen der vielen Eins aber durch Eins selbst ist das eigne Außersichkommen des Eins, aber zu solchen außer ihm, die selbst nur Eins sind. Es ist dieß die Repulsion dem Begriffe nach, die an sich seyende. Die zweite Repulsion ist davon unterschieden, und ist die der Vorstellung der äußern Reflexion zunächst vorschwebende, als nicht das Erzeugen der Eins, sondern nur als gegenseitiges Abhalten vorausgesetzter, schon vorhandener Eins. Es ist dann zu sehen, wie jene an sich seyende Repulsion zur zweiten, der äußerlichen, sich bestimmt.
\end{quote}
\begin{quote}
...the one repels itself from itself. The negative relation of the one to itself is repulsion.
This repulsion as thus the positing of many ones but through the one itself, is the one’s own coming-forth-from-itself but to such outside it as are themselves only ones. This is repulsion according to its Notion, repulsion in itself. The second repulsion is different from it, it is what is immediately suggested to external reflection: repulsion not as the generation of ones, but only as the mutual repelling of ones presupposed as already present.
\end{quote}
and has its own left opposite $\textrm{∫}\dashv\flat$, so that $\textrm{∫}$ is, as by Hegel
§395
\begin{quote}
Die Attraktion ist auf diese Weise als das Moment der Kontinuität in der Quantität.
\end{quote}
\begin{quote}
Attraction is in this way the moment of continuity in quantity.
\end{quote}
identified with the \emph{moment of attraction}. Since $\textrm{∫}\dashv\flat$ is an $sp$-unity,
$\textrm{∫}$ lands in the same spaces as $\flat$, so a space $\textrm{∫} X$ is discrete. In
models we will demand that the modality
$\textrm{∫}$ is the localization of the path object of the topos, in the sense that $\textrm{∫} X$ contracts all points that are connected to each other through a path to the same point, so $\textrm{∫}X$ becomes discrete, it remembers each path between points as an equality in its homotopical \emph{shape}, as in Section
\ref{Hott}.\footnote{This interaction between the two different spatial structures of $X$,
that of its local structure (which is induced by its local elements) and its structure of homotopic equality,
is of crucial importance in topology.} Thus, the moment of attraction can be understood as the internal
contraction within the fabric of $X$ taking over and $X$ contracting as much as possible while still not
losing its shape. The unity of opposites $\textrm{∫}\dashv\flat$, and, more concretely, the
\emph{points to pieces transform} $\flat X\rightarrow X\rightarrow \textrm{∫} X$ can be understood as
describing ``the difference of the one and the many'' as in Hegel §361:
\begin{quote}
Der Unterschied von Einem und Vielen hat sich zum Unterschiede ihrer Beziehung auf einander bestimmt, welche in zwei Beziehungen, die Repulsion und die Attraktion, zerlegt ist, deren jede zunächst selbstständig außer der anderen steht, so daß sie jedoch wesentlich zusammenhängen. Die noch unbestimmte Einheit derselben hat sich näher zu ergeben.
\end{quote}
\begin{quote}
The difference of the one and the many is now determined as the difference of their relation to one another, with each other, a relation which splits into two, repulsion and attraction, each of which is at first independent of the other and stands apart from it, the two nevertheless being essentially connected with each other. Their as yet indeterminate unity is to be more precisely ascertained.
\end{quote}
and is identified with \emph{quality}, as, on the one hand, the $∫$-aspect of a type captures the quality of its shape, on the other hand its negative captures what makes it different from simply being the homotopy type of its shape. Overall, the system of modalities $\textrm{∫}\dashv\flat\dashv\sharp$ has been termed
\emph{cohesion} and the objects it acts on as \emph{cohesive substance} by Lawvere,\cite{Coh}\footnote{More
precisely, Lawvere defined the functors underlying the modalities, Schreiber identified them with
modalities.} and identified by Schreiber with \emph{measure} as in Hegel 699:
\begin{quote}
Im Maaße sind, abstrakt ausgedrückt, Qualität und Quantität vereinigt.
\end{quote}
\begin{quote}
Abstractly expressed, in measure quality and quantity are united.
\end{quote}
and indeed $\textrm{∫}$ is a generalization of the Euler characteristic and the tools within this unity are already enough to define a very general notion of an integral\cite{Nlabintegral}.
\subsection{The Aufhebung of Finiteness}
Next we introduce an Aufhebung of the last derived unity $\textrm{∫}\dashv\flat$ given by an
$sp$-unity $ \Im\dashv\&$:
$$
\begin{array}{ccc}
\Im &\dashv& \&
\\
\vee && \vee
\\
\textrm{∫} &\dashv& \flat
\end{array}
$$
Since $\Im\dashv\&$ is a higher sphere than $\textrm{∫}\dashv\flat$, the morphism $X\rightarrow
\textrm{∫} X$ factors through $\Im$: $X\rightarrow\Im X\rightarrow\textrm{∫} X$. Thus, $\Im X$
can be understood as a contraction of $X$, where $X$ is not contracted down to its basic shape, but only
``small'' paths in $X$ are contracted. More precisely, what is contracted are \emph{infinitesimal paths},
and, correspondingly, the negative $\overline{\Im} X$ of $\Im$ on a connected space is the \emph{purely
infinitesimal} part of $X$. We conclude this stage of the process by positing an opposite to $\Im\dashv\&$,
given by a preceding moment $\Re$. These modalities $\Re\dashv\Im\dashv\&$ can together be taken to describe
the infinitesimal structure of $X$. Hegel described the infinitesimal thus in §171:
\begin{quote}
Das Angeführte ist auch dieselbe Dialektik, die der Verstand gegen den Begriff braucht, den die höhere Analysis von den unendlich-kleinen Größen giebt. Von diesem Begriffe wird weiter unten ausführlicher gehandelt.—Diese Größen sind als solche, bestimmt worden, die in ihrem Verschwinden sind, nicht vor ihrem Verschwinden, denn als dann sind sie endliche Größen;—nicht nach ihrem Verschwinden, denn alsdann sind sie nichts. Gegen diesen reinen Begriff ist eingewendet und immer wiederholt worden, daß solche Größen entweder Etwas seyen, oder Nichts; daß es keinen Mittelzustand (Zustand ist hier ein unpassender, barbarischer Ausdruck) zwischen Seyn und Nichtseyn gebe.—Es ist hierbei gleichfalls die absolute Trennung des Seyns und Nichts angenommen. Dagegen ist aber gezeigt worden, daß Seyn und Nichts in der That dasselbe sind, oder um in jener Sprache zu sprechen, daß es gar nichts giebt, das nicht ein Mittelzustand zwischen Seyn und Nichts ist. Die Mathematik hat ihre glänzendsten Erfolge der Annahme jener Bestimmung, welcher der Verstand widerspricht, zu danken.
\end{quote}
\begin{quote}
The foregoing dialectic is the same, too, as that which understanding employs the notion of infinitesimal magnitudes, given by higher analysis. A more detailed treatment of this notion will be given later. These magnitudes have been defined as such that they are in their vanishing, not before their vanishing, for then they are finite magnitudes, or after their vanishing, for then they are nothing. Against this pre notion it is objected and reiterated that such magnitudes are either something or nothing; that there is no intermediate state between being and non-being ('state' is here an unsuitable, barbarous expression). Here too, the absolute separation of being and nothing is assumed. But against this it has been shown that being and nothing are, in fact, the same, or to use the same language as that just quoted, that there is nothing which is not an intermediate state between being and nothing. It is to the adoption of the said determination, which understanding opposes, that mathematics owes its most brilliant successes.
\end{quote}
which is fairly on point: the \emph{reduced} part $\Re X$ of a space $X$ is the part of the space which
\emph{really} exists in that it contains points of $X$ but no infinitesimals, and is embedded into $X$: $\Re
X\rightarrow X$. Accordingly, the types purely of the negative $\overline{\Im}$ of $\Im$ are precisely
infinitesimally thickened points. So both $\Re$ and $\Im$ are ways of trivializing infinitesimal structure,
but, just like with $\flat$ and $\sharp$, are trivializing it in opposite ways: $\Re X$ contains the core of
$X$ that is spanned by its real part, but in this core infinitesimal structure is still contained, as long as it is induced by real structure. $\Im$ meanwhile identifies the infinitesimal neighborhoods of any points in $X$ with each other, thereby contracting $X$ to a shape that is \emph{infinitesimally flat} or \emph{crystalline}: every morphism from an infinitesimally thickened point to an $\Im$-modal space has to be constant. This is not true for $\Re$-modal spaces.
The unity $\Im\dashv\&$ is identified with \emph{ideality} as the Aufhebung of quality, as in Hegel 305,
where \emph{infinite} is taken to mean \emph{infinitesimal} i.e. infinitely small:
\begin{quote}
In Beziehung auf Realität und Idealität wird aber der Gegensatz des Endlichen und Unendlichen so gefaßt, daß das Endliche für das Reale gilt, das Unendliche aber für das Ideelle gilt; wie auch weiterhin der Begriff als ein Ideelles und zwar als ein nur Ideelles, das Daseyn überhaupt dagegen als das Reale betrachtet wird...
Die Idealität kann die Qualität der Unendlichkeit genannt werden; aber sie ist wesentlich der Proceß des Werdens und damit ein Übergang, wie des Werdens in Daseyn, der nun anzugeben ist. Als Aufheben der Endlichkeit, d. i. der Endlichkeit als solcher und ebenso sehr der ihr nur gegenüberstehenden, nur negativen Unendlichkeit ist diese Rückkehr in sich, Beziehung auf sich selbst, Seyn. Da in diesem Seyn Negation ist, ist es Daseyn, aber da sie ferner wesentlich Negation der Negation, die sich auf sich beziehende Negation ist, ist sie das Daseyn, welches Fürsichseyn genannt wird.
\end{quote}
\begin{quote}
With reference to reality and ideality, however, the opposition of finite and infinite is grasped in such a manner that the finite ranks as the real but the infinite as the ‘ideal’ [das Ideelle]; in the same way that further on the Notion, too, is regarded as an ‘ideal’, that is, as a mere ‘ideal’, in contrast to determinate being as such which is regarded as the real...
Ideality can be called the quality of infinity; but it is essentially the process of becoming, and hence a transition — like that of becoming in determinate being — which is now to be indicated. As a sublating of finitude, that is, of finitude as such, and equally of the infinity which is merely its opposite, merely negative, this return into self is self-relation, being. As this being contains negation it is determinate, but as this negation further is essentially negation of the negation, the self-related negation, it is that determinate being which is called being-for-self.
\end{quote}
Consequently, $\&$ is identified with \emph{Seyn-für-eines} as in Hegel 322:
\begin{quote}
Dieß Moment drückt aus, wie das Endliche in seiner Einheit mit dem Unendlichen oder als Ideelles ist. Das Fürsichseyn hat die Negation nicht an ihm als eine Bestimmtheit oder Grenze, und damit auch nicht als Beziehung auf ein von ihm anderes Daseyn. Indem nun dieß Moment als Seyn-für-Eines bezeichnet worden, ist noch nichts vorhanden, für welches es wäre,—das Eine nicht, dessen Moment es wäre. Es ist in der That dergleichen noch nicht im Fürsichseyn fixirt; das für welches Etwas (—und ist hier kein Etwas—) wäre, was die andere Seite überhaupt seyn sollte, ist gleicherweise Moment, selbst nur Seyn-für-Eines, noch nicht Eines.—Somit ist noch eine Ununterschiedenheit zweier Seiten, die im Seyn-für-eines vorschweben können, vorhanden; nur Ein Seyn-für-Anderes, und weil es nur Ein Seyn-für-Anderes ist, ist dieses auch nur Seyn-für-Eines; es ist nur die Eine ldealität dessen, für welches oder in welchem eine Bestimmung als Moment und dessen, was Moment in ihm seyn sollte. So machen Für-eines-seyn und das Fürsichseyn keine wahrhaften Bestimmtheiten gegeneinander aus. Insofern der Unterschied auf einen Augenblick angenommen und hier von einem Fürsichseyenden gesprochen wird, so ist es das Fürsichseyende, als Aufgehobenseyn des Andersseyns, selbst, welches sich auf sich als auf das aufgehobene Andere bezieht, also für-Eines ist; es bezieht sich in seinem Andern nur auf sich. Das Ideelle ist nothwendig für-Eines, aber es ist nicht für ein Anderes; das Eine, für welches es ist, ist nur es selbst.—Ich also, der Geist überhaupt, oder Gott, sind Ideelle, weil sie unendlich sind; aber sie sind ideell nicht, als für-sich-seyende, verschieden von dem, das für-Eines ist. Denn so wären sie nur unmittelbare, oder näher Daseyn und ein Seyn-für-Anderes, weil das, welches für sie wäre, nicht sie selbst, sondern ein Anderes wäre, wenn das Moment, für-eines zu seyn, nicht ihnen zukommen sollte. Gott ist daher für sich, insofern er selbst das ist, das für ihn ist.
Für-sich-seyn und Für-Eines-seyn sind also nicht verschiedene
Bedeutungen der Idealität, sondern sind wesentliche, untrennbare
Momente derselben.
\end{quote}
\begin{quote}
This moment expresses the manner in which the finite is present in its unity with the infinite, or is an ideal being [Ideelles]. In being-for-self, negation is not present as a determinateness or limit, or consequently as a relation to a determinate being which is for it an other. Now though this moment has been designated as being-for-one, there is as yet nothing present for which it would be-no one, of which it would be the moment. There is, in fact, nothing of the kind as yet fixed in being-for-self; that for which something (and here there is no something) would be, whatever the other side as such might be, is likewise a moment, is itself only a being-for-one, not yet a one. Consequently, what we have before us is still an undistinguishedness of the two sides which may be suggested by being-for-one; there is only one being- orother, and because there is only one, this too is only a being-for-one; there is only the one ideality of that, for which or in which there is supposed to be a determination as moment, and of that which is supposed to be a moment in it. Being-for-one and being-for-self are, therefore, not genuinely opposed determinatenesses. If the difference is assumed for a moment and we speak of a being-for-self, then it is this itself which, as the sublatedness of otherness, relates itself to itself as the sublated other, and is therefore 'for one'; it is related in its other only to its own self. Ideal being [Ideelles] is necessarily 'for one', but it is not for an other; the one for which it is, is only itself. The ego, therefore, spirit as such, or God, are 'ideal' because they are infinite; but as being for themselves they are not 'ideally' different from that which is 'for one'. For if they were, they would be only immediate existences, or, more precisely, determinate being and a being-for-other, because that which would be for them would be, not themselves but an other, if they were supposed to lack the moment of being 'for one'. God is, therefore, for himself in so far as he himself is that which is for him.
To be 'for self' and to be 'for one' are therefore not different
meanings of ideality, but are essential, inseparable
moments of it.
\end{quote}
This identification is connected to Hegel's critique of atomism:
\begin{quote}
Die Atomistik hat den Begriff der Idealität nicht; sie faßt das Eins nicht als ein solches, das in ihm selbst die beiden Momente des Fürsichseyns und des Für-es-seyns enthält, also als ideelles, sondern nur als einfach, trocken Für-sich-seyendes.
\end{quote}
\begin{quote}
The atomistic philosophy does not possess the Notion of ideality; it does not grasp the one as an ideal being, that is, as containing within itself the two moments of being-for-self and being-for-it, but only as a simple, dry, real being-for-self.
\end{quote}
Here, the \emph{one} is identified with the smallest unit of a space, while \emph{atoms} are identified with
its points. The complaint is then that a space is not just made up of its points but these points
are connected by \emph{ideal} structure.\footnote{See also §254b and §256b in \emph{Philosophy of Nature}.}
This is precisely the approach of synthetic differential geometry.
Since the unity $\Im\dashv\&$ expresses \emph{ideality}, its opposite $\Re\dashv\Im$ expresses
\emph{reality}. A system of such modalities $\Re\dashv\Im\dashv\&$ is called \emph{differential cohesion} and
its objects \emph{elastic substance}. Notice the similarities and differences between $\Re\dashv\Im\dashv\&$
and $\textrm{∫}\dashv\flat\dashv\sharp$: in particular, both contain a kind of shape modality, but in
one it is the leftmost, in the other it is in the middle. Meanwhile, the reduction modality seems to have no
equivalent in the cohesive context. This fits with the nature of Aufhebung: we have already analyzed how the
containment $\textrm{∫}<\Im$ of the shape modality in the infinitesimal shape modality necessitates
the conclusion that the infinitesimal shape modality equalizes certain paths, it stands to reason that
similarly the containment of both $\textrm{∫}$ and $\flat$ in $\&$ implies that $\&$ is shares aspects
of both. However, $\&$ can also be understood through its position as the rightmost member in a unity of
unities, which makes it similar to $\sharp$ in that both are related to the \emph{classification} of
quantities. It has been found that certain spaces $F$ classify physical fields in the sense that a field
$\mathcal{F}$ on a space $X$ corresponds to a morphism from $X$ into a certain other type $F$, the
\emph{classifying space} for this kind of field.\footnote{This opens a very deep connection to physics that we
can only mention in passing but see \cite{dcct}.} If $F$ is the classifying space of some type of field,
then a morphism $f:X\rightarrow \& F$ corresponds to a morphism $\overline{f}:\Im X\rightarrow F$, so the
field classified by $f$ is given by the field on its infinitesimal shape $\Im X$, extended it a trivial way
to the entirety of $X$.
In this elastic structure, notions such as distance and angle can be derived, so this is the first sphere in
which Euclidean geometry exists. Furthermore, large swaths of theory that would take several semesters to
introduce in a classical manner, can elegantly be defined the using these modalities.
\subsection{Light and Matter}
Here the process extends with a \emph{left} Aufhebung of the unity $\Re\dashv\Im$:
$$
\begin{array}{cccc}
& \rightsquigarrow & \dashv & Rh
\\
& \vee & & \vee
\\
\Re & \dashv & & \Im
\end{array}
\
$$
and an opposition to the unity $\rightsquigarrow\dashv Rh$ given by an operator $\rightrightarrows$. Since
$\rightsquigarrow\dashv Rh$ is a higher sphere than $\Re\dashv\Im$, the reduction modality factors as $\Re
X\rightarrow\overset{\rightsquigarrow }{X}\rightarrow X$. Thus, $\rightsquigarrow X$ removes some of the
infinitesimal structure of $X$, but not all of it. It also follows from the definitions that the removed
infinitesimal structure is non-commutative in some way, so that our spaces are normal spaces, but have an
infinitesimal thickening that is non-commutative. In models we will demand that these non-commutative spaces
are actually super-spaces, which model spaces with two different types of particles in them, \emph{fermions}
and \emph{bosons}. The \emph{bosonic modality} $\rightsquigarrow$ strips away the fermionic part of a space,
while its negative, the \emph{fermionic modality} $\rightrightarrows$ consists of the fermionic content. The
primary differences between fermions and bosons are that bosons are massless, move at lightspeed and several
of them can be at the same place even if they have the same properties, whereas fermions have mass, can never
obtain lightspeed and no two of them can be at the same place if they otherwise have the same properties.
This leads to fermions making up matter and bosons making up forces. Thus, in the dictionary, the bosonic
modality is identified with \emph{light}, as in §220 of \emph{Philosophy of Nature} (PoN) \cite{EoS}:
\begin{quote}
Als das abstrakte Selbst der Materie ist das Licht das absolute-leichte, und als Materie ist sie unendliches Außersichsein aber als reines Manifestieren, materielle Idealität untrennbares und einfaches Außersichsein.
\end{quote}
\begin{quote}
As the abstract self of matter, light is absolutely lightweight, and as matter, infinite, but as material ideality it is inseparable and simple being outside of itself.
\end{quote}
which is a fairly good description of bosons considering only light was the only known boson at the time.
Meanwhile, the fermionic modality is identified with \emph{rigidity} as in PN§279 of PoN:
\begin{quote}
Das Dunkle, zunächst das Negative des Lichts, ist der Gegensatz gegen dessen abstrakte-identische Idealität, – der Gegensatz an ihm selbst; er hat materielle Realität und er zerfällt in sich in die Zweihet, $\alpha$) der körperlichen Verschiedenheit, d.i. des materiellen Fürsichseins, der Starrheit, $\beta$) der Entgegensetzung.
\end{quote}
\begin{quote}
Darkness, as immediately the negative of light, is the opposition to light’s abstractly identical ideality; it is this opposition in its own self. It has material reality and falls apart into a duality, namely (1) corporeal difference, i.e. material being-for-self, rigidity; (2) opposition...
\end{quote}
or, more generally, \emph{matter}.
Compare again the newly derived unity of unities to its predecessors. Like
$\textrm{∫}\dashv\flat\dashv\sharp$, and unlike $\Re\dashv\Im\dashv\&$, it consists of an opposition of an
$sp$-unity to a $ps$-unity. Again, the middle modality $\rightsquigarrow$ functions most obviously similar to
its lower counterpart, the reduction modality $\Re$. The rightmost modality in all three cases is linked to the classification of quantities. This time, the \emph{rheonomic} modality $Rh$ classifies fields on spaces $X$ that
are trivially extended from the bosonic sub-space $\rightarrow X$ to the entirety of $X$.
\subsection{\emph{Wesen} opposing itself}\label{Wesen}
The calculus of unities might perhaps be extended further. In any case, the Aufhebung of \emph{all} unities
of opposites is given by the unity of oppositions of the identity with itself: $id\dashv id$, with $id\ X=X$.
This is identified with the \emph{opposition of the \emph{Wesen} to itself}, as in §812:
\begin{quote}
Das Wesen aber, wie es hier geworden ist, ist das, was es ist, nicht durch eine ihm fremde Negativität, sondern durch seine eigne, die unendliche Bewegung des Seyns. Es ist An-und-Fürsichseyn; absolutes Ansichseyn, indem es gleichgültig gegen alle Bestimmtheit des Seyns ist, das Andersseyn und die Beziehung auf anderes schlechthin aufgehoben worden ist.
\end{quote}
\begin{quote}
But essence as it has here come to be, is what it is, through a negativity which is not alien to it but is its very own, the infinite movement of being. It is being that is in itself and for itself; it is absolute being-in-itself in that it is indifferent to every determinateness of being, and otherness and relation-to-other have been completely sublated.
\end{quote}
This is the last stage of the process before it becomes externalized. We will treat this in the next section.
\section{Nature}
This system of modal type theory is now identified with Hegel's \emph{Idee} (idea) as in §1631:
\begin{quote}
Die Idee ist der adäquate Begriff, das objektive Wahre oder das Wahre als solches. Wenn irgend etwas
Wahrheit hat, hat es sie durch seine Idee, oder etwas hat nur Wahrheit, insofern es Idee ist.
\end{quote}
\begin{quote}
The Idea is the adequate Notion, that which is objectively true, or the true as such. When anything
whatever possesses truth, it possesses it through its Idea, or, something possesses truth only in so far
as it is Idea.
\end{quote}
This idea is then externalized into a model, meaning an $\infty$-topos that satisfies its true propositions.
Such a model is identified with \emph{Nature} as in
\begin{quote}
Die Natur hat sich als die Idee in der Form des Andersseins ergeben. Da die Idee so als das Negative
ihrer selbst oder sich äußerlich ist, so ist die Natur nicht äußerlich nur relativ gegen diese Idee (und
gegen die subjektive Existenz derselben, den Geist), sondern die Äußerlichkeit macht die Bestimmung aus,
in welcher sie als Natur ist.
\end{quote}
\begin{quote}
Nature has presented itself as the Idea in the form of otherness. Since therefore the Idea is the
negative of itself, or is external to itself Nature is not merely external in relation to this Idea (and
to its subjective existence Spirit); the truth is rather that externality constitutes the specific character