-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathAlgGeo2.tex
2347 lines (2045 loc) · 107 KB
/
AlgGeo2.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[a4paper,oneside]{scrbook}
% Meta-Daten für Latexki
\usepackage{latexki}
\lecturer{Prof. Dr. F. Herrlich}
\semester{Sommersemester 2009}
\scriptstate{complete}
% Deutsche Sprache
%\usepackage{ngerman}
\usepackage[ngerman]{babel}
% Verschiebt \sections auf die naechste seite falls sie zu tief sind. Muss vor
% hyperref kommen.
% Deaktiviert; da es nicht kompiliert
% \usepackage[nobottomtitles]{titlesec}
% Schicke Schrift
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{tikz}
\usetikzlibrary{matrix,arrows}
% schmaler rand
\usepackage{geometry}
\geometry{a4paper,tmargin=2cm,lmargin=2cm,rmargin=2cm}
\setlength\parskip{\smallskipamount}
\setlength\parindent{0pt}
\tolerance=900
% Vokabelliste erzeugen
\usepackage{index}
\newindex{default}{idx}{ind}{Vokabeln}
% links
\usepackage{color}
\usepackage[hyperfigures=true,pdftex]{hyperref}
\definecolor{rltred}{rgb}{0.75,0,0}
\definecolor{rltgreen}{rgb}{0,0.5,0}
\definecolor{rltblue}{rgb}{0,0,0.75}
\hypersetup{
pdftitle={Algebraische Geometrie II Prof. Herrlich},
pdfsubject={Algebraische Geometrie II},
pdfkeywords={Algebraische Geometrie Herrlich},
pdfproducer={pdfLaTeX},
pdfpagemode={UseOutlines},
colorlinks=true,
bookmarksopen=true,
bookmarksnumbered=true,
urlcolor=rltblue,
filecolor=rltgreen,
linkcolor=rltblue,
backref=true,
pagebackref=true,
% pdfpagemode=None
}
% Mathe-Pakete
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{stmaryrd}
% Verschiedene items in enumerate Umgebungen
\usepackage{enumerate}
% Für Diagramme
%\usepackage[arrow,matrix,curve]{xy}
\usepackage{etex}
\usepackage{pictex}
\usepackage{graphicx}
% Theorem-Umgebung
\usepackage[hyperref,amsmath,thmmarks,thref]{ntheorem}
% keine kursiv schrift in theorems
\theorembodyfont{}
% Theoreme definieren
\theoremstyle{break}
\newtheorem{Satz}{Satz}
\newtheorem{SatzDef}[Satz]{Satz + Definition}
\newtheorem{Def}{Definition}[section]
\newtheorem{DefBem}[Def]{Definition + Bemerkung}
\newtheorem{ErinnDefBem}[Def]{Erinnerung / Definition + Bemerkung}
\newtheorem{ErinnDef}[Def]{Erinnerung / Definition}
\newtheorem{DefSatz}[Def]{Definition + Satz}
\newtheorem{Bem}[Def]{Bemerkung}
\newtheorem{BemDef}[Def]{Bemerkung + Definition}
\newtheorem{Prop}[Def]{Proposition}
\newtheorem{PropDef}[Def]{Proposition + Definition}
\newtheorem{Folg}[Def]{Folgerung}
\newtheorem{Bsp}[Def]{Beispiele}
\newtheorem{DefProp}[Def]{Definition + Proposition}
\newtheorem{anBew}[Def]{Beweis}
\newtheorem{Kor}[Def]{Korollar}
\newtheorem{Lemma}{Lemma}
\theoremstyle{nonumberbreak}
\newtheorem{nnBem}{Bemerkung}
\newtheorem{nnBsp}{Beispiele}
\newtheorem{nnSatz}{Satz}
\newtheorem{nnFolg}{Folgerung}
\newtheorem{Beo}{Beobachtung}
\newtheorem{Eri}{Erinnerung}
\newtheorem{Beh}{Behauptung}
\theoremstyle{nonumberplain}
\theoremsymbol{\ensuremath{\Box}}
\newtheorem{Bew}{Beweis}
\theoremstyle{break}
\theoremsymbol{}
\theoremseparator{}
\theoremprework{\medskip\hrule}
\theorempostwork{\hrule\medskip}
\theorembodyfont{\small}
\newtheorem{anmerkung}{Anmerkung}
%Aufzählungstypen
\newenvironment{aaufz}
{\renewcommand{\labelenumi}{\alph{enumi})}
\renewcommand{\labelenumii}{\alph{enumii})}
\begin{enumerate}}
{\end{enumerate}}
\newenvironment{iaufz}
{\renewcommand{\labelenumi}{(\roman{enumi})}
\renewcommand{\labelenumii}{(\roman{enumii})}
\begin{enumerate}}
{\end{enumerate}}
\newenvironment{1aufz}
{\renewcommand{\labelenumi}{\arabic{enumi}.)}
\renewcommand{\labelenumii}{\arabic{enumii}.)}
\begin{enumerate}}
{\end{enumerate}}
%Selbstdefinierter Schnickschnack
\newcommand{\emp}[1]{\textbf{\emph{#1}}}
\newcommand{\begriff}[1]{{\index{#1}}\emp{#1}}
\newcommand{\defeqr}[0]{\mathrel{\mathop:}=}
\newcommand{\defeql}[0]{=\mathrel{\mathop:}}
\newcommand{\folgtnach}[1]{\ensuremath{\DOTSB\;\xRightarrow{\text{#1}}\;}}
\newcommand{\folgtwegen}[1]{\ensuremath{\DOTSB\;\stackrel{#1}{\Rightarrow}\;}}
\newcommand{\equizunach}[1]{\ensuremath{\DOTSB\;\xLeftrightarrow{\text{#1}}\;}}
\newcommand{\equizuwegen}[1]{\ensuremath{\DOTSB\;\xLeftrightarrow{#1}\;}}
\newcommand{\tonach}[1]{\ensuremath{\DOTSB\;\xrightarrow{\text{#1}}\;}}
\newcommand{\towegen}[1]{\ensuremath{\DOTSB\;\xrightarrow{#1}\;}}
\newcommand{\tomit}[1]{\ensuremath{\DOTSB\;\xrightarrow{#1}\;}}
\newcommand{\gleichnach}[1]{\ensuremath{\DOTSB\;\stackrel{\text{#1}}{=}\;}}
\newcommand{\gleichwegen}[1]{\ensuremath{\DOTSB\;\stackrel{#1}{=}\;}}
\newcommand{\Abb}[5]{\ensuremath{#1:\begin{array}{ccc} #2 & \longrightarrow & #3 \\ #4 & \longmapsto & #5 \end{array}}}
\newcommand{\myref}[2]{%
\hyperref[#2]{#1~\ref*{#2}}%
}
\newcommand{\Ob}{% objects
\ensuremath{\operatorname{Ob}}%
}
\newcommand{\Mor}{% morphisms
\ensuremath{\operatorname{Mor}}%
}
\newcommand{\Off}{% open subseteqs
\ensuremath{\operatorname{Off}}%
}
\newcommand{\Cat}[1]{% category
\ensuremath{\underline{#1}}%
}
\newcommand{\mono}{% monomorphism
\ensuremath{\hookrightarrow}%
}
\newcommand{\epi}{% epimorphism
\ensuremath{\twoheadrightarrow}%
}
\renewcommand{\emptyset}{% empty set
\ensuremath{\varnothing}%
}
\newcommand{\RR}{% real numbers
\ensuremath{\mathbb{R}}%
}
\newcommand{\CC}{% complex numbers
\ensuremath{\mathbb{C}}%
}
\newcommand{\NN}{% natural numbers
\ensuremath{\mathbb{N}}%
}
\newcommand{\ZZ}{% integers
\ensuremath{\mathbb{Z}}%
}
\renewcommand{\phi}{% use the nice phi
\ensuremath{\varphi}%
}
\renewcommand{\theta}{% use the nice theta
\ensuremath{\vartheta}%
}
\newcommand{\directlim}{% more intuitive name
\ensuremath{\varinjlim}%
}
\renewcommand{\ker}{% kern of a morphism
\ensuremath{\operatorname{Kern}}%
}
\newcommand{\img}{% image of a morphism
\ensuremath{\operatorname{Bild}}%
}
\newcommand{\define}{% nice Def symbol
\ensuremath{\mathrel{\mathop:}=}%
}
\newcommand{\todo}[1]{% TODO macro
\marginpar{ {\Large \textbf{TODO}}\\#1}%
}
\newcommand{\Spec}{% Spectrum of a ring
\ensuremath{\operatorname{Spec}}%
}
\newcommand{\Proj}{% Projective spectrum of a ring
\ensuremath{\operatorname{Proj}}%
}
\newcommand{\HomSheaf}{% Hom-Sheaf
\ensuremath{\operatorname{\mathcal H\emph{om}}}%
}
\newcommand{\closure}[1]{% closure of a set U subseteq X
\ensuremath{\overline{#1}}%
}
\newcommand{\rad}[1]{% radical of an ideal
\ensuremath{\sqrt{#1}}%
}
\DeclareMathOperator{\Aut}{Aut}
\DeclareMathOperator{\Hom}{Hom}
\DeclareMathOperator{\Quot}{Quot}
\DeclareMathOperator{\Kern}{Kern}
\DeclareMathOperator{\Bild}{Bild}
\DeclareMathOperator{\Cl}{Cl}
\DeclareMathOperator{\Rat}{Rat}
\DeclareMathOperator{\id}{id}
\DeclareMathOperator{\Rg}{Rg}
\DeclareMathOperator{\height}{ht}
\DeclareMathOperator{\trdeg}{trdeg}
\DeclareMathOperator{\Div}{Div}
\DeclareMathOperator{\ord}{ord}
\newcommand{\FakRaum}[2]{
\raisebox{0.7ex}{\ensuremath{#1}}
\ensuremath{\mkern-3mu}\big/\ensuremath{\mkern-3mu}
\raisebox{-0.6ex}{\ensuremath{#2}}}
\renewcommand{\labelenumi}{\theenumi}
\renewcommand{\theenumi}{(\alph{enumi})}
\newcommand{\ilim}{\mathop{\varprojlim}\limits}
\renewcommand{\OE}{O\!\!E~}
\newcommand{\nsubset}{\subset\!\!\!\!\!/~}
% Weniger Abstand nach der Ueberschrift des Inhaltsverzeichnisses
\makeatletter
\let\@my@starttoc\@starttoc
\renewcommand*{\@starttoc}[1]{%
\addvspace{-1.5em}%
\@my@starttoc{#1}%
}
\makeatother
% Einige Anstrengungen, um den § vor die Section-Nummer zu stellen
% \renewcommand{\thesection} allein führt zu einem Konflikt mit ntheorem-hyper
\makeatletter
\def\@seccntformat#1{\@ifundefined{#1@cntformat}%
{\csname the#1\endcsname\quad}% default
{\csname #1@cntformat\endcsname}% individual control
}
\def\section@cntformat{§\@arabic\c@section\quad}
\makeatother
\setcounter{secnumdepth}{-1}
\title{Algebraische Geometrie II}
\subtitle{Sommersemester 2009\\ Prof. Dr. F. Herrlich}
\author{Die Mitarbeiter von \url{http://mitschriebwiki.nomeata.de/}}
\begin{document}
\maketitle
% Inhaltsverzeichnis
\pdfbookmark[1]{Inhaltsverzeichnis}{contents}
\setlength\parskip{0.6pt}
\tableofcontents
% Liste der benannten Saetze
\section*{Benannte Sätze}
\pdfbookmark[1]{Benannte Sätze}{contents}
\theoremlisttype{optname}
\listtheorems{Satz,SatzDef,Def,DefBem,BemDef,Prop,PropDef,Bsp,DefProp}
\setlength\parskip{\smallskipamount}
\chapter{Vorwort}
\setcounter{secnumdepth}{2}
\section*{Über dieses Skriptum}
Dies ist ein Mitschrieb der Vorlesung \glqq Algebraische Geometrie II\grqq\ von Prof. Dr. F. Herrlich im
Sommersemester 09 an der Universität Karlsruhe.
Die Mitschriebe der Vorlesung werden mit ausdrücklicher Genehmigung von Prof. Dr. F. Herrlich hier veröffentlicht,
Prof. Dr. F. Herrlich ist für den Inhalt nicht verantwortlich.
\section*{Wer}
Getippt wurde das Skriptum soweit von \dots.
\section*{Wo}
Alle Kapitel inklusive \LaTeX-Quellen können unter \url{http://mitschriebwiki.nomeata.de} abgerufen werden.
Dort ist ein von Joachim Breitner programmiertes \emph{Wiki}, basierend auf \url{http://latexki.nomeata.de} installiert.
Das heißt, jeder kann Fehler nachbessern und sich an der Entwicklung
beteiligen. Auf Wunsch ist auch ein Zugang über \emph{Subversion} möglich.
\chapter{Schemata}
%% -- CHAPTER 1: SHEAVES ----------------------------------------------------------------------------------------------------------
\section{Garben}
%%% - Definition: presheaf -------------------------------------------------------------------------------------------------------
\begin{Def}[Prägarbe]
\label{def:presheaf}
Sei $X$ ein topologischer Raum, $\Off(X)$ die Menge der offenenen Teilmengen von $X$ und $\mathcal{C}$ eine Kategorie.
Eine \emph{Prägarbe} auf $X$ mit Werten in $\mathcal{C}$ ist ein kontravarianter Funktor
\[ \mathcal{F}\colon \Cat{\Off}(X) \to \mathcal{C} \]
wobei $\Cat{\Off}(X)$ die Kategorie mit den Objekten $\Off(X)$ und den Morphismen
\[
\Mor(U,U') = \begin{cases} i\colon U \mono U' & \text{falls } U \subseteq U'\\%
\emptyset & \text{sonst}%
\end{cases}
\]
ist.
Für $U \subseteq U'$ heißt $\rho_{U}^{U'} = \mathcal{F}( U \mono U' )$ \emph{Restriktionsmorphismus}.
Ist $U \subseteq U'$ und $f \in \mathcal{F}(U')$, so schreibt man statt $\rho_{U}^{U'}(f)$ auch $f\restriction U$.
\end{Def}
%%% - End Definition: presheaf ---------------------------------------------------------------------------------------------------
%%% - Definition: sheaf ----------------------------------------------------------------------------------------------------------
\begin{Def}[Garbe]
\label{def:sheaf}
Eine Prägarbe $\mathcal{F}$ auf $X$ heißt \emph{Garbe}, falls folgende Bedingung erfüllt ist:
Ist $U \subseteq X$ offen, $(U_i)_{i\in I}$ eine offene Überdeckung von $U$ und ist für jedes $i\in I$ ein $s_i \in \mathcal{F}(U_i)$ gegeben, so dass $s_i\restriction U_i \cap U_j = s_j \restriction U_i \cap U_j$ für alle $i,j \in I$, dann gibt es genau ein $s \in \mathcal{F}(U)$, so dass für alle $i\in I$ gilt: $s\restriction U_i = s_i$.
\end{Def}
%%% - End Definition: sheaf ------------------------------------------------------------------------------------------------------
%%% - Example: sheaves/presheaves -------------------------------------------------------------------------------------------------
\begin{Bsp}
\begin{enumerate}
\item Sei $X$ quasi-projektive Varietät, $\mathcal{O}_X(U)$ der Ring der regulären Funktionen auf $U$,
dann ist $\mathcal{O}_X$ Garbe auf $X$.
\item Sei $X$ ein topologischer Raum, $\mathcal{C}(U)$ die Menge der stetigen Funktionen $f\colon X \to \RR$.
$\mathcal{C}$ ist Garbe von Ringen auf $X$.
Ist $X$ eine differenzierbare Mannigfaltigkeit, dann sind auch $\mathcal{C}^{\infty}(U)$ und $\mathcal{C}^{k}(U)$ Garben von Ringen auf $X$.
\item Sei $X$ ein topologischer Raum, $G$ eine (abelsche) Gruppe. Definiere $\mathcal{G}(U) = G$ für jedes offene $U \subseteq X$
und wähle als Restriktionsmorphismen $\rho_{U}^{U'} = \id_G$ für alle $U\subseteq U'$.
$\mathcal{G}$ ist offenbar Prägarbe, muss aber nicht zwingend Garbe sein. Gibt es in $X$ disjunkte offene Mengen $U_1,U_2$, dann ist $U = U_1 \cup U_2$ offen und $\{ U_1, U_2 \}$ ist eine Überdeckung von $U$. Jedoch gibt es für $g_1 \in \mathcal{G}(U_1), g_2 \in \mathcal{G}(U_2)$ mit $g_1 \neq g_2$ kein $g \in \mathcal{G}(U)$, so dass $g\restriction U_1 = g_1$ und $g\restriction U_2 = g_2$.
$\mathcal{G}$ kann zur Garbe gemacht werden, indem man $\mathcal{G}(U) = G^{ \text{ \#Zsh.-komp. von }U}$ setzt.
\end{enumerate}
\end{Bsp}
%%% - End Example: sheaves/presheaves ---------------------------------------------------------------------------------------------
%%% - Remark: F(0) ----------------------------------------------------------------------------------------------------------------
\begin{Bem}\label{rem:sheaf_0}
Ist $\mathcal{F}$ Garbe von abelschen Gruppen auf $X$, so ist $\mathcal{F}(\emptyset) = 0$.
\end{Bem}
\begin{Bew}
Sei $G = \mathcal{F}(\emptyset)$. Offenbar kann $\emptyset$ durch eine leere Überdeckung von offenen Teilmengen überdeckt werden.
Für jedes $g \in G$ und jedes $i\in I$ gilt also $g\restriction U_i = g_i$. Da $\mathcal{F}$ eine Garbe ist, kann es also nur
ein $g \in G$ geben und somit ist $G = 0$.
\end{Bew}
%%% - End Remark: F(0) ------------------------------------------------------------------------------------------------------------
%%% - Definition: (pre-) sheaf morphisms -----------------------------------------------------------------------------------------
\begin{Def}[Morphismen von Prägarben]
\label{def:sheaf_morphism}
Sei $X$ ein topologischer Raum und $\mathcal{F}, \mathcal{G}$ Prägarben auf $X$ mit Werten in $\mathcal{C}$.
Ein Morphismus $\phi\colon \mathcal{F} \to \mathcal{G}$ ist eine natürliche Transformation von $\mathcal{F}$ nach $\mathcal{G}$, d.h.
für jedes offene $U \subseteq X$ ist ein Morphismus $\phi_U\colon \mathcal{F}(U) \to \mathcal{G}(U)$ gegeben, so dass folgendes Diagramm für alle $U,U'$ mit $U \subseteq U'$ kommutiert:
\begin{center}
\begin{tikzpicture}
\matrix (m) [matrix of math nodes, row sep=3em,
column sep=2.5em, text height=1.5ex, text depth=0.25ex]
{
\mathcal{F}(U') & \mathcal{F}(U) \\
\mathcal{G}(U') & \mathcal{G}(U) \\
};
\path[->, font=\scriptsize]
(m-1-1) edge node[auto] {$\rho_{U}^{U'}$} (m-1-2)
edge node[auto] {$\phi_{U'}$} (m-2-1)
(m-2-1) edge node[auto] {$\rho_{U}^{U'}$} (m-2-2)
(m-1-2) edge node[auto] {$\phi_{U}$} (m-2-2);
\end{tikzpicture}
\end{center}
\end{Def}
%%% - End Definition (pre-) sheaf morphisms --------------------------------------------------------------------------------------
Im Folgenden ist mit einer Garbe auf $X$ immer eine Garbe von abelschen Gruppen gemeint.
%%% - Definition: stalk / germ ----------------------------------------------------------------------------------------------------
\begin{Def}[Halm und Keim]
\label{def:stalk_germ}
Sei $X$ ein topologischer Raum, $x\in X$ und $\mathcal{F}$ eine Prägarbe auf $X$.
\begin{enumerate}[(a)]
\item \[\mathcal{F}_{x} = \directlim_{x\in U \in \Off(X)} \mathcal{F}(U)\]
heißt \emph{Halm} von $\mathcal{F}$ in $x$. Dabei ist
\[ \directlim \mathcal{F}(U) = \left\{ (U,f)\ |\ U \in \Off(X), x \in U, f \in \mathcal{F}(U) \right\} \big/ \sim \]
mit $(U,f) \sim (U',f') :\Leftrightarrow $ es gibt eine offene Menge $U'' \subseteq U \cap U'$, so dass $x \in U''$ und $f \restriction U'' = f'\restriction U''$.
\item Für eine offene Menge $U \subseteq X$ mit $x\in U$ sei
\[ \mathcal{F}(U) \to \mathcal{F}_{x},\ f \mapsto [ (U,f) ]_{\sim} =: f_x \]
der natürliche Morphismus. $f_x$ heißt \emph{Keim} von $f$ in $x$.
\end{enumerate}
\end{Def}
%%% - End Definition: stalk / germ ------------------------------------------------------------------------------------------------
%%% Remark: local 0 <-> global 0 --------------------------------------------------------------------------------------------------
\begin{Bem}\label{bem:local=0_iff_global=0}
Sei $\mathcal{F}$ eine Garbe auf $X$, $U \subseteq X$ eine offene Teilmenge und $f\in \mathcal{F}(U)$. Dann gilt:
\[ f = 0 \Leftrightarrow f_x = 0 \text{ für alle } x \in U \]
\end{Bem}
\begin{Bew}
\begin{description}
\item["`$\Rightarrow$"':] Ist $f = 0$, dann ist offenbar $f_x = 0$ für alle $x \in U$.
\item["`$\Leftarrow$"':] Sei $f_x = 0$ für alle $x \in U$. Dann gibt es für jedes $x\in U$ eine offene Umgebung $U_x$ von $x$, so dass $( U_x,0) \in f_x$ und damit insbesondere $(U_x,0 ) \sim (U,f)$. Die $U_x$ überdecken $U$ und daher gibt es genau ein $g \in \mathcal{F}(U)$ mit $g \restriction U_x = 0$ für jedes $x\in X$ $\Rightarrow 0 = g = f$.
\end{description}
\end{Bew}
%%% End Remark: local 0 <-> global 0 -----------------------------------------------------------------------------------------------
%%% Example: local 0 <-> global 0 ONLY for sheaves ---------------------------------------------------------------------------------
Das folgende Beispiel zeigt, dass die Aussage aus Bemerkung~\ref{bem:local=0_iff_global=0} für Prägarben nicht unbedingt gilt.
\begin{Bsp}
Sei $X$ ein topologischer Raum, so dass jedes $x \in X$ eine offene Umgebung $U \neq X$ besitzt.
\[ \mathcal{F}(U) = \begin{cases}%
\ZZ & U = X\\%
0 & \text{sonst}%
\end{cases}
\]
mit den natürlichen Restriktionsmorphismen ist eine Prägarbe von abelschen Gruppen auf $X$.
Für alle $x\in X$ ist $\mathcal{F}_x = 0$, also ist auch für jedes $f \in \mathcal{F}(X)$ und jedes $x\in X$ $f_x = 0$ -- auch wenn $f \neq 0$.
\end{Bsp}
%%% End Example: local 0 <-> global 0 ONLY for sheaves -----------------------------------------------------------------------------
%%% Remark: sheaf morphism -> stalk morphism ----------------------------------------------------------------------------------------
\begin{Bem}
\label{rem:sheaf_morphism:induces_stalk_morphism}
Jeder Morphismus $\phi\colon \mathcal{F} \to \mathcal{G}$ von Prägarben induziert für jedes $x\in X$ einen natürlichen Morphismus $\phi_x\colon \mathcal{F}_x \to \mathcal{G}_x$.
\end{Bem}
\begin{Bew}
Sei $x\in X$. Definiere
\[ \phi_x\colon \mathcal{F}_x \to \mathcal{G}_x,\ [ (U,f) ]_{\sim} \mapsto [ (U,\phi_{U}(f) ]_{\sim} \]
Für $(U,f) \sim (U',f')$ ist $f\restriction U'' = f'\restriction U''$ für ein geeignetes $U''$ und daher
\[ \phi_{U'}( f' ) \restriction U'' = \phi_{U''}( f' \restriction U'' ) = \phi_{U''}( f \restriction U'' ) = \phi_{U}( f ) \restriction U'' \]
Somit ist auch $(U , \phi_{U}(f)) \sim (U', \phi_{U'}(f'))$ und $\phi_x$ ist wohldefiniert.
\end{Bew}
%%% End Remark: sheaf morphism -> stalk morphism -------------------------------------------------------------------------------------
%%% Remark: sheaf morphism epi/mono/iso <-> stalk morphism epi/mono/ist --------------------------------------------------------------
\begin{Bem}\label{bem:sheaf_morphism:epi_mono_iso_stalk_morphism}
Seien $\mathcal{F}, \mathcal{G}$ Garben abelscher Gruppen, $\phi\colon \mathcal{F} \to \mathcal{G}$ ein Morphismus. Dann gilt:\\
{%
\centering
\begin{tabular}{clcl}
(a) & $\forall U \in \Off(X)\colon\phi_U$ ist injektiv & $\Longleftrightarrow$ & $\forall x \in X\colon \phi_x$ ist injektiv.\\
(b) & $\forall U \in \Off(X)\colon\phi_U$ ist surjektiv & $\Longrightarrow$ & $\forall x \in X\colon \phi_x$ ist surjektiv.\\
(c) & $\forall U \in \Off(X)\colon\phi_U$ ist Isomorphismus & $\Longleftrightarrow$ & $\forall x \in X\colon \phi_x$ ist Isomorphismus.
\end{tabular}
}
\end{Bem}
\begin{Bew}
\begin{enumerate}[(a)]
\item
\begin{description}
\item[ "`$\Rightarrow$"':] Seien $x \in X$ und $f_x \in \mathcal{F}_x$ mit $\phi_x(f_x) = 0$.
Dann ist $[ (U, \phi_U(f) ) ]_{\sim} = 0$ für einen Repräsentanten $(U,f)$ von $f_x$.
Ohne Einschränkung ist $\phi_U(f) = 0$ und nach Vorraussetzung somit auch $f = 0$ $\Rightarrow f_x = 0$.
\item["`$\Leftarrow$"':] Seien $U \in \Off(X)$ und $f \in \mathcal{F}(U)$ mit $\phi_{U}(f) = 0$.
Für alle $x\in U$ ist dann $\phi_x(f_x) = 0$ und somit auch $f_x = 0$.
Nach Bemerkung~\ref{bem:local=0_iff_global=0} ist $f = 0$.
\end{description}
\item Sei $g_x \in \mathcal{G}_x$ für ein $x \in X$ und sei $(U,g)$ ein Repräsentant von $g_x$.
Nach Vorraussetzung gibt es ein $f \in \mathcal{F}(U)$, so dass $\phi_U(f) = g$. Insgesamt ist dann $\phi_x(f_x) = g_x$.
\item
\begin{description}
\item[ "`$\Rightarrow$"':] Folgt aus (a) und (b).
\item[ "`$\Leftarrow$"':] Nach (a) ist $\phi_{U}$ injektiv und es bleibt nur zu zeigen, dass $\phi_{U}$ surjektiv ist.
Sei also $ g\in \mathcal{G}(U)$.
Für jedes $x \in U$ sei $f_x = \phi_x^{-1}(g_x)$ und $(U^{(x)}, f^{(x)} )$ ein Repräsentant von $f_x$.
Offenbar ist $\left( U^{(x)} \right)_{x \in U}$ eine offene Überdeckung von $U$.
Weiterhin kann man die $U^{(x)}$ klein genug wählen, so dass $\phi_{U^{(x)}}( f^{(x)} ) = g \restriction U^{(x)}$.
Dann ist $f^{(x)} = \phi_{U^{(x)}}^{-1}( g \restriction U^{(x)} )$ und für alle $x,x' \in U$ gilt:
\[ f^{(x)}\restriction U^{(x)} \cap U^{(x')} = \phi_{U^{(x)} \cap U^{(x')}}^{-1}( g \restriction U^{(x)} \cap U^{(x')} ) = f^{(x')} \restriction U^{(x)} \cap U^{(x')} \]
Da $\mathcal{F}$ Garbe ist, gibt es genau ein $f \in \mathcal{F}(U)$ mit $f \restriction U^{(x)} = f^{(x)}$ für alle $x \in U$. Offenbar ist dann $\phi_U(f) \restriction U^{(x)} = g \restriction U^{(x)}$ für jedes $x \in U$ und somit auch $\phi_U(f) = g$.
\end{description}
\end{enumerate}
\end{Bew}
%%% End Remark: sheaf morphism epi/mono/iso <-> stalk morphism epi/mono/ist ----------------------------------------------------------
%%% Example: All stalk morphisms epi, but sheaf morphism not epi ---------------------------------------------------------------------
Das folgende Beispiel zeigt, dass die Aussage (b) aus Bemerkung~\ref{bem:sheaf_morphism:epi_mono_iso_stalk_morphism} keine Äquivalenz ist.
\begin{Bsp}
Sei $X = \CC \setminus \{0\}$ und $\mathcal{F}$ die Garbe der invertierbaren, holomorphen Funktionen.
Weiter sei $\phi\colon \mathcal{F} \to \mathcal{F}$ durch $f \mapsto f^2$ gegeben. Dann ist $\phi_x$ für jedes $x \in X$ surjektiv, $\phi_X$ hingegen nicht.
\end{Bsp}
%%% End Example: All stalk morphisms epi, but sheaf morphism not epi -----------------------------------------------------------------
%%% Definition: Associated Sheaf -----------------------------------------------------------------------------------------------------
\begin{BemDef}[Assoziierte Garbe]\label{def:associated_sheaf}
Sei $X$ ein topologischer Raum, $\mathcal{F}$ eine Prägarbe von abelschen Gruppen auf $X$.
\begin{enumerate}[(a)]
\item Es gibt genau eine Garbe $\mathcal{F}^+$ auf $X$ und einen Morphismus $\theta\colon \mathcal{F} \to \mathcal{F}^+$, so dass
$\theta_x\colon \mathcal{F}_x \to \mathcal{F}^+_x$ für jedes $x \in X$ ein Isomorphismus ist.
\item $\mathcal{F}^+$ heißt die zu $\mathcal{F}$ \emph{assoziierte Garbe}.
\item Zu jeder Garbe $\mathcal{G}$ auf $X$ und jedem Morphismus $\phi\colon \mathcal{F} \to \mathcal{G}$ von Prägarben gibt es genau einen Morphismus $\phi^+\colon \mathcal{F}^+ \to \mathcal{G}$, so dass folgendes Diagramm kommutiert:
\begin{center}
\begin{tikzpicture}
\matrix (m) [matrix of math nodes, row sep=3em, column sep=2.5em, text height=1.5ex, text depth=0.25ex]
{
\mathcal{F} & & \mathcal{F}^{+} \\
& \mathcal{G} & \\
};
\path[->,font=\scriptsize]
(m-1-1) edge node[auto] {$ \theta $} (m-1-3)
edge node[auto] {$ \phi $} (m-2-2)
(m-1-3) edge node[auto] {$\exists!\ \phi^+$ } (m-2-2);
\end{tikzpicture}
\end{center}
\end{enumerate}
\end{BemDef}
\begin{Bew}
\begin{enumerate}[(a)]
\item
Für jede offene Menge $U \subseteq X$ sei
\begin{align*}
\mathcal{F}^+(U) = \bigg\{ s\colon U \to \bigcup^{\centerdot}_{x \in U} \mathcal{F}_x\ \Big|\
&\forall x \in U \text{ ist } s(x) \in \mathcal{F}_x \text{ und } \exists \text{ Umgebung } U_x \text{ von } x\\
&\text{ und ein } f \in \mathcal{F}(U_x) \text{ mit } s(y) = f_y \text{ für jedes } y \in U_x
& \bigg\}
\end{align*}
\end{enumerate}
Dann ist $\mathcal{F}^+$ zusammen mit den offensichtlichen Restriktionen Garbe auf $X$.
Weiter ist $\theta: \mathcal{F} \to \mathcal{F}^+,\ \theta_U(f) = ( x \mapsto f_x )$ ein Morphismus und $\theta_x$ ist Isomorphismus für
jedes $x \in X$. Die Eindeutigkeit von $\mathcal{F}^+$ und $\theta$ folgt aus (c).
\item[(c)]\todo{Beweis klarer machen!}
Sei $\phi\colon \mathcal{F} \to \mathcal{G}$ ein Morphismus von Prägarben.
Ist $s \in \mathcal{F}^+(U)$, dann ist $(U_x)_{x \in U}$ eine offene Überdeckung von $U$.
Für $x,x' \in U$ gibt es $f^{(x)} \in \mathcal{F}(U_x)$ und $f^{(x')} \in \mathcal{F}(U_{x'})$, so dass
$s(y) = f^{(z)}_{y}$ für jedes $y \in U_z$ und $z \in \{x,x'\}$.
Daher ist $f^{(x)}_{y} = f^{(x')}_{y}$ für jedes $y \in U_{x} \cap U_{x'}$ und für jedes $y \in U_{x}\cap U_{x'}$ gibt es eine Umgebung $U'$ von $y$, so dass
$f^{(x)} \restriction U' = f^{(x')}\restriction U'$.
Weil die $U'$ eine Überdeckung von $U_{x}\cap U_{x'}$ sind, ist $f^{(x)} \restriction U_{x} \cap U_{x'} = f^{(x')} \restriction U_{x} \cap U_{x'}$ und insbesondere
$\phi_{U_x}( f^{(x)} )\restriction U_{x}\cap U_{x'} = \phi_{U_{x'}}( f^{(x')} ) \restriction U_{x} \cap U_{x'}$.
Da $\mathcal{G}$ eine Garbe ist, gibt es ein eindeutig bestimmtes $g \in \mathcal{G}(U)$, so dass $g \restriction U_x = \phi_{U_x}( f^{(x)} )$.
Definiert man nun $\phi^+(s) = g$, dann ist offenbar $\phi = \phi^+ \circ \theta$ und $\phi^+$ ist eindeutig.
\end{Bew}
%%% End Definition: Associated Sheaf -------------------------------------------------------------------------------------------------
%%% Definition: Kern/Image of Sheaf morphisms ----------------------------------------------------------------------------------------
\begin{BemDef}[Kern, Bild, Mono- und Epimorphismen]
\label{def:sheaf_morphism:kern_image}
Sei $\phi\colon \mathcal{F} \to \mathcal{G}$ ein Morphismus von Garben auf $X$.
\begin{enumerate}[(a)]
\item $\ker(\phi)$ mit $\ker(\phi)(U) = \ker(\phi_U)$ ist Garbe.
\item $\img(\phi)$ sei die zu $U \mapsto \img(\phi_U)$ assoziierte Garbe.
\item $\phi$ heißt \emph{Monomorphismus}, falls $\ker(\phi) = 0$.
\item $\phi$ heißt \emph{Epimorphismus}, falls $\img(\phi) = \mathcal{G}$.
\end{enumerate}
\end{BemDef}
%%% End Definition Kern/Image of Sheaf morphisms -------------------------------------------------------------------------------------
%%% Definition: Quotient Sheaf -------------------------------------------------------------------------------------------------------
\begin{Def}[Quotientengarbe]
\label{def:quotient_sheaf}
Seien $\mathcal{G} \mono \mathcal{F}$ Garben von abelschen Gruppen auf $X$. Die zur Prägarbe $U \mapsto \mathcal{F}(U) \big/ \mathcal{G}(U)$ assoziierte Garbe heißt \emph{Quotientengarbe} von $\mathcal{F}$ nach $\mathcal{G}$.
\end{Def}
%%% End Definition Quotient Sheaf ----------------------------------------------------------------------------------------------------
%%% Example: Quotient Sheaf ----------------------------------------------------------------------------------------------------------
\begin{Bsp}
Sei $\mathcal{F} = \mathcal{C}_x$ die Garbe der stetigen Funktionen von $S^1$ nach $\RR$ und $\mathcal{G}$ die konstante Garbe zu $\ZZ$ auf $S^1$.
In Abbildung~\ref{fig:quotient_sheave} ist eine Überlagerung von $S^1$ durch $U_1,U_2$ zu sehen, so dass $U_1 \cap U_2 = D_1 \overset{\centerdot}{\cup} D_2$ für zwei offene Mengen $D_1,D_2$.
\begin{figure}
\centering
\begin{tikzpicture}
\draw (0,0) circle (2cm);
\draw[red, very thick] (-10:2.1cm) arc(-10:190:2.1cm);
\draw[blue, very thick] (-190:2.2cm) arc(-190:10:2.2cm);
\draw[very thick] (10:2.3cm) arc(10:-10:2.3cm);
\draw[very thick] (170:2.3cm) arc(170:190:2.3cm);
\path node at (0,-2.5cm) {$U_2$}
node at (0,2.5cm) {$U_1$}
node at (0,0) {$S^1$}
node at (2.6cm,0) {$D_2$}
node at (-2.6cm,0) {$D_1$};
\end{tikzpicture}
\caption{Überlagerung von $S^1$ durch $U_1$ (rot) und $U_2$ (blau)}
\label{fig:quotient_sheave}
\end{figure}
Seien nun $0 = f_1 \in \mathcal{F}(U_1)$ und $f_2 \in \mathcal{F}(U_2)$ mit $f_2 \restriction D_1 = 0$ und $f_2 \restriction D_2 = 1$.
Dann ist $f_2 - f_1 \in \mathcal{G}( U_1 \cap U_2 )$ und daher $\bar{f_1} = \bar{f_2}$ in $\mathcal{F}\big/\mathcal{G}(S^1)$.
\end{Bsp}
%%% End Example: Quotient Sheaf ------------------------------------------------------------------------------------------------------
%%% Definition: Direct and inverse image Sheaf --------------------------------------------------------------------------------------
\begin{BemDef}[Direkte und inverse Bildgarbe]
\label{def:image_sheaf}
Sei $f: X \to Y$ stetig.
\begin{enumerate}[(a)]
\item Sei $\mathcal{F}$ Garbe auf $X$, dann ist die Prägarbe $U \mapsto \mathcal{F}( f^{-1}(U) )$ auf $Y$ eine Garbe.
Sie heißt die \emph{direkte Bildgarbe} und wird mit $f_{*}\mathcal{F}$ bezeichnet.
\item Sei $\mathcal{G}$ Garbe auf $Y$, dann heißt die zur Prägarbe
\[ U \mapsto \directlim_{\substack{V \subseteq Y\text{ offen}\\f(U) \subseteq V}} \mathcal{G}(V) \]
assoziierte Garbe $f^{-1}\mathcal{G}$ \emph{inverse Bildgarbe} zu $\mathcal{G}$.
\item $f_{*}$ und $f^{-1}$ sind kovariante Funktoren
\item $f^{-1}$ ist linksadjungiert zu $f_{*}$, d.h. es gibt natürliche Bijektionen
\[ \Hom(f^{-1}\mathcal{G}, \mathcal{F}) \to \Hom( \mathcal{G}, f_{*}\mathcal{F} ) \]
\end{enumerate}
\end{BemDef}
\begin{Bew}
\begin{enumerate}[(a)]
\item Da $\mathcal{F}$ Garbe auf $X$ und $f^{-1}(U)$ offen ist für jedes $U \subseteq Y$, ist $f_{*}\mathcal{F}$ Garbe auf $Y$.
\item[(c)] Offensichtlich.
\item[(d)] Es sollen natürliche Bijektionen
$ \Hom(f^{-1}\mathcal{G}, \mathcal{F}) \to \Hom( \mathcal{G}, f_{*}\mathcal{F} ) $
konstruiert werden.
\minisec{Der Weg von $\Hom( f^{-1}\mathcal{G}, \mathcal{F} )$ nach $\Hom( \mathcal{G}, f_{*}\mathcal{F} )$}
Jedes $\alpha \in \Hom( f^{-1}\mathcal{G}, \mathcal{F} )$ induziert einen Morphismus
$ f_{*}(\alpha)\colon f_{*}f^{-1}\mathcal{G} \to f_{*}\mathcal{F}$.\\
$f_{*}(\alpha)$ kann fortgesetzt werden zu einem Morphismus
\[ \mathcal{G} \xrightarrow{\psi_{\mathcal{G}}} f_{*}f^{-1} \mathcal{G} \xrightarrow{f_{*}(\alpha)} f_{*}\mathcal{F} \]
Dazu ist folgende Konstruktion nötig:
Die universelle Eigenschaft des direkten Limes liefert einen natürlichen Morphismus
\[ \mathcal{G}(V) \to \directlim_{ f(f^{-1}(V)) \subseteq W \subseteq V } \mathcal{G}(W)
= \directlim_{f(f^{-1}(V)) \subseteq W } \mathcal{G}(W)
\]
Dabei beruht die Gleichheit der direkten Limetes darauf, dass $f(f^{-1}(V)) \subseteq V$ und somit ohne Einschränkung jedes $W \supset f(f^{-1}(V))$ mit $V$ geschnitten werden kann.
Nun ist $f^{-1} \mathcal{G}$ die zu
\[ V \mapsto \directlim_{f(V) \subseteq W} \mathcal{G}( W ) \]
assoziierte Garbe und man erhält
$ \psi_{\mathcal{G}}(V)\colon \mathcal{G}(V) \to f^{-1} \mathcal{G}( f^{-1}(V) ) = f_{*} f^{-1} \mathcal{G}(V) $
\minisec{Der Weg von $\Hom( \mathcal{G}, f_{*}\mathcal{F} )$ nach $\Hom( f^{-1}\mathcal{G}, \mathcal{F} )$}
Jedes $\beta \in \Hom( \mathcal{G}, f_{*}\mathcal{F} )$ induziert einen Morphismus
$ f^{-1}(\beta)\colon f^{-1} \mathcal{G} \to f^{-1}f_{*}\mathcal{F} $\\
Auch $f^{-1}(\beta)$ lässt sich fortsetzen zu
\[
f^{-1}\mathcal{G} \xrightarrow{f^{-1}(\beta)} f^{-1}f_{*}\mathcal{F} \xrightarrow{\phi_{\mathcal{F}}} \mathcal{F}
\]
$f^{-1}f_{*}\mathcal{F}$ ist die zu
\[
U \mapsto \directlim_{f(U) \subseteq V } f_{*}\mathcal{F}(V)
= \directlim_{f(U) \subseteq V } \mathcal{F}(f^{-1}(V))
\]
assoziierte Garbe und daher reicht es für jedes $U$ einen Morphismus
\[
\chi_{\mathcal{F}}(U)\colon \directlim_{f(U) \subseteq V} \mathcal{F}(f^{-1}(V)) \to \mathcal{F}(U)
\]
zu konstruieren. Für jedes $V$ mit $f(U) \subseteq V$ ist $U \subseteq f^{-1}(V)$, also gibt es Restriktionsmorphismen
$\mathcal{F}(f^{-1}(V)) \to \mathcal{F}(U)$. Die universelle Eigenschaft des direkten Limes liefert nun einen eindeutigen
Morphismus $\chi_{\mathcal{F}}(U)$ der wiederum $\phi_{\mathcal{F}}(U)$ induziert.
\minisec{Die beiden Konstruktionen sind zueinander invers}
Das ist so.
\end{enumerate}
\end{Bew}
%%% Definition: Direct and inverse image Sheaf --------------------------------------------------------------------------------------
%%% Remark: Sheaves as left-exact functors --------------------------------------------------------------------------------------------
\begin{Bem}
Sei $X$ topologischer Raum, $U \subseteq X$ offen. Dann ist $\mathcal{F} \mapsto \mathcal{F}(U)$ linksexakter, kovarianter Funktor.
\end{Bem}
\begin{Bew}
\todo{Beweis klarer machen}
Ist $\phi\colon \mathcal{F} \to \mathcal{G}$ Morphismus, so ist $\phi_{U}\colon \mathcal{F}(U) \to \mathcal{G}(U)$ der zugehörige Morphismus.
Sei nun
\[
0 \rightarrow \mathcal{F}' \xrightarrow{\phi} \mathcal{F} \xrightarrow{\psi} \mathcal{F}'' \rightarrow 0
\]
eine kurze exakte Sequenz von Garben. Nach Definition ist $\mathcal{F} \mapsto \mathcal{F}(U)$ linksexakt, falls
\[
0 \rightarrow \mathcal{F}'(U) \xrightarrow{\phi_{U}} \mathcal{F}(U) \xrightarrow{\psi_{U}} \mathcal{F}''(U)
\]
exakt ist.
Nach Definition~\ref{def:sheaf_morphism:kern_image} und Bemerkung~\ref{bem:sheaf_morphism:epi_mono_iso_stalk_morphism} ist
\[
0 \rightarrow \mathcal{F}'_x \rightarrow \mathcal{F}_x \rightarrow \mathcal{F}''_x \rightarrow 0
\]
exakt für jedes $x\in X$.
Wiederum nach Bemerkung \ref{bem:sheaf_morphism:epi_mono_iso_stalk_morphism} ist
\[
0 \rightarrow \mathcal{F}'(U) \rightarrow \mathcal{F}(U) \rightarrow \mathcal{F}''(U)
\]
exakt.
\end{Bew}
%%% End Remark: Sheaves as left-exact functors -----------------------------------------------------------------------------------------
%% -- CHAPTER 2: Affine Schemes ----------------------------------------------------------------------------------------------------------
\section{Affine Schemata}
%%% Definition: Spectrum, Zariski-Topology -----------------------------------------------------------------------------------------------
\begin{BemDef}[Spektrum, Zariski-Topologie und Verschwindungsideal]
\label{def:spectrum}
\label{def:zariski_topology}
Sei $R$ ein Ring.
\begin{enumerate}[(a)]
\item $\Spec R = \left\{ \mathfrak{p} \subseteq R\ |\ \mathfrak{p} \text{ Primideal}\right\}$ heißt \emph{Spektrum} von $R$.
\item Für $I \subseteq R$ sei $V\left(I\right) = \left\{ \mathfrak{p} \in \Spec R\ |\ I \subseteq \mathfrak{p} \right\}$.
Es gilt $V\left( I \right) = V( ( I ) )$.
\item $\left\{ V\left(I\right)\ |\ I \text{ ist Ideal in } R\right\}$ sind abgeschlossene Mengen einer Topologie auf $\Spec R$, der \emph{Zariski-Topologie}.
\item Für $Z \subseteq \Spec R$ sei $I\left(Z\right) = \bigcap_{\mathfrak{p} \in Z} \mathfrak{p}$ das \emph{Verschwindungsideal} von $Z$.
\end{enumerate}
\end{BemDef}
%%% End Definition: Spectrum, Zariski-Topology --------------------------------------------------------------------------------------------
%%% Anmerkung: subset, I, V
\begin{anmerkung}
\begin{enumerate}[(a)]
\item Ist $A \subseteq B \subseteq \Spec R$, dann ist $I\left(A\right) \supseteq I(B)$.
\item Ist $I \subseteq J \subseteq R$, dann ist $V\left(I\right) \supseteq V(J)$.
\end{enumerate}
\begin{Bew}
\begin{enumerate}[(a)]
\item Ist $A \subseteq B$, dann ist
\[
I\left(A\right) = \bigcap_{\mathfrak{p}\in A} \mathfrak{p}
\overset{A \subseteq B}{\supseteq}
\bigcap_{\mathfrak{p} \in B} \mathfrak{p} = I\left(B\right)
\]
\item Ist $I \subseteq J$, dann ist
\[
V\left(I\right) = \left\{ \mathfrak{p}\ |\ I \subseteq \mathfrak{p} \right\}
\overset{I \subseteq J}{\supseteq}
\left\{ \mathfrak{p}\ |\ J \subseteq \mathfrak{p} \right\}
= V\left(J\right)
\]
\end{enumerate}
\end{Bew}
\end{anmerkung}
%%% End Anmerkung
%%% Remark: 'Inverse' I\left(V(I\right)), V(I(V)) ----------------------------------------------------------------------------------------------------
\begin{Bem}
\begin{enumerate}[(a)]
\item $V\left( I\left(Z\right) \right) = \closure{Z}$
\item $I\left( V\left(I\right) \right) = \rad{I}$
\end{enumerate}
\end{Bem}
\begin{Bew}
\begin{enumerate}[(a)]
\item
\begin{description}
\item["`$\supset$"':] Nach Definition ist $V\left( I\left(Z\right) \right)$ abgeschlossen und daher gilt $\closure{Z} \subseteq V\left(I\left(Z\right)\right)$.
\item["`$\subseteq$"':]
Nach Definition ist
\[
\closure{Z} = \bigcap_{\substack{I \text{ Ideal}\\
Z \subseteq V\left(I\right)}} V(I)
\]
Aus $Z \subseteq V\left(I\right)$ folgt $I \subseteq \mathfrak{p}$ für alle $\mathfrak{p} \in Z$. Somit ist
\[
I \subseteq \bigcap_{\mathfrak{p} \in Z} \mathfrak{p} = I\left(Z\right)
\]
und deshalb $V\left(I\right) \supset V(I(Z))$.
\end{description}
\item
\[ I\left(V\left(I\right)\right) = \bigcap_{\mathfrak{p} \in V\left(I\right)} \mathfrak{p}
= \bigcap_{ \substack{ \mathfrak{p} \text{ Primideal}\\
I \subseteq \mathfrak{p}}} \mathfrak{p}
= \rad{I}
\]
\end{enumerate}
\end{Bew}
%%% End remark: 'Inverse' I\left(V(I\right)), V(I(V)) ------------------------------------------------------------------------------------------------
%%% Anmerkung Ideal Kalkül und ``Varietäten''
\begin{anmerkung}
\begin{enumerate}[(a)]
\item Sind $\left(I_j\right)_{j \in J}$ Ideale, dann ist
\[
\bigcap_{j\in J} V\left(I_j\right) = V\left( \sum_{j\in J} I_j \right)
\]
\item Sind $I_1, I_2$ Ideale, dann ist
\[
V\left(I_1\right) \cup V\left(I_2\right) = V\left( I_1 \cdot I_2 \right) = V\left( I_1 \cap I_2 \right)
\]
\end{enumerate}
\begin{Bew}
\begin{enumerate}[(a)]
\item
\begin{description}
\item[``$\subseteq$'':]
Ist $\mathfrak{p} \in \bigcap V\left(I_j\right)$, dann ist $I_j \subseteq \mathfrak{p}$ für jedes $j \in J$.
Also ist auch $\sum I_j \subseteq \mathfrak{p}$ und somit $\mathfrak{p} \in V\left( \sum I_j \right)$.
\item[``$\supseteq$'':]
Ist $\mathfrak{p} \in V\left( \sum I_j \right)$, dann ist $I_j \subseteq \sum I_j \subseteq \mathfrak{p}$ für jedes $j \in J$ und
somit ist $\mathfrak{p} \in \bigcap V\left(I_j\right)$.
\end{description}
\item
\begin{description}
\item[``$\subseteq$'':]
Ist $\mathfrak{p} \in V\left(I_1\right) \cup V(I_2)$, dann ist $I_1 \subseteq \mathfrak{p}$ oder $I_2 \subseteq \mathfrak{p}$.
Auf jeden Fall ist aber $I_1 \cdot I_2 \subseteq \mathfrak{p}$ und $I_1 \cap I_2 \subseteq \mathfrak{p}$ und somit
$V\left(I_1\right) \cup V(I_1) \subseteq V\left(I_1 \cdot I_2\right)$ und
$V(I_1) \cup V\left(I_2\right) \subseteq V\left( I_1 \cap I_2 \right)$.
\item[``$\supseteq$'':]
Es gilt: $I_1 \cdot I_2 \subseteq I_1 \cap I_2$ und somit
$V\left(I_1 \cdot I_2\right) \supseteq V\left(I_1 \cap I_2\right)$. Also
genügt es zu zeigen, dass $V\left(I_1 \cdot I_2 \right) \subseteq V\left(I_1\right) \cup V\left(I_2\right)$.
Ist also $\mathfrak{p} \in V\left(I_1 \cdot I_2\right)$, dann ist $I_1 \cdot I_2 \subseteq \mathfrak{p}$.
Angenommen $I_2 \nsubseteq \mathfrak{p}$. Dann gibt es ein $a \in I_2$, so dass $a \notin \mathfrak{p}$.
Nach Vorraussetzung ist aber $aI_1 \subseteq \mathfrak{p}$ und somit ist auch $I_1 \subseteq \mathfrak{p}$,
insbesondere also $\mathfrak{p} \in V\left(I_1\right)$.
\end{description}
\end{enumerate}
\end{Bew}
\end{anmerkung}
%%% End Anmerkung Kalkül der Ideal <-> ``Varietäten''
%%% Remark: V irreducible iff I\left(V\right) prime --------------------------------------------------------------------------------------------------
\begin{Bem}\label{bem:irreducible-prime_ideal}
Sei $\emptyset \neq V \subseteq \Spec R$ abgeschlossen. $I\left(V\right)$ ist ein Primideal, genau dann wenn $V$ irreduzibel ist.
\end{Bem}
\begin{Bew}
\begin{description}
\item["`$\Leftarrow$"':]
Sei $V \subseteq \Spec R$ abgeschlossen, dann gibt es ein Ideal $I \subseteq R$, so dass $V = V\left(I\right)$.
Seien nun $a,b \in R$ mit $ab \in I\left(V\right)$.
Nach Definition ist
\[ I\left(V\right) = \bigcap_{I \subseteq \mathfrak{p} } \mathfrak{p} \]
und daher ist für jedes Primideal $\mathfrak{p}$ mit $I \subseteq \mathfrak{p}$ offenbar $a \in \mathfrak{p}$ oder $b\in \mathfrak{p}$.
Definiere nun $V_a = \left\{ \mathfrak{p}\ |\ \mathfrak{p} \text{ Primideal mit } I \subseteq \mathfrak{p} \text{ und } a \in \mathfrak{p} \right\}$ und $V_b$ analog.
Offenbar ist $V = V_a \cup V_b$ und $V_a, V_b$ sind abgeschlossen.
Da $V$ irreduzibel ist, kann man ohne Einschränkung $V_a = V$ annehmen. Dann ist aber offenbar auch $a \in I\left(V\right)$.
\item["`$\Rightarrow$"':]
Sei $V \subseteq \Spec R$ abgeschlossen, so dass $I(V)$ Primideal ist und
seien $V_1 = V\left(I_1\right)$ und $V_2 = V\left(I_2\right)$ abgeschlossene Mengen mit $V = V_1 \cup V_2$.
Ohne Einschränkung sind $I_1,I_2$ Radikalideale, da
$V( \rad{I_i} ) = V( I( V_i ) ) = \closure{V_i} = V_i$ für $i \in \{1,2\}$
Dann ist
$ V = V(I_1) \cup V(I_2) = V( I_1 \cap I_2 ) $.
Da $I_1, I_2$ Radikalideale sind, ist $I_1 \cap I_2$ Radikalideal und daher ist
$I_1 \cap I_2 =\rad{I_1 \cap I_2} = I(V)$ ein Primideal.
Ist nun $I_2 \nsubseteq I_1$, dann gibt es ein $b \in I_2 \setminus I_1$.
Für jedes $a \in I_1$ ist $ab \in I_1 \cap I_2$ und daher $a \in I_1 \cap I_2$ oder $b \in I_1 \cap I_2$.
Da $b$ aber aus $I_2 \setminus I_1$ gewählt war, muss $a \in I_1 \cap I_2$ und somit
$I_1 \subseteq I_1 \cap I_2$ sein.
Somit ist aber $V_1 = V(I_1) \supseteq V(I_1 \cap I_2) = V$
$\quad\Rightarrow V_1 = V$
\end{description}
\end{Bew}
%%% End remark: V irreducible iff I\left(V\right) prime ----------------------------------------------------------------------------------------------
%%% Proposition: Ring-Morphism -> continouus f --------------------------------------------------------------------------------------------
\begin{Prop}
Jeder Morphismus $\alpha\colon R \to R'$ von Ringen induziert durch $f_{ \alpha} \left(\mathfrak{p} \right) = \alpha^{-1}( \mathfrak{p} )$
eine stetige Abbildung $f_{\alpha}\colon \Spec R' \to \Spec R$.
\end{Prop}
\begin{Bew}
$\alpha^{-1}\left( \mathfrak{p} \right)$ ist Primideal. Ist $V(I) \subseteq \Spec R$ abgeschlossen, dann ist
$f_{\alpha}^{-1}\left( V\left(I\right) \right) = V\left( \alpha\left( I \right) \right)$
\end{Bew}
%%% End Proposition Ring Morphism -> continouus f ----------------------------------------------------------------------------------------
%%% Remark: affine Varieties/Spectrum ----------------------------------------------------------------------------------------------------
\begin{Bem}
Sei $k$ algebraisch abgeschlossen, $V \subseteq \mathbb{A}^{n}\left(k\right)$ affine Varietät.
Dann ist
\[ m\colon V \to \Spec k[V],\ x \mapsto m_x \]
stetig und injektiv.
\end{Bem}
\begin{Bew}
Die maximalen Ideale in $k[V]$ entsprechen bijektiv den Punkten in $V$. Also ist $m$ injektiv.
Sei nun $V\left(I\right) \subseteq \Spec k[V]$ abgeschlossen, dann ist
\begin{align*}
m^{-1}\left( V(I\right)) &= \left\{ x \in V\ |\ m_x \in V\left(I\right) \right\} \\
&= \left\{ x \in V\ |\ I \subseteq m_x \right\} \\
&= \left\{ x \in V\ |\ f\left(x\right) = 0 \text{ für alle } x\in I \right\} \\
&= V\left(I\right) \text{ im Sinne von affinen Varietäten}
\end{align*}
\end{Bew}
%%% End remark: affine Varieties/Spectrum -----------------------------------------------------------------------------------------------
%%% Definition: Generic Point -----------------------------------------------------------------------------------------------------------
\begin{BemDef}[Generischer Punkt]
\begin{enumerate}[(a)]
\item Ein Punkt $x$ in einem topologischen Raum $X$ heißt \emph{generisch}, falls $\closure{ \left\{x\right\} } = X$.
\item Jede abgeschlossene, irreduzible Teilmenge von $\Spec R$ ($R$ ein Ring) besitzt genau einen generischen Punkt.
\item Die maximalen, irreduziblen Teilmengen von $\Spec R$ entsprechen bijektiv den minimalen Primidealen in $R$.
\end{enumerate}
\end{BemDef}
\begin{Bew}
\begin{enumerate}[(a)]
\item[(b)] Sei $V = V\left(I\right) \subseteq \Spec R$ abgeschlossen und irreduzibel.
Nach Bemerkung~\ref{bem:irreducible-prime_ideal} ist $I\left(V\right) = \rad{I}$ ein Primideal.
Es ist $I \subseteq \rad{I}$ und somit auch $\rad{I} \in V$.
Ist $W = V\left(J\right)$ eine abgeschlossene Menge mit $\rad{I} \in W$, dann ist $J \subseteq \rad{I}$ und für jedes
Primideal $\mathfrak{p}$ mit $I \subseteq \mathfrak{p}$ ist $J \subseteq \rad{I} \subseteq \mathfrak{p}$
$\Rightarrow \closure{ \left\{ \rad{I} \right\} } = V$.
\item[(c)] Folgt aus Bemerkung~\ref{bem:irreducible-prime_ideal}.
\end{enumerate}
\end{Bew}
%%% End Definition: Generic Point ------------------------------------------------------------------------------------------------------