-
Notifications
You must be signed in to change notification settings - Fork 0
/
Algebra.tex
3764 lines (3400 loc) · 156 KB
/
Algebra.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[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{mathtools}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsthm}
%\usepackage{csquotes}
\usepackage{amsfonts}
\usepackage[ngerman]{babel}
\usepackage[linesnumbered,ruled]{algorithm2e}
\usepackage[hidelinks]{hyperref}
\usepackage{graphicx}
\usepackage{ulem}
\usepackage{icomma}
\usepackage{bbm}
\usepackage{eufrak}
\usepackage{upgreek}
\usepackage{bm}
\usepackage{fix-cm}
\usepackage{capt-of}
\usepackage{float}
\usepackage{mathtools}
\usepackage{tikz}
\usetikzlibrary{datavisualization}
\usetikzlibrary{datavisualization.formats.functions}
%\usepackage{geometry}
%\geometry{left=47.2mm, right=47.2mm, top=44mm}
\relpenalty=10000
\binoppenalty=10000
\usepackage{stackengine,scalerel,graphicx,amssymb,amsmath,wasysym}
%New sum symbols
\DeclareMathOperator*{\Sigmacirc}{%
\ThisStyle{\mathop{\ensurestackMath{\stackinset{c}{-0.75\LMpt}{c}{}{%
\rotatebox[origin=lb]{-90}{$\circ$}}{\SavedStyle\Sigma}}}}}
\DeclareMathOperator*{\sumcirc}{%
\ThisStyle{\mathop{\ensurestackMath{\stackinset{c}{-1.5\LMpt}{c}{}{%
\rotatebox[origin=lb]{-90}{$\SavedStyle\scalerel*{\bm\Circle}{%
i}$}}{\SavedStyle\sum}}}}}
\DeclareMathOperator*{\sumbar}{\overline{\sum}}
\newcommand{\algebra}{\mathbin{
\mathchoice
{\mbox{\normalsize\textcircled{\scriptsize A}}}
{\mbox{\normalsize\textcircled{\scriptsize A}}}
{\mbox{\scriptsize\textcircled{\tiny A}}}
{\mbox{\tiny\textcircled{\fontsize{3.5}{3.5}\selectfont A}}}
}
}
\newcommand{\mink}{\mathbin{
\mathchoice
{\mbox{\normalsize\textcircled{\scriptsize M}}}
{\mbox{\normalsize\textcircled{\scriptsize M}}}
{\mbox{\scriptsize\textcircled{\tiny M}}}
{\mbox{\tiny\textcircled{\fontsize{3.5}{3.5}\selectfont M}}}
}
}
\begin{document}
\SetArgSty{textnormal}
\newtheorem{theorem}{Satz}
\numberwithin{theorem}{section}
\newtheorem{lemma}{Lemma}
\numberwithin{lemma}{section}
\newtheorem{corollary}{Korollar}
\numberwithin{corollary}{section}
\theoremstyle{remark}
\newtheorem{example}{Beispiel}
\numberwithin{example}{section}
\theoremstyle{definition}
\newtheorem{definition}{Definition}
\numberwithin{definition}{section}
\theoremstyle{remark}
\newtheorem{remark}{Anmerkung}
\numberwithin{remark}{section}
\begin{titlepage}
\title{Methoden angewandter Algebra 1/2}
\date{\today}
\author{Alex Ivliev}
\maketitle
\end{titlepage}
\tableofcontents
\newpage
\section{allgemeine Definitionen}
\begin{definition}
Die Menge der natürlichen Zahlen ist ${\mathbb{N} = \{0, 1, 2, ...\}}$.
\end{definition}
\begin{definition}
Es sei $\mathbbm{2} = \{0, 1\}$.
\end{definition}
\begin{definition}
Für eine natürliche Zahl $n$ ist $[n] = \{1, 2, ..., n\}$.
\end{definition}
\begin{definition}
Die Menge $[0, \infty]$ ist definiert als $[0, \infty] = \mathbb{R}_{\geq 0} \cup \{\infty\}$.
\end{definition}
\begin{definition}
Sei $M$ eine Menge.
Dann ist $m \mathrel{\subseteq_\text{fin}} M$, falls $m \subseteq M$ und $m$ endlich ist.
\end{definition}
\begin{definition}
Sei $M$ eine Menge.
Dann ist $\mathcal{P}(M) = \{m \mid m \subseteq M\}$
die Menge aller Teilmengen von $M$.
\end{definition}
\begin{definition}
Sei $M$ eine Menge und $n$ eine natürliche Zahl. Dann ist
\begin{equation*}
\binom{M}{n} = \{m \subseteq M \mid |m| = n\}.
\end{equation*}
\end{definition}
\begin{definition}
Sei $f \colon A \to B$ eine Abbildung zwischen zwei Mengen $A$ und $B$.
Sei weiterhin $b \in B$ ein Element aus der Zielmenge.
Dann ist
\begin{equation*}
f^{-1}(b) = \{ a \in A \mid f(a) = b \}.
\end{equation*}
\end{definition}
\begin{definition}
Sei $f \colon A \to B$ eine Abbildung zwischen zwei Mengen $A$ und $B$.
Dann bezeichet $f^{\langle -1 \rangle}$ die Umkehrabbildung von $f$.
\end{definition}
\begin{definition}
Sei $f \colon A \to B$ eine Abbildung.
Dann ist
\begin{equation*}
f(A) = \{b \in B \mid \exists a \in A \colon f(a) = b\}.
\end{equation*}
\end{definition}
\begin{definition}
Eine Abbildung $f \colon A \to B$ heißt konstant, falls
\begin{equation*}
\forall a \in A \colon f(a) = b
\end{equation*}
für ein Element $b \in B$.
\end{definition}
\begin{definition}
Das Tripel $\mathbb{M} = (M, *, \varepsilon)$ heißt Monoid, falls
$M$ eine beliebige Menge, $* \colon M \times M \to M$ eine innere zweistellige Verknüpfung und
$\varepsilon \in M$ ist und zusätzlich folgende Eigenschaften gelten:
\begin{itemize}
\item Assoziativität: $\forall a,b,c \in M \colon (a * b) * c = a * (b * c)$
\item neutrales Element: $\forall m \in M \colon \varepsilon * m = m = m * \varepsilon$
\end{itemize}
$M$ wird dabei die Grundmenge des Monoids genannt. Gilt darüber hinaus noch
\begin{itemize}
\item Kommutativität: $\forall a,b \in M \colon a * b = b * a$,
\end{itemize}
dann ist $\mathbb{M}$ ein kommutatives Monoid.
\end{definition}
\begin{definition}
Seien $f \colon A \to B$ und $g \colon B \to C$ Abbildungen.
Dann ist ${g \circ f \colon A \to C, a \mapsto g(f(a))}$ die kontravariante Verkettung von $(f, g)$.
Dagegen bezeichnet man $f \bullet g \colon A \to C, a \mapsto g(f(a))$ als die kovariante Verkettung von $(f, g)$.
Es gilt also $g \circ f = f \bullet g$.
\end{definition}
\begin{definition}
Ist $\alpha \colon I \to S$ eine Funktion zwischen zwei Mengen $I$ und $S$,
so ist
\begin{equation*}
\alpha_i = \alpha(i).
\end{equation*}
\end{definition}
\begin{definition}
Sei $P$ eine Menge und $R \subseteq P \times P$ eine Relation auf dieser Menge.
Dann ist das Paar $\mathbb{P} = (P, R)$ ein binäres Relat.
Für $(p, q) \in R$ schreibe auch $p \mathrel{R} q$.
\end{definition}
\begin{definition}
Ein binäres Relat $\mathbb{P} = (P, R)$ heißt Präordnung, falls folgende Eigenschaften gelten:
\begin{itemize}
\item Reflexivität: $\forall p \in P \colon p \mathrel{R} p$
\item Transitivität: $\forall p, t, q \in P \colon p \mathrel{R} t \wedge t \mathrel{R} q \implies p \mathrel{R} q$
\end{itemize}
$\mathbb{P}$ heißt Ordnung (partiell geordnete Menge),
falls zusätzlich folgende Eigenschaft gilt:
\begin{itemize}
\item Antisymmetrie: $\forall p, q \in P \colon p \mathrel{R} q \wedge q \mathrel{R} p \implies p = q$
\end{itemize}
\end{definition}
\begin{example}
Sei $\Omega$ eine Menge. Dann ist $\mathbb{P} = (P, R)$ mit $P = \mathcal{P}(\Omega)$ und
$R = \{ (X, Y) \in (\mathcal{P}(\Omega))^2 \mid X \subseteq Y \}$ eine Ordnung.
Diese Ordnung soll mit $R^\Omega = (\mathcal{P}(\Omega), \subseteq)$ bezeichnet werden.
\end{example}
\begin{definition}
Es sei $M$ eine Menge von disjunkten Mengen.
Dann ist
\begin{equation*}
\mathop{\dot{\bigcup}} M = \bigcup M.
\end{equation*}
\end{definition}
\newpage
\section{Inzidenzstrukturen}
\begin{definition}
Es seien $P$, $B$ und $I$ Mengen, wobei $I \subseteq P \times B$.
Das Tripel $\mathcal{I} = (P, B, I)$ heißt Inzidenzstruktur.
Die Menge $P$ wird als Menge von Punkten interpretiert und $B$ als Menge von Blöcken.
Gilt $(p, b) \in I$ für ein $p \in P$ und ein $b \in B$, so schreibe $p \mathrel{I} b$.
\end{definition}
\begin{example}[Würfel]\label{Example_InzidenzstrukturWuerfel}
Bei einem Würfel ist $P$ die Menge der 8 Ecken und $B$ die Menge der 6 Seiten.
Es gilt $p \mathrel{I} b$ für ein $p \in P$ und ein $b \in B$
genau dann wenn $p$ eine Ecke der Seite $b$ ist.
\end{example}
\begin{definition}
Eine Inzidenzstruktur $(P, B, I)$ heißt endlich falls $P$ und $B$ (und daher $I$) endlich sind.
\end{definition}
\begin{definition}
Für eine Inzidenzstruktur $(P, B, I)$ und ein Element $p \in P$ ist weiterhin $pI = \{b \in B \mid p \mathrel{I} b\}$
die Menge aller Blöcke, die mit $p$ inzidieren.
Für ein Element $b \in B$ ist $Ib = \{p \in P \mid p \mathrel{I} b\}$ die Menge alle Punkte,
die mit $b$ inzidieren.
\end{definition}
\begin{definition}
Eine Inzidenzstruktur $\mathcal{I} = (P, B, I)$ heißt taktische Konfiguration mit den Parametern $(v, r, b, k) \in \mathbb{N}^4$,
falls folgende Bedingungen gelten:
\begin{itemize}
\item $|P| = v$ und $|B| = b$
\item $\forall p \in P \colon |pI| = r$
\item $\forall b \in B \colon |Ib| = k$
\end{itemize}
\end{definition}
\begin{example}[Würfel]
Die Inzidenzstruktur des Würfels aus Beispiel \ref{Example_InzidenzstrukturWuerfel}
ist eine taktische Konfiguration mit Parametern $(8, 3, 6, 4)$.
\end{example}
\begin{theorem}[Doppelte Abzählung]\label{Theorem_DoppelteAbzaehlung}
Sei $\mathcal{I} = (P, B, I)$ eine endliche Inzidenzstruktur.
Dann gilt
\begin{equation*}
\sum_{p \in P} |pI| = \sum_{b \in B} |Ib|.
\end{equation*}
\end{theorem}
\begin{proof}
Es gilt
\begin{equation*}
\mathop{\dot{\bigcup}} \{\{p\} \times pI \mid p \in P\} = I = \mathop{\dot{\bigcup}} \{ Ib \times \{b\} \mid b \in B\}
\end{equation*}
und daher
\begin{equation*}
\sum_{p \in P} |pI| = |I| = \sum_{b \in B} |Ib|.
\end{equation*}
\end{proof}
\begin{theorem}
Ist $\mathcal{I} = (P, B, I)$ eine endliche taktische Konfiguration mit Parametern $(v, r, b, k)$,
dann gilt:
\begin{equation*}
v \cdot r = b \cdot k.
\end{equation*}
\end{theorem}
\begin{proof}
Mithilfe von Satz \ref{Theorem_DoppelteAbzaehlung} ergibt sich folgende Gleichungskette:
\begin{align*}
v \cdot r = \sum_{p \in P} r &= \sum_{p \in P} |pI| \\
&= \sum_{b \in B} |Ib| = \sum_{b \in B} k = b \cdot k.
\end{align*}
\end{proof}
\begin{definition}
Sei $\mathcal{I} = (P, B, I)$ eine Inzidenzstruktur.
Die Inzidenzstruktur ${\mathcal{I}^{-1} = (B, P, I^{-1})}$
mit ${I^{-1} = \{(b, p) \in {B \times P} \mid p \mathrel{I} b\}}$
ist die zu $\mathcal{I}$ duale Inzidenzstruktur.
\end{definition}
\begin{theorem}
Eine Inzidenzstruktur $\mathcal{I} = (P, B, I)$ ist genau dann eine taktische Konfiguration,
wenn $\mathcal{I}^{-1} = (P^{-1}, B^{-1}, I^{-1})$ auch eine ist, wobei $P^{-1} = B$ und $B^{-1} = P$.
\end{theorem}
\begin{proof}
Sei $\mathcal{I}$ eine taktische Konfiguration mit Parametern $(v, r, b, k)$.
Laut Definition gilt daher:
\begin{itemize}
\item $|P| = v$ und $|B| = b$
\item $\forall p \in P \colon |pI| = r$
\item $\forall b \in B \colon |Ib| = k$
\end{itemize}
Für $\mathcal{I}^{-1}$ ergeben sich folgende Parameter:
\begin{itemize}
\item $|P^{-1}| = |B| = b$ und $|B^{-1}| = |P| = v$
\item $\forall p^{-1} \in P^{-1} \colon |p^{-1}I^{-1}| = |Ib| = k$
\item $\forall b^{-1} \in B^{-1} \colon |I^{-1}b^{-1}| = |pI| = b$
\end{itemize}
Also ist $\mathcal{I}^{-1}$ eine taktische Konfiguration mit den Parametern $(b, k, v, r)$.
\end{proof}
\begin{example}
Der Ikosaeder ist eine taktische Konfiguration mit Parametern $(12, 5, 20, 3)$
und dual zur taktischen Konfiguration mit Parametern $(20, 3, 12, 5)$,
was dem Dodekaeder entspricht.
Der Oktaeder ist eine taktische Konfiguration mit Parametern $(6, 4, 8, 3)$
und dual zur taktische Konfiguration mit Parametern $(8, 3, 6, 4)$,
was dem Hexaeder entspricht.
\end{example}
\begin{theorem}[Dualitätsprinzip]
Es gilt für alle taktischen Konfigurationen:
Ist eine Aussage für eine dualitätsabgeschlossene Klasse von Inzidenzstrukturen wahr,
so ist sie auch für die duale Inzidenzstruktur wahr.
\end{theorem}
\begin{definition}
Seien $\mathcal{I} = (P, B, I)$ und $\mathcal{I}' = (P', B', I')$ Inzidenzstrukturen.
Weiterhin seien ${\varphi \colon P \to P'}$ und ${\psi \colon B \to B'}$ Abbildungen,
für die gilt:
\begin{equation*}
\forall p \in P \forall b \in B \colon (p \mathrel{I} b \implies \varphi(p) \mathrel{I'} \psi(b)).
\end{equation*}
Dann heißt das Abbildungspaar $(\varphi, \psi)$ Homomorphismus zwischen $\mathcal{I}$ und $\mathcal{I}'$.
Homomorphismen zwischen Inzidenzstrukturen sind inzidenzerhaltend.
\end{definition}
\begin{definition}
Ein Homomorphismus $(\varphi, \psi)$ zwischen den Inzidenzstrukturen $\mathcal{I} = (P, B, I)$
und $\mathcal{I}' = (P', B', I')$ ist (inzidenz-)reflektierend,
falls gilt:
\begin{equation*}
\forall p \in P \forall b \in B \colon (\varphi(p) \mathrel{I'} \psi(b) \implies p \mathrel{I} b).
\end{equation*}
\end{definition}
\begin{definition}
Ein reflektierender Homomorphismus $(\varphi, \psi)$ heißt Isomorphismus,
falls $\varphi$ und $\psi$ bijektiv sind.
Zwei Inzidenzstrukturen $\mathcal{I}$ und $\mathcal{I}'$ heißen isomorph zueinander,
falls zwischen ihnen ein Isomorphismus existiert.
In diesem fall schreibe $\mathcal{I} \cong \mathcal{I}'$.
\end{definition}
\begin{theorem}
Seien $\mathcal{I} = (P, B, I)$ und $\mathcal{I}' = (P', B', I')$ Inzidenzstrukturen.
Weiterhin seien ${\varphi \colon P \to P'}$ und ${\psi \colon B \to B'}$ bijektive Abbildungen.
Dann gilt: $(\varphi, \psi)$ ist ein Isomorphismus zwischen $\mathcal{I}$ und $\mathcal{I}'$ genau dann wenn
$(\varphi, \psi)$ ein Homomorphismus zwischen $\mathcal{I}$ und $\mathcal{I}'$ ist und
$(\varphi^{\langle -1 \rangle}, \psi^{\langle -1 \rangle})$ ein Homomorphismus zwischen $\mathcal{I}'$ und $\mathcal{I}$ ist.
\end{theorem}
\begin{proof}
Angenommen $(\varphi, \psi)$ ist ein Isomorphismus zwischen $\mathcal{I}$ und $\mathcal{I}'$.
Dann ist $(\varphi, \psi)$ ein reflektierender Homomorphismus, weshalb gilt:
\begin{equation*}
\forall p \in P \forall b \in B \colon (\varphi(p) \mathrel{I'} \psi(b) \implies p \mathrel{I} b)
\end{equation*}
und daher auch
\begin{equation*}
\forall p \in P \forall b \in B \colon (\varphi(p) \mathrel{I'} \psi(b) \implies \varphi^{\langle -1 \rangle}(\varphi(p)) \mathrel{I} \psi^{\langle -1 \rangle}(\psi(b))).
\end{equation*}
Zu jedem Punkt $p' \in P'$ und jedem Block $b' \in B'$ lässt sich
wegen der Bijektivität von $\varphi$ und $\psi$ jeweils genau ein Element $p \in P$
und $b \in B$ finden, sodass $\varphi(p) = p'$ bzw. $\psi(b) = b'$.
Die obige Aussage kann also wie folgt umgeschrieben werden:
\begin{equation*}
\forall p' \in P' \forall b' \in B' \colon (p' \mathrel{I'} b' \implies \varphi^{\langle -1 \rangle}(p') \mathrel{I} \psi^{\langle -1 \rangle}(b')).
\end{equation*}
Somit ist $(\varphi^{\langle -1 \rangle}, \psi^{\langle -1 \rangle})$ ein Homomorphismus zwischen $\mathcal{I}'$ und $\mathcal{I}$.
Nun sei angenommen, dass $(\varphi, \psi)$ und $(\varphi^{\langle -1 \rangle}, \psi^{\langle -1 \rangle})$ Homomorphismen sind.
Das heißt es gilt
\begin{equation*}
\forall p' \in P' \forall b' \in B' \colon (p' \mathrel{I}' b' \implies \varphi^{\langle -1 \rangle}(p') \mathrel{I} \psi^{\langle -1 \rangle}(b')).
\end{equation*}
Analog zum ersten Teil des Beweises lässt sich die Aussage wie folgt umschreiben:
\begin{equation*}
\forall p \in P \forall b \in B \colon (\varphi(p) \mathrel{I}' \psi(b) \implies \varphi^{\langle -1 \rangle}(\varphi(p)) \mathrel{I} \psi^{\langle -1 \rangle}(\psi(b))).
\end{equation*}
Also ist $(\varphi, \psi)$ reflektierend und somit ein Isomorphismus.
\end{proof}
\begin{theorem}
Seien $\mathcal{I}, \mathcal{I}', \mathcal{I}''$ Inzidenzstrukturen.
Sei weiterhin $(\varphi, \psi)$ ein Homomorphismus zwischen $\mathcal{I}$ und $\mathcal{I}'$
und $(\varphi', \psi')$ ein Homomorphismus zwischen $\mathcal{I}'$ und $\mathcal{I}''$.
Dann ist $(\varphi' \circ \varphi, \psi' \circ \psi)$ ein Homomorphismus
zwischen $\mathcal{I}$ und $\mathcal{I}''$.
\end{theorem}
\begin{proof}
Laut Definition gelten folgende Aussagen:
\begin{equation*}
\forall p \in P \forall b \in B \colon (p \mathrel{I} b \implies \varphi(p) \mathrel{I'} \psi(b)).
\end{equation*}
und
\begin{equation*}
\forall p' \in P' \forall b' \in B' \colon (p' \mathrel{I'} b' \implies \varphi'(p') \mathrel{I''} \psi'(b')).
\end{equation*}
Da $\varphi(p) \in P'$ und $\psi(b) \in B'$ folgt aus $p \mathrel{I} b$ für alle $p \in P$ und alle $b \in B$:
\begin{equation*}
\varphi'(\varphi(p)) \mathrel{I''} \psi'(\psi(b)) = (\varphi' \circ \varphi)(p) \mathrel{I''} (\psi' \circ \psi)(b).
\end{equation*}
Also ist $(\varphi' \circ \varphi, \psi' \circ \psi)$ ein Homomorphismus
zwischen $\mathcal{I}$ und $\mathcal{I}''$.
\end{proof}
\begin{definition}
Sei $\mathcal{I}$ eine Inzidenzstruktur.
$\mathcal{I}$ heißt selbstdual, falls $\mathcal{I} \cong \mathcal{I}^{-1}$.
\end{definition}
\begin{definition}
Gegeben seien drei natürliche Zahlen $i, j, k$ mit $i \leq j \leq n$.
Dann ist ${\mathcal{I}^n_{i, j} = (\binom{[n]}{i}, \binom{[n]}{j}, \subseteq)}$ die sogenannte kombinatorische taktische Konfiguration
mit den Parametern $(\binom{n}{i}, \binom{n - i}{j - i}, \binom{n}{j}, \binom{j}{i})$.
\end{definition}
\begin{theorem}
Seien $i, j, k \in \mathbb{N}$ mit $i \leq j \leq n$.
Dann ist $\mathcal{I}^n_{i, j}$ eine taktische Konfiguration
mit den Parametern $(\binom{n}{i}, \binom{n - i}{j - i}, \binom{n}{j}, \binom{j}{i})$
\end{theorem}
\begin{proof}
Sei $I \in \binom{[n]}{i}$ und $J \in \binom{[n]}{j}$.
Dann ist $I \subseteq J$ genau dann wenn $J$ alle Elemente von $I$ enthält
und zusätzlich $|J| - |I|$ weitere aus $[n] \setminus I$.
Das heißt $I$ ist Teilmenge von $|\binom{[n] \setminus I}{j - i}| = \binom{n - i}{j - i}$ Mengen.
Umgekehrt ist $J$ Obermenge von allen $i$-elementigen Teilmengen von $J$,
von denen es $|\binom{J}{i}| = \binom{j}{i}$ viele gibt.
\end{proof}
\begin{theorem}
Sei $\mathcal{I}^n_{i, n - i}$ mit $i \leq \frac{n}{2}$ eine kombinatorische taktische Konfiguration.
Dann ist $\mathcal{I}^n_{i, n - i}$ selbstdual.
\end{theorem}
\begin{proof}
Sei $\varphi \colon \binom{[n]}{i} \to \binom{[n]}{n - i}, X \mapsto [n] \backslash X$ eine bijektive Abbildung.
Seien weterhin $I \in \binom{[n]}{i}$ und $J \in \binom{[n]}{n - i}$ Mengen
mit $I \subseteq J$.
Das heißt für alle $i \in I$ gilt
\begin{equation*}
i \in I \implies i \in J.
\end{equation*}
Die Kontraposition lautet
\begin{equation*}
i \notin J \implies i \notin I,
\end{equation*}
was äquivalent ist zu
\begin{equation*}
i \in [n] \setminus J \implies i \in [n] \setminus I
\iff i \in \varphi^{\langle -1 \rangle}(J) \implies i \in \varphi(I),
\end{equation*}
also $\varphi(I) \supseteq \varphi^{\langle -1 \rangle}(J)$.
Das selbe Argument kann auch verwendet werden, um zu zeigen,
dass aus $J \supseteq I$ folgt, dass $\varphi^{\langle -1 \rangle}(J) \subseteq \varphi(I)$,
womit gezeigt ist,
dass das Abbildungspaar $(\varphi, \varphi^{\langle -1 \rangle})$ ein Isomorphismus
zwischen $\mathcal{I}^n_{i, n - i}$ und $(\mathcal{I}^n_{i, n - i})^{-1}$ ist.
\end{proof}
\begin{example}[Tetraeder]
Kombinatorische Beschreibung eines Tetraeders lautet:
${\mathcal{I}^4_{1, 3} = (\binom{[4]}{1}, \binom{[4]}{3}, \subseteq)}$.
Die duale Inzidenzstruktur ist: $(\binom{[4]}{3}, \binom{[4]}{1}, \supseteq)$.
Der Isomorphismus $(\varphi, \psi)$ ist gegeben durch
${\varphi \colon \binom{[4]}{1} \to \binom{[4]}{3}, x \mapsto \overline{x}}$
und weiterhin ${\psi \colon \binom{[4]}{3} \to \binom{[4]}{1}, x \mapsto \overline{x}}$.
\end{example}
\newpage
\begin{example}[Desargues-Konfiguration]
\begin{figure}
\centering {\includegraphics[width=.5\textwidth,height=.5\textheight,keepaspectratio]{DesarguesConfiguration.png}}
\caption{Desargues-Konfiguration}
\label{fig:Desargues}
\end{figure}
Die Inzidenzstruktur ist gegeben durch ${\mathcal{I}^5_{2, 3} = (\binom{[5]}{2}, \binom{[5]}{3}, \subseteq)}$.
Die Desargues-Konfi-guration ist selbstdual und hat 10 Punkte (Die Punkte $A, B, C, a, b, c$, das Zentrum der Perspektive und die drei Punkte, die auf der roten Linie liegen)
und 10 Blöcke (Die 6 Linien der zwei Dreiecke, die 3 Linien, die sich im Zentrum der Perspektive treffen und die Achse der Perspektive).
In der dazu dualen Konfiguration sind Achse und Zentrum der Perspektive getauscht.
\end{example}
\newpage
\section{Summation}
\begin{definition}
Das Paar $(S, \Sigma)$ heißt [finitäre] Summationsstruktur, falls $\Sigma$ eine Abbildungsvorschrift
(Klassenabbildung) ist, die jeder Abbildung $\alpha \colon I \to S$ mit beliebiger [endlicher] Definitionsmenge $I$
genau ein Element $\Sigma(\alpha)$ aus $S$ zuordnet, sodass gilt:
\begin{itemize}
\item Fundierungsaxiom: Ist $\alpha \colon \{ i \} \to S$, so gilt $\Sigma(\alpha) = \alpha(i)$.
\item Teilsummenaxiom: Sind $\alpha \colon I \to S$ und $\eta \colon I \to A$ Abbildungen [$A$ und $I$ endlich],
so gilt für die Abbildung $\beta \colon A \to S, a \mapsto \Sigma(\alpha_{\mid \eta^{-1}(a)})$
stets:
\begin{equation*}
\Sigma(\beta) = \Sigma(\alpha).
\end{equation*}
\end{itemize}
Die Menge $S$ wird Grundmenge der Summationsstruktur genannt.
\end{definition}
\begin{definition}
Sei $(S, \Sigma)$ eine [finitäre] Summationsstruktur und ${\alpha \colon I \to S}$
eine beliebige Abbildung [$I$ endlich].
So ist folgende Schreibweise definiert
\begin{equation*}
\sum_{i \in I} \alpha(i) = \Sigma(\alpha).
\end{equation*}
\end{definition}
\begin{theorem}
Sei $\Omega$ eine Menge. Dann ist $(\mathcal{P}(\Omega), \bigcup)$ eine Summationsstruktur,
wobei für jede Abbildung $\alpha \colon I \to \mathcal{P}(\Omega)$ die Summation über $\alpha$ wie folgt
definiert ist:
\begin{equation*}
\bigcup \alpha = \{ x \in \Omega \mid \exists i \in I \colon x \in \alpha(i) \}.
\end{equation*}
\end{theorem}
\begin{proof}
Sei $\alpha \colon \{ i' \} \to \mathcal{P}(\Omega)$ eine Abbildung.
Es ist
\begin{equation*}
\bigcup \alpha = \{ x \in \Omega \mid \exists i \in \{i'\} \colon x \in \alpha(i) \}
= \alpha(i').
\end{equation*}
Also gilt das Fundierungsaxiom.
Seien nun $\alpha \colon I \to \mathcal{P}(\Omega)$ und $\eta \colon I \to A$ Abbildungen.
Dann gilt für die Abbildung
$\beta \colon A \to \mathcal{P}(\Omega), a \mapsto \bigcup \alpha_{\mid \eta^{-1}(a)}$:
\begin{align*}
\beta(a) &= \{ x \in \Omega \mid \exists i \in \eta^{-1}(a) \colon x \in \alpha(i) \}.\\
\bigcup \beta &= \{ x \in \Omega \mid \exists a \in A \colon x \in \beta(a) \}\\
&= \{ x \in \Omega \mid \exists a \in A \exists i \in \eta^{-1}(a) \colon x \in \alpha(i) \}\\
&= \{ x \in \Omega \mid \exists i \in I \colon x \in \alpha(i) \}\\
&= \bigcup \alpha.
\end{align*}
Also gilt auch das Teilsummenaxiom.
\end{proof}
\begin{theorem}[Invarianz der Summation gegenüber Umbenennung]
Sei $(S, \Sigma)$ eine [finitäre] Summationsstruktur.
Sei außerdem $\alpha \colon I \to S$ eine Abbildung
und sei $\tau \colon H \to I$ eine Bijektion [$I$ endlich].
Dann gilt:
\begin{equation*}
\Sigma(\alpha \circ \tau) = \Sigma(\alpha).
\end{equation*}
\end{theorem}
\begin{proof}
Sei $\eta = \tau^{-1}$ eine Abbildung von $I$ nach $H$.
Weiterhin sei eine Abbildung $\beta \colon H \to S, h \mapsto \Sigma(\alpha_{\mid \{\eta^{-1}(h) \}})$ definiert.
Aus dem Fundierungsaxiom folgt dann
\begin{align*}
\beta(h) = \Sigma(\alpha_{\mid \{ \tau(h) \}}) = \alpha(\tau(h)) = (\alpha \circ \tau)(h).
\end{align*}
Also ist $\beta = {\alpha \circ \tau}$.
Weiterhin gilt laut Teilsummenaxiom $\Sigma(\beta) = \Sigma(\alpha)$ und damit $\Sigma({\alpha \circ \tau}) = \Sigma(\alpha)$.
\end{proof}
\begin{definition}
Sei $\mathbb{S} = (S, \Sigma)$ eine Summationsstruktur.
Dann ist
\begin{equation*}
0_\mathbb{S} = \Sigma(\emptyset \to S).
\end{equation*}
\end{definition}
\begin{definition}
Sei $\mathbb{S} = (S, \Sigma)$ eine Summationsstruktur.
Dann ist für beliebige Abbildungen $\alpha \colon I \to S$
\begin{equation*}
\text{supp}_\mathbb{S}(\alpha) = \{i \in I \mid \alpha(i) \neq 0_\mathbb{S}\}
\end{equation*}
der Support von $\alpha$ in $\mathbb{S}$.
\end{definition}
\begin{theorem}
Sei $\mathbb{S} = (S, \Sigma)$ eine Summationsstruktur.
Dann gilt für alle Abbildungen $\alpha \colon I \to S$
\begin{equation*}
\Sigma(\alpha_{\mid \text{supp}_\mathbb{S}(\alpha)}) = \Sigma(\alpha).
\end{equation*}
\end{theorem}
\begin{proof}
Es seien die Abbildungen $\alpha' = \alpha_{\mid \text{supp}(\alpha)}$,
$\eta \colon \text{supp}_\mathbb{S}(\alpha) \to I, i \mapsto i$
sowie $\beta \colon I \to S, i \mapsto \Sigma(\alpha'_{\mid \eta^{-1}(i)})$ gegeben.
Dann ist für ein $i \in I$
\begin{align*}
\beta(i) &= \begin{cases}
\alpha'(i) = \alpha(i) & \text{falls } i \in \text{supp}(\alpha) \\
0_\mathbb{S} & \text{sonst}
\end{cases} \\
&= \alpha(i).
\end{align*}
Aus dem Teilsummenaxiom folgt nun
\begin{equation*}
\Sigma(\alpha_{\mid \text{supp}(\alpha)})
= \Sigma(\alpha')
= \Sigma(\beta)
= \Sigma(\alpha).
\end{equation*}
\end{proof}
\begin{corollary}\label{Korollar_SumStrukturNeutral}
Ist $\alpha \colon I \to S, i \mapsto 0_\mathbb{S}$ eine konstante Funktion.
So gilt
\begin{equation*}
\Sigma(\alpha) = 0_\mathbb{S}.
\end{equation*}
\end{corollary}
\begin{proof}
Wie soeben gezeigt gilt
\begin{equation*}
\Sigma(\alpha)
= \Sigma(\alpha_{\mid \text{supp}(\alpha)})
= \Sigma(\alpha_{\mid \emptyset})
= 0_\mathbb{S}.
\end{equation*}
\end{proof}
\begin{definition}
Sei $\mathbb{S} = (S, \Sigma)$ eine [finitäre] Summationsstruktur und $N$ eine Menge.
Dann ist $\mathbb{S}^N = (S^N, \bar\Sigma)$ die $N$-fache Potenz von $\mathbb{S}$,
wobei $\bar\Sigma$ für jede Abbildungsfamilie $(\alpha_i)_{i \in I} \in (S^N)^I$
($I$ [endliche] Menge) wie folgt definiert ist:
\begin{equation*}
\overline{\sum_{i \in I}} \alpha_i \colon N \to S, n \mapsto \sum_{i \in I}\alpha_i(n).
\end{equation*}
\end{definition}
\begin{theorem}\label{Theorem_OmegaPotenzSumStruktur}
Ist $\mathbb{S} = (S, \Sigma)$ eine Summationsstruktur und $N$ eine Menge.
So ist auch $\mathbb{S}^N = (S^N, \bar\Sigma)$ eine Summationsstruktur.
\end{theorem}
\begin{proof}
Sei $\alpha \colon \{i\} \to S^N$ eine Abbildung.
Da das Fundierungsaxiom in $\mathbb{S}$ gilt,
ist $\bar\Sigma(\alpha) \colon N \to S, n \mapsto \alpha_i(n)$
und somit $\bar\Sigma(\alpha) = \alpha(i)$.
Also gilt das Fundierungsaxiom in $\mathbb{S}^N$.
Seien nun $\alpha \colon I \to S^N$,
$\eta \colon I \to A$
und $\beta \colon A \to S^N, a \mapsto \bar\Sigma(\alpha_{\mid \eta^{-1}(a)})$ Abbildungen.
Dann gilt für alle $n \in N$:
\begin{align*}
(\bar\Sigma(\beta))(n) &= \sum_{a \in A}(\beta(a))(n) \\
&= \sum_{a \in A}(\bar\Sigma(\alpha_{\mid \eta^{-1}(a)}))(n) \\
&= \sum_{a \in A}\sum_{i \in \eta^{-1}(a)}(\alpha(i))(n) \\
&= \sum_{i \in I}(\alpha(i))(n) \\
&= (\bar\Sigma(\alpha))(n),
\end{align*}
wobei die vorletzte Gleichung aus dem Teilsummenaxiom für $\mathbb{S}$ folgt.
\end{proof}
\begin{definition}
Sei $\mathbb{S} = (S, \Sigma)$ eine finitäre Summationsstruktur und $N$ eine Menge.
Dann ist $\mathbb{S}^{(N)} = (S^{(N)}, \bar\Sigma)$ die $N$-fache Kopotenz von $\mathbb{S}$,
wobei
\begin{equation*}
S^{(N)} = \{s \in S^N \mid \text{supp}_\mathbb{S}(s) \text{ endlich}\}
\end{equation*}
und $\bar\Sigma$ für jede Abbildungsfamilie $(\alpha_i)_{i \in I} \in (S^{(N)})^I$
($I$ endliche Menge) wie folgt definiert ist
\begin{equation*}
\overline{\sum_{i \in I}} \alpha_i \colon N \to S, n \mapsto \sum_{i \in I}\alpha_i(n).
\end{equation*}
\end{definition}
\begin{theorem}\label{Theorem_OmegaKopotenzSumStruktur}
Ist $\mathbb{S} = (S, \Sigma)$ eine Summationsstruktur und $N$ eine Menge.
So ist $\mathbb{S}^{(N)} = (S^{(N)}, \bar\Sigma)$ eine finitäre Summationsstruktur.
\end{theorem}
\begin{proof}
Das Gelten von Fundierungs- und Teilsummenaxiom lassen sich analog zu Satz \ref{Theorem_OmegaPotenzSumStruktur} beweisen.
An dieser Stelle soll daher lediglich gezeigt werden,
dass für alle Abbildungen $\alpha \in (S^{(N)})^I$
mit endlicher Indexmenge $I$ gilt,
dass $\text{supp}_\mathbb{S}(\bar\Sigma(\alpha))$ endlich ist,
d.h. $\bar\Sigma(\alpha) \in S^{(N)}$.
Der Support von $\bar\Sigma(\alpha)$ ist
\begin{equation*}
\text{supp}_\mathbb{S} \bigg( \overline{\sum_{i \in I}} \alpha_i \bigg)
= \{n \in N \mid \sum_{i \in I} \alpha_i(n) \neq 0_\mathbb{S}\}.
\end{equation*}
Ist $N$ endlich folgt die Aussage daher sofort.
Sei $N$ also eine unendliche Menge.
Aus Korollar \ref{Korollar_SumStrukturNeutral} folgt,
dass für alle $n \in \text{supp}_\mathbb{S}(\bar\Sigma(\alpha))$
ein $i \in I$ existieren muss, sodass $\alpha_i(n) \neq 0_\mathbb{S}$.
Für einen Widerspruch sei angenommen
$\text{supp}_\mathbb{S}(\bar\Sigma(\alpha))$ wäre unendlich.
Da $I$ aber eine endliche Menge ist,
muss es ein $j \in I$ gegeben,
sodass $\alpha_j(n) \neq 0_\mathbb{S}$ für unendlich viele $n \in N$.
Dies widerspricht aber der Voraussetzung,
dass $\alpha_j \in S^{(N)}$.
\end{proof}
\begin{definition}
Seien $\mathbb{S} = (S, \Sigma)$ und $\mathbb{S}' = (S', \Sigma')$ Summationsstrukturen.
Dann heißt eine Abbildung $\varphi \colon S \to S'$ Homomorphismus von $\mathbb{S}$ nach $\mathbb{S}'$,
falls für jede Abbildung $\alpha \colon I \to S$ stets gilt:
\begin{equation*}
\varphi(\Sigma(\alpha)) = \Sigma'(\varphi \circ \alpha).
\end{equation*}
Ein bijektiver Homomorphismus wird Isomorphismus genannt.
\end{definition}
\begin{theorem}
Seien $\mathbb{S} = (S, \Sigma)$, $\mathbb{S}' = (S', \Sigma')$ und $\mathbb{S}'' = (S'', \Sigma'')$ Summationsstrukturen.
Seien weiterhin $\varphi \colon S \to S'$ und $\varphi' \colon S' \to S''$ Homomorphismen.
Dann ist $\varphi' \circ \varphi \colon S \to S''$ ein Homomorphismus von $\mathbb{S}$ nach $\mathbb{S}''$.
\end{theorem}
\begin{proof}
Für eine Abbildung $\alpha \colon I \to S$ gilt:
\begin{align*}
(\varphi' \circ \varphi)(\Sigma(\alpha)) &= \varphi'(\varphi(\Sigma(\alpha))) \\
&= \varphi'(\Sigma'(\varphi \circ \alpha))
= \Sigma''((\varphi' \circ \varphi) \circ \alpha).
\end{align*}
\end{proof}
\begin{definition}
Sei $\mathbb{S}$ eine Summationsstruktur.
Ein Homomorphismus von $\mathbb{S}$ nach $\mathbb{S}$ heißt Endomorphismus von $\mathbb{S}$.
$\text{End}_\mathbb{S}$ bezeichnet die Menge aller Endomorphismen auf $\mathbb{S}$.
\end{definition}
\begin{definition}
Eine [finitäre] Summationsstruktur $(S, \Sigma)$ heißt idempotent, falls für jede konstante Abbildung
$\alpha \colon I \to S$ [wobei $I$ endlich] gilt:
\begin{equation*}
\forall i \in I \colon \Sigma(\alpha) = \alpha(i).
\end{equation*}
\end{definition}
\begin{theorem}\label{Theorem_IdempotentSurjektion}
Sei $(S, \Sigma)$ eine Summationsstruktur. Dann ist $(S, \Sigma)$ genau dann idempotent,
wenn für jede Abbildung $\alpha \colon I \to S$ und jede surjektive Abbildung $\tau \colon H \to I$ gilt:
$\Sigma(\alpha \circ \tau) = \Sigma(\alpha)$.
\end{theorem}
\begin{proof}
Zunächst sei angenommen, dass $(S, \Sigma)$ idempotent ist.
Setze $\eta = \tau$. Dann ist $\beta \colon I \to S, i \mapsto \Sigma((\alpha \circ \tau)_{\mid \tau^{-1}(i)})$
und es gilt $\Sigma(\alpha \circ \tau) = \Sigma(\beta)$ laut dem Teilsummenaxiom.
Die Abbildung $(\alpha \circ \tau)_{\mid \tau^{-1}(i)}$ ist konstant,
weshalb wegen der Idempotenz von $(S, \Sigma)$ für alle $i \in I$ und $h \in \tau^{-1}(i)$ gilt:
\begin{equation*}
\beta(i) = \Sigma((\alpha \circ \tau)_{\mid \tau^{-1}(i)}) = (\alpha \circ \tau)(h) = \alpha(i).
\end{equation*}
Das heißt $\alpha = \beta$ und somit $\Sigma(\alpha \circ \tau) = \Sigma(\beta) = \Sigma(\alpha)$.
Gilt nun umgekehrt $\Sigma(\alpha \circ \tau) = \Sigma(\alpha)$ für jede Abbildung $\alpha \colon I \to S$ und jede surjektive Abbildung $\tau \colon H \to I$.
Sei weiterhin für ein beliebiges $c \in S$
eine konstante Abbildung $\gamma \colon H \to S, h \mapsto c$ definiert.
Für ein festes $j \in H$ seien außerdem $\tau \colon H \to \{j\}, h \mapsto j$ und $\alpha \colon \{j\} \to S, j \mapsto c$ Abbildungen.
Da $\gamma = \alpha \circ \tau$ und $\tau$ eine surjektive Abbildung ist gilt laut Voraussetzung
für alle $h \in H$:
\begin{equation*}
\Sigma(\gamma) = \Sigma(\alpha \circ \tau) = \Sigma(\alpha) = c = \gamma(h),
\end{equation*}
wobei die vorletzte Gleichung aus dem Fundierungsaxiom folgt.
\end{proof}
\subsection{Summationsstrukturen und Monoide}
\begin{definition}
Es sei $\mathbb{S} = (M, \Sigma)$ eine [finitäre] Summationsstruktur.
Dann ist $\mathbb{M} = (M, +, 0)$ mit
$0 = 0_\mathbb{S}$ und
$+ \colon M \times M \to M, (a, b) \mapsto \Sigma(\alpha)$, wobei
$\alpha \colon [2] \to M, \{ 1 \mapsto a, 2 \mapsto b\}$
das zu $\mathbb{S}$ gehörige kommutative Monoid.
\end{definition}
\begin{theorem}\label{Theorem_SummationMonoid}
Sei $(M, \Sigma)$ eine [finitäre] Summationsstruktur.
Dann ist dazu gehörige kommutative Monoid $\mathbb{M} = (M, +, 0)$ ein kommutatives Monoid.
\end{theorem}
\begin{proof}
Zunächst soll gezeigt werden, dass $\mathbb{M}$ assoziativ ist.
Dazu sei $a,b,c \in M$. Weiterhin seien folgende Funktionen definiert:
\begin{align*}
\alpha &\colon [3] \to M, \{ 1 \mapsto a, 2 \mapsto b, 3 \mapsto c \},\\
\eta_1 &\colon [3] \to [2], \{ 1 \mapsto 1, 2 \mapsto 1, 3 \mapsto 2 \},\\
\eta_2 &\colon [3] \to [2], \{ 1 \mapsto 1, 2 \mapsto 2, 3 \mapsto 2 \}.
\end{align*}
Daraus ergeben sich
\begin{align*}
\beta_1 &\colon [2] \to M, i \mapsto \Sigma(\alpha_{\mid \eta_1^{-1}(i)}) \text{ und}\\
\beta_2 &\colon [2] \to M, i \mapsto \Sigma(\alpha_{\mid \eta_2^{-1}(i)}).
\end{align*}
Da $\beta_1$ eine Funktion von $[2] \to M$ ist kann $\Sigma(\beta_1)$ wie folgt dargestellt werden:
\begin{align*}
\Sigma(\beta_1) = \beta_1(1) + \beta_1(2).
\end{align*}
$\beta_1(1)$ ergibt sich aus folgender Gleichungskette
\begin{align*}
\beta_1(1) &= \Sigma(\alpha_{\eta_1^{-1}(1)})\\
&= \Sigma(\alpha_{\mid \{1, 2\}})\\
&= \alpha(1) + \alpha(2) = a + b.
\end{align*}
$\beta_1(2)$ kann dagegen wie folgt berechnet werden
\begin{align*}
\beta_1(2) = \Sigma(\alpha_{\mid \eta_1^{-1}(2)})
= \Sigma(\alpha_{\mid \{3\}})
= \alpha(3) = c
\end{align*}
Insgesamt ist also $\Sigma(\beta_1) = (a + b) + c$.
Analog zu $\beta_1$ kann auch $\Sigma(\beta_2)$ wie folgt angegeben werden
\begin{align*}
\Sigma(\beta_2) = \beta_2(1) + \beta_2(2).
\end{align*}
$\beta_2(1)$ ist
\begin{align*}
\beta_2(1) = \Sigma(\alpha_{\mid \eta_2^{-1}(1)}) = \alpha(1) = a.
\end{align*}
Für $\beta_2(2)$ ergibt sich
\begin{align*}
\beta_2(2) &= \Sigma(\alpha_{\mid \eta_2^{-1}(2)})
= \Sigma(\alpha_{\mid \{2, 3\}}).
\end{align*}
Da $\alpha_{\mid\{2, 3\}}$ keine Abbildung von $[2] \to M$ ist bedarf es folgender Umbenennung:
\begin{align*}
\tau \colon [2] \to \{ 2, 3\}, \{ 1 \mapsto 2, 2 \mapsto 3 \}.
\end{align*}
Nun kann $\beta_2(2)$ wie folgt ausgedrückt werden:
\begin{align*}
\beta_2(2) &= \Sigma(\alpha_{\mid \{2, 3\}})\\
&= \Sigma(\alpha_{\mid \{2, 3\}} \circ \tau)\\
&= (\alpha_{\mid \{ 2,3\}} \circ \tau)(1) + (\alpha_{\mid \{ 2,3\}} \circ \tau)(2)\\
&= \alpha(2) + \alpha(3)\\
&= b + c.
\end{align*}
Also ist $\Sigma(\beta_2) = \beta_2(1) + \beta_2(2) = a + (b + c)$.
Nach Teilsummenaxiom gilt schließlich:
\begin{align*}
\Sigma(\beta_1) = \Sigma(\alpha) = \Sigma(\beta_2).
\end{align*}
und damit
\begin{align*}
(a + b) + c = a + (b + c).
\end{align*}
Als nächstes soll gezeigt werden, dass $0$ tatsächlich das neutrale Element ist.
Dazu sei $m \in M$ ein beliebiges Element aus $M$ und weiterhin seien folgende Funktionen definiert:
\begin{align*}
\alpha &\colon \{ 1 \} \to \{ m \}, 1 \mapsto m\\
\eta_1 &\colon \{ 1 \} \to [2], 1 \mapsto 1\\
\eta_2 &\colon \{ 1 \} \to [2], 1 \mapsto 2
\end{align*}
Daraus ergeben sich folgende Funktionen:
\begin{align*}
\beta_1 &\colon [2] \to M, i \mapsto \Sigma(\alpha_{\mid \eta_1^{-1}(i)}) \text{ und} \\
\beta_2 &\colon [2] \to M, i \mapsto \Sigma(\alpha_{\mid \eta_2^{-1}(i)}).
\end{align*}
Es gelten
\begin{align*}
\Sigma(\beta_1) &= \beta_1(1) + \beta_1(2) \text{ und}\\
\Sigma(\beta_2) &= \beta_2(1) + \beta_2(2).
\end{align*}
Weiterhin ist
\begin{align*}
\beta_1(1) &= \Sigma(\alpha_{\mid \eta_1^{-1}(1)}) = \Sigma(\alpha_{\mid \{1\}}) = \alpha(1) = m \text{ und}\\
\beta_1(2) &= \Sigma(\alpha_{\mid \eta_1^{-1}(2)}) = \Sigma(\alpha_{\mid \emptyset}) = 0.
\end{align*}
Außerdem ist
\begin{align*}
\beta_2(1) &= \Sigma(\alpha_{\mid \eta_2^{-1}(1)}) = \Sigma(\alpha_{\mid \emptyset}) = 0 \text{ und}\\
\beta_2(2) &= \Sigma(\alpha_{\mid \eta_2^{-1}(2)}) = \Sigma(\alpha_{\mid \{1\}}) = \alpha(1) = m.
\end{align*}
Laut Teilsummenaxiom gilt schließlich
\begin{align*}
\Sigma(\beta_1) = \Sigma(\alpha) = \Sigma(\beta_2)
\end{align*}
und damit
\begin{align*}
m + 0 = m = 0 + m.
\end{align*}
Um letztendlich die Kommutativität zu zeigen seien $a,b \in M$ zwei Elemente aus $M$ und
folgende Funktionen definiert:
\begin{align*}
\alpha &\colon [2] \to M, \{ 1 \mapsto a, 2 \mapsto b\} \text{ und}\\
\tau &\colon [2] \to [2], \{ 1 \mapsto 2, 2 \mapsto 1 \}.
\end{align*}
Laut Umbenennungssatz gilt:
\begin{align*}
a + b &= \alpha(1) + \alpha(2)\\
&= \Sigma(\alpha)\\
&= \Sigma(\alpha \circ \tau)\\
&= (\alpha \circ \tau)(1) + (\alpha \circ \tau)(2)\\
&= \alpha(\tau(1)) + \alpha(\tau(2)) = \alpha(2) + \alpha(1) = b + a.
\end{align*}
Damit ist die Behauptung bewiesen.
\end{proof}
\begin{definition}
Gegeben sei ein kommutatives Monoid $\mathbb{M} = (M, +, \varepsilon)$.
Dann ist $(M, \Sigma^\text{fin})$ die zu $\mathbb{M}$ gehörige finitäre Summationsstruktur,
wobei für jede endliche Menge $I = \{i_1, i_2, \dots, i_n\}$
und jede Abbildung $\alpha \colon I \to M$
\begin{equation*}
\Sigma^\text{fin}(\alpha) = \alpha(i_1) + \alpha(i_2) + \dots + \alpha(i_n).
\end{equation*}
\end{definition}
\begin{theorem}
Sei $\mathbb{M} = (M, +, \varepsilon)$ ein kommutatives Monoid.
Dann ist $(M, \Sigma^\text{fin})$ eine finitäre Summationsstruktur.
\end{theorem}
\begin{proof}
Die Wohldefiniertheit folgt aus der Kommutativität von $\mathbb{M}$.
Sei $\alpha \colon \{i\} \to M$ eine Abbildung.
Dann ist $\Sigma^\text{fin}(\alpha) = \alpha(i)$.
Es gilt demnach das Fundierungsaxiom.
Seien weiterhin $\alpha \colon I \to M$,
$\eta \colon I \to A$ und $\beta \colon A \to M, a \mapsto \Sigma^\text{fin}(\alpha_{\mid \eta^{-1}(a)})$
Abbildungen, wobei $I = \{i_1, i_2, \dots, i_n\}$ und $A = \{a_1, a_2, \dots, a_m\}$ endliche Mengen sind.
Da
\begin{equation*}
\mathop{\dot{\bigcup_{a \in A}}} \eta^{-1}(a) = I
\end{equation*}
ist wegen der Assoziativität und Kommutativität von $\mathbb{M}$
\begin{align*}
\Sigma^\text{fin}(\beta)
= \beta(a_1) + \dots + \beta(a_m)
= \alpha(i_1) + \dots + \alpha(i_n)
= \Sigma^\text{fin}(\alpha).
\end{align*}
Also gilt auch das Teilsummenaxiom.
\end{proof}
\begin{definition}
Ein kommutatives Monoid $\mathbb{M} = (M, +, 0)$ heiße natürlich geordnet,
falls $\leq_\mathbb{M} = \{ (x, y) \in M^2 \mid \exists t \in M \colon x + t = y \}$ eine Ordnungsrelation definiert.
\end{definition}
\begin{theorem}
Sei $\mathbb{M} = (M, +, 0)$ ein kommutatives Monoid.
Dann ist $\mathbb{M}$ genau dann natürlich geordnet wenn gilt:
\begin{equation*} \label{EquationAntisymmetrischesMonoid}
\forall x,s,t \in M \colon (x + s) + t = x \implies x + s = x.\tag{$\ast$}
\end{equation*}
\end{theorem}
\begin{proof}
Ist $\mathbb{M} = (M, +, 0)$ ein kommutatives Monoid, so ist $(M, \leq_\mathbb{M})$ stets reflexiv und transitiv.