-
Notifications
You must be signed in to change notification settings - Fork 152
/
obsolete.tex
4695 lines (4203 loc) · 165 KB
/
obsolete.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
\input{preamble}
% OK, start here.
%
\begin{document}
\title{Obsolete}
\maketitle
\phantomsection
\label{section-phantom}
\tableofcontents
\section{Introduction}
\label{section-introduction}
\noindent
In this chapter we put some lemmas that have become ``obsolete''
(see \cite{Miller}).
\section{Preliminaries}
\label{section-preliminaries}
\begin{remark}
\label{remark-composition-of-adjoints-isomorphic-to-identity}
The information which used to be contained in this remark is now
subsumed in the combination of
Categories, Lemmas \ref{categories-lemma-adjoint-fully-faithful} and
\ref{categories-lemma-left-adjoint-composed-fully-faithful}.
\end{remark}
\section{Homological algebra}
\label{section-homological-algebra}
\begin{remark}
\label{remark-weak-serre-subcategory}
The following remarks are obsolete as they are subsumed in
Homology, Lemmas \ref{homology-lemma-biregular-ss-converges} and
\ref{homology-lemma-first-quadrant-ss}.
Let $\mathcal{A}$ be an abelian category.
Let $\mathcal{C} \subset \mathcal{A}$
be a weak Serre subcategory (see
Homology, Definition \ref{homology-definition-serre-subcategory}).
Suppose that $K^{\bullet, \bullet}$ is a double complex to which
Homology, Lemma \ref{homology-lemma-first-quadrant-ss}
applies such that for some $r \geq 0$ all the objects
${}'E_r^{p, q}$ belong to $\mathcal{C}$. Then all the cohomology groups
$H^n(sK^\bullet)$ belong to $\mathcal{C}$. Namely, the assumptions imply
that the kernels and images of ${}'d_r^{p, q}$ are in $\mathcal{C}$.
Whereupon we see that each ${}'E_{r + 1}^{p, q}$ is in $\mathcal{C}$.
By induction we see that each ${}'E_\infty^{p, q}$ is in $\mathcal{C}$.
Hence each $H^n(sK^\bullet)$ has a finite filtration whose subquotients
are in $\mathcal{C}$. Using that $\mathcal{C}$ is closed under extensions
we conclude that $H^n(sK^\bullet)$ is in $\mathcal{C}$ as claimed.
The same result holds for the second spectral sequence associated
to $K^{\bullet, \bullet}$. Similarly, if $(K^\bullet, F)$ is a filtered
complex to which
Homology, Lemma \ref{homology-lemma-biregular-ss-converges}
applies and for some $r \geq 0$ all the objects $E_r^{p, q}$
belong to $\mathcal{C}$, then each $H^n(K^\bullet)$ is
an object of $\mathcal{C}$.
\end{remark}
\section{Obsolete algebra lemmas}
\label{section-algebra}
\begin{lemma}
\label{lemma-finite-presentation-module-independent}
Let $M$ be an $R$-module of finite presentation.
For any surjection $\alpha : R^{\oplus n} \to M$ the
kernel of $\alpha$ is a finite $R$-module.
\end{lemma}
\begin{proof}
This is a special case of Algebra, Lemma \ref{algebra-lemma-extension}.
\end{proof}
\begin{lemma}
\label{lemma-p-ring-map}
Let $\varphi : R \to S$ be a ring map. If
\begin{enumerate}
\item for any $x \in S$ there exists $n > 0$ such that
$x^n$ is in the image of $\varphi$, and
\item for any $x \in \Ker(\varphi)$ there exists $n > 0$
such that $x^n = 0$,
\end{enumerate}
then $\varphi$ induces a homeomorphism on spectra. Given a
prime number $p$ such that
\begin{enumerate}
\item[(a)] $S$ is generated as an $R$-algebra by elements $x$ such
that there exists an $n > 0$ with $x^{p^n} \in \varphi(R)$ and
$p^nx \in \varphi(R)$, and
\item[(b)] the kernel of $\varphi$ is generated by nilpotent elements,
\end{enumerate}
then (1) and (2) hold, and for any ring map $R \to R'$
the ring map $R' \to R' \otimes_R S$ also satisfies (a), (b), (1), and (2)
and in particular induces a homeomorphism on spectra.
\end{lemma}
\begin{proof}
This is a combination of
Algebra, Lemmas \ref{algebra-lemma-powers} and
\ref{algebra-lemma-p-ring-map}.
\end{proof}
\noindent
The following technical lemma says that you can lift any sequence
of relations from a fibre to the whole space of a ring
map which is essentially of finite type, in a suitable sense.
\begin{lemma}
\label{lemma-lift-elements-ideal}
Let $R \to S$ be a ring map.
Let $\mathfrak p \subset R$ be a prime.
Let $\mathfrak q \subset S$ be a prime lying over $\mathfrak p$.
Assume $S_{\mathfrak q}$ is essentially of finite type over $R_\mathfrak p$.
Assume given
\begin{enumerate}
\item an integer $n \geq 0$,
\item a prime $\mathfrak a \subset \kappa(\mathfrak p)[x_1, \ldots, x_n]$,
\item a surjective $\kappa(\mathfrak p)$-homomorphism
$$
\psi : (\kappa(\mathfrak p)[x_1, \ldots, x_n])_{\mathfrak a}
\longrightarrow
S_{\mathfrak q}/\mathfrak p S_{\mathfrak q},
$$
and
\item elements $\overline{f}_1, \ldots, \overline{f}_e$ in $\Ker(\psi)$.
\end{enumerate}
Then there exist
\begin{enumerate}
\item an integer $m \geq 0$,
\item and element $g \in S$, $g \not\in \mathfrak q$,
\item a map
$$
\Psi :
R[x_1, \ldots, x_n, x_{n + 1}, \ldots, x_{n + m}]
\longrightarrow
S_g,
$$
and
\item elements $f_1, \ldots, f_e, f_{e + 1}, \ldots, f_{e + m}$
of $\Ker(\Psi)$
\end{enumerate}
such that
\begin{enumerate}
\item the following diagram commutes
$$
\xymatrix{
R[x_1, \ldots, x_{n + m}] \ar[d]_\Psi
\ar[rr]_-{x_{n + j} \mapsto 0} & &
(\kappa(\mathfrak p)[x_1, \ldots, x_n])_{\mathfrak a} \ar[d]^\psi \\
S_g \ar[rr] & &
S_{\mathfrak q}/\mathfrak p S_{\mathfrak q}
},
$$
\item the element $f_i$, $i \leq n$ maps to a unit times
$\overline{f}_i$ in the local ring
$$
(\kappa(\mathfrak p)[x_1, \ldots, x_{n + m}])_{
(\mathfrak a, x_{n + 1}, \ldots, x_{n + m})},
$$
\item the element $f_{e + j}$ maps to
a unit times $x_{n + j}$ in the same local ring, and
\item the induced map $R[x_1, \ldots, x_{n + m}]_{\mathfrak b}
\to S_{\mathfrak q}$ is surjective, where
$\mathfrak b = \Psi^{-1}(\mathfrak qS_g)$.
\end{enumerate}
\end{lemma}
\begin{proof}
We claim that it suffices to prove the lemma in case $R$
and $S$ are local with maximal ideals $\mathfrak p$ and $\mathfrak q$.
Namely, suppose we have constructed
$$
\Psi' : R_{\mathfrak p}[x_1, \ldots, x_{n + m}]
\longrightarrow
S_{\mathfrak q}
$$
and $f_1', \ldots, f_{e + m}' \in R_{\mathfrak p}[x_1, \ldots, x_{n + m}]$
with all the required properties. Then there exists an element
$f \in R$, $f \not \in \mathfrak p$ such that each
$ff_k'$ comes from an element $f_k \in R[x_1, \ldots, x_{n + m}]$.
Moreover, for a suitable $g \in S$, $g \not \in \mathfrak q$
the elements $\Psi'(x_i)$ are the image of elements
$y_i \in S_g$. Let $\Psi$ be the $R$-algebra map defined
by the rule $\Psi(x_i) = y_i$. Since $\Psi(f_i)$ is zero
in the localization $S_{\mathfrak q}$ we may after possibly
replacing $g$ assume that $\Psi(f_i) = 0$. This proves the claim.
\medskip\noindent
Thus we may assume $R$ and $S$ are local
with maximal ideals $\mathfrak p$ and $\mathfrak q$.
Pick $y_1, \ldots, y_n \in S$ such that
$y_i \bmod \mathfrak pS = \psi(x_i)$.
Let $y_{n + 1}, \ldots, y_{n + m} \in S$ be elements which generate
an $R$-subalgebra of which $S$ is the localization.
These exist by the assumption that $S$ is essentially of
finite type over $R$. Since $\psi$ is surjective we
may write $y_{n + j} \bmod \mathfrak pS = \psi(h_j)$ for
some $h_j \in \kappa(\mathfrak p)[x_1, \ldots, x_n]_{\mathfrak a}$.
Write $h_j = g_j/d$, $g_j \in \kappa(\mathfrak p)[x_1, \ldots, x_n]$
for some common denominator $d \in \kappa(\mathfrak p)[x_1, \ldots, x_n]$,
$d \not \in \mathfrak a$. Choose lifts $G_j, D \in R[x_1, \ldots, x_n]$
of $g_j$ and $d$. Set
$y_{n + j}' = D(y_1, \ldots, y_n) y_{n + j} - G_j(y_1, \ldots, y_n)$.
By construction $y_{n + j}' \in \mathfrak p S$.
It is clear that $y_1, \ldots, y_n, y_n', \ldots, y_{n + m}'$
generate an $R$-subalgebra of $S$ whose localization is $S$.
We define
$$
\Psi : R[x_1, \ldots, x_{n + m}] \to S
$$
to be the map that sends $x_i$ to $y_i$ for $i = 1, \ldots, n$
and $x_{n + j}$ to $y'_{n + j}$ for $j = 1, \ldots, m$. Properties
(1) and (4) are clear by construction. Moreover the ideal
$\mathfrak b$ maps onto the ideal
$(\mathfrak a, x_{n + 1}, \ldots, x_{n + m})$
in the polynomial ring $\kappa(\mathfrak p)[x_1, \ldots, x_{n + m}]$.
\medskip\noindent
Denote $J = \Ker(\Psi)$. We have a short exact sequence
$$
0 \to J_{\mathfrak b}
\to R[x_1, \ldots, x_{n + m}]_{\mathfrak b}
\to S_{\mathfrak q}
\to 0.
$$
The surjectivity comes from our choice of
$y_1, \ldots, y_n, y_n', \ldots, y_{n + m}'$ above.
This implies that
$$
J_{\mathfrak b}/ \mathfrak pJ_{\mathfrak b}
\to \kappa(\mathfrak p)[x_1, \ldots, x_{n + m}]_{
(\mathfrak a, x_{n + 1}, \ldots, x_{n + m})}
\to S_{\mathfrak q}/\mathfrak pS_{\mathfrak q}
\to 0
$$
is exact. By construction $x_i$ maps to $\psi(x_i)$ and
$x_{n + j}$ maps to zero under the last map.
Thus it is easy to choose $f_i$ as in
(2) and (3) of the lemma.
\end{proof}
\begin{remark}[Projective resolutions]
\label{remark-projective-resolution}
Let $R$ be a ring.
For any set $S$ we let $F(S)$ denote the free $R$-module on $S$.
Then any left $R$-module has the following two step resolution
$$
F(M \times M) \oplus F(R \times M) \to F(M) \to M \to 0.
$$
The first map is given by the rule
$$
[m_1, m_2] \oplus [r, m] \mapsto [m_1 + m_2] - [m_1] - [m_2] + [rm] - r[m].
$$
\end{remark}
\begin{lemma}
\label{lemma-spec-localization-first}
Let $S$ be a multiplicative set of $A$. Then the map
$$
f: \Spec(S^{-1}A)\longrightarrow \Spec(A)
$$
induced by the canonical ring map
$A \to S^{-1}A$ is a homeomorphism onto its image and
$\Im(f) = \{ \mathfrak p \in \Spec(A) : \mathfrak p\cap S = \emptyset \}$.
\end{lemma}
\begin{proof}
This is a duplicate of Algebra, Lemma \ref{algebra-lemma-spec-localization}.
\end{proof}
\begin{lemma}
\label{lemma-finite-type-flat-over-integral-algebra}
Let $A \to B$ be a finite type, flat ring map with $A$ an integral
domain. Then $B$ is a finitely presented $A$-algebra.
\end{lemma}
\begin{proof}
Special case of More on Flatness, Proposition
\ref{flat-proposition-flat-finite-type-finite-presentation-domain}.
\end{proof}
\begin{lemma}
\label{lemma-helper-finite-type-flat-finite-presentation}
Let $R$ be a domain with fraction field $K$.
Let $S = R[x_1, \ldots, x_n]$ be a polynomial ring over $R$.
Let $M$ be a finite $S$-module. Assume that $M$ is flat over $R$.
If for every subring $R \subset R' \subset K$, $R \not = R'$
the module $M \otimes_R R'$ is finitely presented
over $S \otimes_R R'$, then $M$ is finitely presented over $S$.
\end{lemma}
\begin{proof}
This lemma is true because $M$ is finitely presented even without the
assumption that $M \otimes_R R'$ is finitely presented for every $R'$
as in the statement of the lemma. This follows from More on Flatness,
Proposition \ref{flat-proposition-flat-finite-type-finite-presentation-domain}.
Originally this lemma had an erroneous proof (thanks to Ofer Gabber
for finding the gap) and was used in an alternative proof of
the proposition cited. To reinstate this lemma, we need a correct argument
in case $R$ is a local normal domain using only
results from the chapters on commutative algebra; please email
\href{mailto:[email protected]}{[email protected]}
if you have an argument.
\end{proof}
\begin{lemma}
\label{lemma-relative-effective-cartier-algebra}
Let $A \to B$ be a ring map. Let $f \in B$. Assume that
\begin{enumerate}
\item $A \to B$ is flat,
\item $f$ is a nonzerodivisor, and
\item $A \to B/fB$ is flat.
\end{enumerate}
Then for every ideal $I \subset A$ the map
$f : B/IB \to B/IB$ is injective.
\end{lemma}
\begin{proof}
Note that $IB = I \otimes_A B$ and $I(B/fB) = I \otimes_A B/fB$
by the flatness of $B$ and $B/fB$ over $A$.
In particular $IB/fIB \cong I \otimes_A B/fB$ maps injectively
into $B/fB$. Hence the result follows from the snake lemma applied
to the diagram
$$
\xymatrix{
0 \ar[r] &
I \otimes_A B \ar[r] \ar[d]^f &
B \ar[r] \ar[d]^f &
B/IB \ar[r] \ar[d]^f &
0 \\
0 \ar[r] &
I \otimes_A B \ar[r] &
B \ar[r] &
B/IB \ar[r] &
0
}
$$
with exact rows.
\end{proof}
\begin{lemma}
\label{lemma-faithfully-flat-injective}
If $R \to S$ is a faithfully flat ring map then for every $R$-module
$M$ the map $M \to S \otimes_R M$, $x \mapsto 1 \otimes x$ is injective.
\end{lemma}
\begin{proof}
This lemma is a duplicate of
Algebra, Lemma \ref{algebra-lemma-faithfully-flat-universally-injective}.
\end{proof}
\begin{remark}
\label{remark-section-colimits}
This reference/tag used to refer to a Section in
the chapter Smoothing Ring Maps, but the material has
since been subsumed in Algebra, Section \ref{algebra-section-colimits-flat}.
\end{remark}
\begin{lemma}
\label{lemma-not-domain}
Let $(R, \mathfrak m)$ be a reduced Noetherian local ring of dimension $1$
and let $x \in \mathfrak m$ be a nonzerodivisor. Let
$\mathfrak q_1, \ldots, \mathfrak q_r$ be the minimal primes of $R$.
Then
$$
\text{length}_R(R/(x)) = \sum\nolimits_i \text{ord}_{R/\mathfrak q_i}(x)
$$
\end{lemma}
\begin{proof}
Special (very easy) case of
Chow Homology, Lemma \ref{chow-lemma-additivity-divisors-restricted}.
\end{proof}
\begin{lemma}
\label{lemma-bound-primes}
Let $A$ be a Noetherian local normal domain of dimension $2$.
For $f \in \mathfrak m$ nonzero denote
$\text{div}(f) = \sum n_i (\mathfrak p_i)$
the divisor associated to $f$ on the punctured spectrum of $A$.
We set $|f| = \sum n_i$. There exist integers $N$ and $M$
such that $|f + g| \leq M$ for all $g \in \mathfrak m^N$.
\end{lemma}
\begin{proof}
Pick $h \in \mathfrak m$ such that $f, h$ is a regular sequence in $A$
(this follows from Algebra, Lemmas \ref{algebra-lemma-criterion-normal} and
\ref{algebra-lemma-depth-drops-by-one}).
We will prove the lemma with $M = \text{length}_A(A/(f, h))$ and with
$N$ any integer such that $\mathfrak m^N \subset (f, h)$. Such
an integer $N$ exists because $\sqrt{(f, h)} = \mathfrak m$. Note that
$M = \text{length}_A(A/(f + g, h))$ for all $g \in \mathfrak m^N$
because $(f, h) = (f + g, h)$. This moreover implies that $f + g, h$
is a regular sequence in $A$ too, see
Algebra, Lemma \ref{algebra-lemma-reformulate-CM}.
Now suppose that $\text{div}(f + g ) = \sum m_j (\mathfrak q_j)$.
Then consider the map
$$
c : A/(f + g) \longrightarrow \prod A/\mathfrak q_j^{(m_j)}
$$
where $\mathfrak q_j^{(m_j)}$ is the symbolic power, see
Algebra, Section \ref{algebra-section-symbolic-power}.
Since $A$ is normal, we see that $A_{\mathfrak q_i}$ is
a discrete valuation ring and hence
$$
A_{\mathfrak q_i}/(f + g) =
A_{\mathfrak q_i}/\mathfrak q_i^{m_i} A_{\mathfrak q_i} =
(A/\mathfrak q_i^{(m_i)})_{\mathfrak q_i}
$$
Since $V(f + g, h) = \{\mathfrak m\}$ this implies that $c$ becomes
an isomorphism on inverting $h$ (small detail omitted). Since $h$ is a
nonzerodivisor on $A/(f + g)$ we see that the length of $A/(f + g, h)$
equals the Herbrand quotient $e_A(A/(f + g), 0, h)$
as defined in Chow Homology, Section
\ref{chow-section-periodic-complexes}.
Similarly the length of $A/(h, \mathfrak q_j^{(m_j)})$ equals
$e_A(A/\mathfrak q_j^{(m_j)}, 0, h)$. Then we have
\begin{align*}
M & = \text{length}_A(A/(f + g, h) \\
& =
e_A(A/(f + g), 0, h) \\
& =
\sum\nolimits_i e_A(A/\mathfrak q_j^{(m_j)}, 0, h) \\
& =
\sum\nolimits_i \sum\nolimits_{m = 0, \ldots, m_j - 1}
e_A(\mathfrak q_j^{(m)}/\mathfrak q_j^{(m + 1)}, 0, h)
\end{align*}
The equalities follow from Chow Homology, Lemmas
\ref{chow-lemma-additivity-periodic-length} and
\ref{chow-lemma-finite-periodic-length}
using in particular that
the cokernel of $c$ has finite length as discussed above.
It is straightforward to prove that
$e_A(\mathfrak q^{(m)}/\mathfrak q^{(m + 1)}, 0, h)$
is at least $1$ by Nakayama's lemma. This finishes the proof of the lemma.
\end{proof}
\begin{lemma}
\label{lemma-flat-over-gorenstein-gorenstein-fibre}
Let $A \to B$ be a flat local homomorphism of Noetherian local rings.
If $A$ and $B/\mathfrak m_A B$ are Gorenstein, then $B$ is Gorenstein.
\end{lemma}
\begin{proof}
Follows immediately from
Dualizing Complexes, Lemma \ref{dualizing-lemma-flat-under-gorenstein}.
\end{proof}
\begin{lemma}
\label{lemma-kill-local}
Let $(A, \mathfrak m)$ be a Noetherian local ring.
Let $I \subset A$ be an ideal. Let $M$ be a finite $A$-module.
Let $s$ be an integer. Assume
\begin{enumerate}
\item $A$ has a dualizing complex,
\item if $\mathfrak p \not \in V(I)$ and
$V(\mathfrak p) \cap V(I) \not = \{\mathfrak m\}$, then
$\text{depth}_{A_\mathfrak p}(M_\mathfrak p) + \dim(A/\mathfrak p) > s$.
\end{enumerate}
Then there exists an $n > 0$ and an ideal $J \subset A$
with $V(J) \cap V(I) = \{\mathfrak m\}$ such that $JI^n$ annihilates
$H^i_\mathfrak m(M)$ for $i \leq s$.
\end{lemma}
\begin{proof}
According to
Local Cohomology, Lemma \ref{local-cohomology-lemma-sitting-in-degrees}
we have to show this for the finite $A$-module
$E^i = \text{Ext}^{-i}_A(M, \omega_A^\bullet)$
for $i \leq s$. The support $Z$ of $E^0 \oplus \ldots \oplus E^s$
is closed in $\Spec(A)$ and does not contain any prime as in (2).
Hence it is contained in $V(JI^n)$ for some $J$ as in
the statement of the lemma.
\end{proof}
\begin{lemma}
\label{lemma-algebraize-local-cohomology-bis-bis}
Let $(A, \mathfrak m)$ be a Noetherian local ring.
Let $I \subset A$ be an ideal. Let $M$ be a finite $A$-module.
Let $s$ and $d$ be integers. Assume
\begin{enumerate}
\item[(a)] $A$ has a dualizing complex,
\item[(b)] $\text{cd}(A, I) \leq d$,
\item[(c)] if $\mathfrak p \not \in V(I)$ then
$\text{depth}_{A_\mathfrak p}(M_\mathfrak p) > s$ or
$\text{depth}_{A_\mathfrak p}(M_\mathfrak p) + \dim(A/\mathfrak p) > d + s$.
\end{enumerate}
Then the assumptions of
Algebraic and Formal Geometry, Lemma
\ref{algebraization-lemma-algebraize-local-cohomology-bis} hold
for $A, I, \mathfrak m, M$ and
$H^i_\mathfrak m(M) \to \lim H^i_\mathfrak m(M/I^nM)$
is an isomorphism for $i \leq s$ and these modules are
annihilated by a power of $I$.
\end{lemma}
\begin{proof}
The assumptions of Algebraic and Formal Geometry, Lemma
\ref{algebraization-lemma-algebraize-local-cohomology-bis}
by the more general Algebraic and Formal Geometry, Lemma
\ref{algebraization-lemma-bootstrap-bis-bis}.
Then the conclusion of Algebraic and Formal Geometry, Lemma
\ref{algebraization-lemma-algebraize-local-cohomology-bis}
gives the second statement.
\end{proof}
\begin{lemma}
\label{lemma-combine-one}
In Algebraic and Formal Geometry, Situation
\ref{algebraization-situation-bootstrap}
we have $H^s_\mathfrak a(M) = \lim H^s_\mathfrak a(M/I^nM)$.
\end{lemma}
\begin{proof}
This is immediate from Algebraic and Formal Geometry, Theorem
\ref{algebraization-theorem-final-bootstrap}.
The original version of this lemma, which had additional
assumptions, was superseded by the this theorem.
\end{proof}
\begin{lemma}
\label{lemma-fully-faithful-simple-one}
Let $A$ be a Noetherian ring. Let $f \in \mathfrak a$ be an element of
an ideal of $A$. Let $U = \Spec(A) \setminus V(\mathfrak a)$. Assume
\begin{enumerate}
\item $A$ has a dualizing complex and is complete with respect to $f$,
\item $A_f$ is $(S_2)$ and for every minimal prime $\mathfrak p \subset A$,
$f \not \in \mathfrak p$ and
$\mathfrak q \in V(\mathfrak p) \cap V(\mathfrak a)$ we have
$\dim((A/\mathfrak p)_\mathfrak q) \geq 3$.
\end{enumerate}
Then the completion functor
$$
\textit{Coh}(\mathcal{O}_U)
\longrightarrow
\textit{Coh}(U, I\mathcal{O}_U),
\quad
\mathcal{F} \longmapsto \mathcal{F}^\wedge
$$
is fully faithful on the full subcategory of finite locally free objects.
\end{lemma}
\begin{proof}
This lemma is a special case of Algebraic and Formal Geometry, Lemma
\ref{algebraization-lemma-fully-faithful-simple-two}.
\end{proof}
\section{Lemmas related to ZMT}
\label{section-ZMT}
\noindent
The lemmas in this section were originally used in the proof of the
(algebraic version of) Zariski's Main Theorem,
Algebra, Theorem \ref{algebra-theorem-main-theorem}.
\begin{lemma}
\label{lemma-change-equation-multiply}
Let $R$ be a ring and let $\varphi : R[x] \to S$ be
a ring map. Let $t \in S$. If $t$ is integral over
$R[x]$, then there exists an $\ell \geq 0$ such that
for every $a \in R$ the element $\varphi(a)^\ell t$
is integral over $\varphi_a : R[y] \to S$, defined by
$y \mapsto \varphi(ax)$ and $r \mapsto \varphi(r)$
for $r\in R$.
\end{lemma}
\begin{proof}
Say $t^d + \sum_{i < d} \varphi(f_i)t^i = 0$
with $f_i \in R[x]$. Let $\ell$ be the maximum degree
in $x$ of all the $f_i$. Multiply the equation
by $\varphi(a)^\ell$ to get
$\varphi(a)^\ell t^d + \sum_{i < d} \varphi(a^\ell f_i)t^i = 0$.
Note that each $\varphi(a^\ell f_i)$ is in the image of
$\varphi_a$. The result follows from
Algebra, Lemma \ref{algebra-lemma-make-integral-trivial}.
\end{proof}
\begin{lemma}
\label{lemma-make-integral-less-trivial}
Let $\varphi : R \to S$ be a ring map.
Suppose $t \in S$ satisfies the
relation $\varphi(a_0) + \varphi(a_1)t + \ldots + \varphi(a_n) t^n = 0$.
Set $u_n = \varphi(a_n)$, $u_{n-1} = u_n t + \varphi(a_{n-1})$,
and so on till $u_1 = u_2 t + \varphi(a_1)$.
Then all of $u_n, u_{n-1}, \ldots, u_1$ and
$u_nt, u_{n-1}t, \ldots, u_1t$ are integral over $R$,
and the ideals $(\varphi(a_0), \ldots, \varphi(a_n))$ and
$(u_n, \ldots, u_1)$ of $S$ are equal.
\end{lemma}
\begin{proof}
We prove this by induction on $n$. As $u_n = \varphi(a_n)$ we
conclude from
Algebra, Lemma \ref{algebra-lemma-make-integral-trivial}
that $u_nt$ is integral over $R$. Of course
$u_n = \varphi(a_n)$ is integral over $R$. Then
$u_{n - 1} = u_n t + \varphi(a_{n - 1})$ is integral over $R$ (see
Algebra, Lemma \ref{algebra-lemma-integral-closure-is-ring})
and we have
$$
\varphi(a_0) + \varphi(a_1)t + \ldots + \varphi(a_{n - 1})t^{n - 1} +
u_{n - 1}t^{n - 1} = 0.
$$
Hence by the induction hypothesis applied to the map
$S' \to S$ where $S'$ is the integral closure of $R$ in $S$
and the displayed equation we see that
$u_{n-1}, \ldots, u_1$ and $u_{n-1}t, \ldots, u_1t$
are all in $S'$ too. The statement on the ideals is immediate from the
shape of the elements and the fact that $u_1t + \varphi(a_0) = 0$.
\end{proof}
\begin{lemma}
\label{lemma-make-integral-not-in-ideal}
Let $\varphi : R \to S$ be a ring map.
Suppose $t \in S$ satisfies the
relation $\varphi(a_0) + \varphi(a_1)t + \ldots + \varphi(a_n) t^n = 0$.
Let $J \subset S$ be an ideal such that for at
least one $i$ we have $\varphi(a_i) \not \in J$.
Then there exists a $u \in S$, $u \not\in J$ such
that both $u$ and $ut$ are integral over $R$.
\end{lemma}
\begin{proof}
This is immediate from Lemma \ref{lemma-make-integral-less-trivial}
since one of the elements $u_i$ will not be in $J$.
\end{proof}
\noindent
The following two lemmas are a way of describing closed
subschemes of $\mathbf{P}^1_R$ cut out by one (nondegenerate)
equation.
\begin{lemma}
\label{lemma-P1}
Let $R$ be a ring.
Let $F(X, Y) \in R[X, Y]$ be homogeneous of degree
$d$. Assume that for every prime $\mathfrak p$ of $R$
at least one coefficient of $F$ is not in $\mathfrak p$.
Let $S = R[X, Y]/(F)$ as a graded ring.
Then for all $n \geq d$ the $R$-module $S_n$
is finite locally free of rank $d$.
\end{lemma}
\begin{proof}
The $R$-module $S_n$ has a presentation
$$
R[X, Y]_{n-d} \to R[X, Y]_n \to S_n \to 0.
$$
Thus by Algebra, Lemma \ref{algebra-lemma-cokernel-flat}
it is enough to show that multiplication
by $F$ induces an injective map
$\kappa(\mathfrak p)[X, Y]
\to \kappa(\mathfrak p)[X, Y]$
for all primes $\mathfrak p$.
This is clear from the assumption that
$F$ does not map to the zero polynomial mod $\mathfrak p$.
The assertion on ranks is clear from this as well.
\end{proof}
\begin{lemma}
\label{lemma-rel-prime-pols}
Let $k$ be a field. Let $F, G \in k[X, Y]$ be homogeneous
of degrees $d, e$. Assume $F, G$ relatively prime.
Then multiplication by $G$ is injective on $S = k[X, Y]/(F)$.
\end{lemma}
\begin{proof}
This is one way to define ``relatively prime''. If you have another
definition, then you can show it is equivalent to this one.
\end{proof}
\begin{lemma}
\label{lemma-P1-localize}
Let $R$ be a ring. Let $F(X, Y) \in R[X, Y]$ be homogeneous of degree
$d$. Let $S = R[X, Y]/(F)$ as a graded ring.
Let $\mathfrak p \subset R$ be a prime such that
some coefficient of $F$ is not in $\mathfrak p$.
There exists an $f \in R$ $f \not\in \mathfrak p$,
an integer $e$, and a $G \in R[X, Y]_e$
such that multiplication by $G$ induces isomorphisms
$(S_n)_f \to (S_{n + e})_f$ for all $n \geq d$.
\end{lemma}
\begin{proof}
During the course of the proof we may replace $R$ by $R_f$
for $f\in R$, $f\not\in \mathfrak p$ (finitely often).
As a first step we do such a replacement such that
some coefficient of $F$ is invertible in $R$.
In particular the modules $S_n$ are now locally
free of rank $d$ for $n \geq d$ by Lemma \ref{lemma-P1}.
Pick any $G \in R[X, Y]_e$ such that the image of
$G$ in $\kappa(\mathfrak p)[X, Y]$ is relatively
prime to the image of $F(X, Y)$ (this is possible for some $e$).
Apply Algebra, Lemma \ref{algebra-lemma-cokernel-flat} to the map
induced by multiplication by $G$ from $S_d \to S_{d + e}$.
By our choice of $G$ and Lemma \ref{lemma-rel-prime-pols}
we see
$S_d \otimes \kappa(\mathfrak p) \to S_{d + e} \otimes \kappa(\mathfrak p)$
is bijective. Thus, after replacing $R$ by $R_f$ for a suitable
$f$ we may assume that $G : S_d \to S_{d + e}$
is bijective. This in turn implies that the image
of $G$ in $\kappa(\mathfrak p')[X, Y]$ is relatively
prime to the image of $F$ for all primes $\mathfrak p'$
of $R$. And then by Algebra, Lemma \ref{algebra-lemma-cokernel-flat}
again we see that all the maps
$G : S_d \to S_{d + e}$, $n \geq d$ are isomorphisms.
\end{proof}
\begin{remark}
\label{remark-algebra}
Let $R$ be a ring. Suppose that we have $F \in R[X, Y]_d$
and $G \in R[X, Y]_e$ such that, setting $S = R[X, Y]/(F)$
we have (1) $S_n$ is finite locally free of rank $d$ for
all $n \geq d$, and (2) multiplication by $G$ defines
isomorphisms $S_n \to S_{n + e}$ for all $n \geq d$. In this
case we may define a finite, locally free $R$-algebra
$A$ as follows:
\begin{enumerate}
\item as an $R$-module $A = S_{ed}$, and
\item multiplication $A \times A \to A$ is given by
the rule that $H_1 H_2 = H_3$ if and only if $G^d H_3 = H_1 H_2$
in $S_{2ed}$.
\end{enumerate}
This makes sense because multiplication by $G^d$
induces a bijective map $S_{de} \to S_{2de}$.
It is easy to see that this defines a ring structure.
Note the confusing fact that the element $G^d$
defines the unit element of the ring $A$.
\end{remark}
\begin{lemma}
\label{lemma-finite-after-localization}
Let $R$ be a ring, let $f \in R$.
Suppose we have $S$, $S'$ and the solid arrows
forming the following commutative diagram of rings
$$
\xymatrix{
& S'' \ar@{-->}[rd] \ar@{-->}[dd] &
\\
R \ar[rr] \ar@{-->}[ru] \ar[d] & & S \ar[d]
\\
R_f \ar[r] & S' \ar[r] & S_f
}
$$
Assume that $R_f \to S'$ is finite. Then we can find
a finite ring map $R \to S''$ and dotted arrows as
in the diagram such that $S' = (S'')_f$.
\end{lemma}
\begin{proof}
Namely, suppose that $S'$ is generated by
$x_i$ over $R_f$, $i = 1, \ldots, w$. Let $P_i(t) \in R_f[t]$
be a monic polynomial such that $P_i(x_i) = 0$.
Say $P_i$ has degree $d_i > 0$. Write
$P_i(t) = t^{d_i} + \sum_{j < d_i} (a_{ij}/f^n) t^j$
for some uniform $n$. Also write
the image of $x_i$ in $S_f$ as $g_i / f^n$
for suitable $g_i \in S$. Then we know
that the element
$\xi_i = f^{nd_i} g_i^{d_i} + \sum_{j < d_i} f^{n(d_i - j)} a_{ij} g_i^j$
of $S$ is killed by a power of $f$.
Hence upon increasing $n$ to $n'$, which replaces
$g_i$ by $f^{n' - n}g_i$ we may assume $\xi_i = 0$.
Then $S'$ is generated by the elements
$f^n x_i$, each of which is a zero of the
monic polynomial $Q_i(t) = t^{d_i} +
\sum_{j < d_i} f^{n(d_i - j)} a_{ij} t^j$
with coefficients in $R$. Also, by construction
$Q_i(f^ng_i) = 0$ in $S$. Thus we get a finite $R$-algebra
$S'' = R[z_1, \ldots, z_w]/(Q_1(z_1), \ldots, Q_w(z_w))$
which fits into a commutative diagram as above.
The map $\alpha : S'' \to S$ maps $z_i$ to $f^ng_i$ and
the map $\beta : S'' \to S'$ maps $z_i$ to $f^nx_i$.
It may not yet be the case that $\beta$ induces an
isomorphism $(S'')_f \cong S'$.
For the moment we only know that this map
is surjective. The problem is that there could be
elements $h/f^n \in (S'')_f$ which map to zero
in $S'$ but are not zero. In this case $\beta(h)$
is an element of $S$ such that $f^N \beta(h) = 0$
for some $N$. Thus $f^N h$ is an element of the ideal
$J = \{h \in S'' \mid \alpha(h) = 0 \text{ and }
\beta(h) = 0\}$ of $S''$. OK, and it is easy to see that
$S''/J$ does the job.
\end{proof}
\section{Formally smooth ring maps}
\label{section-formally-smooth}
\begin{lemma}
\label{lemma-formally-smooth-smooth}
Let $R$ be a ring. Let $S$ be a $R$-algebra.
If $S$ is of finite presentation and formally smooth over $R$
then $S$ is smooth over $R$.
\end{lemma}
\begin{proof}
See Algebra, Proposition \ref{algebra-proposition-smooth-formally-smooth}.
\end{proof}
\begin{remark}
\label{remark-equation-derivatives}
This tag used to refer to an equation in the proof of
Algebraization of Formal Spaces, Proposition
\ref{restricted-proposition-approximate}
which became unused because of a rearrangement of the material.
\end{remark}
\begin{remark}
\label{remark-equation-ci}
This tag used to refer to an equation in the proof of
Algebraization of Formal Spaces, Proposition
\ref{restricted-proposition-approximate}
which became unused because of a rearrangement of the material.
\end{remark}
\begin{remark}
\label{remark-equation-in-ideal}
This tag used to refer to an equation in the proof of
Algebraization of Formal Spaces, Proposition
\ref{restricted-proposition-approximate}
which became unused because of a rearrangement of the material.
\end{remark}
\begin{remark}
\label{remark-equation-derivatives-analogue}
This tag used to refer to an equation in the proof of
Algebraization of Formal Spaces, Proposition
\ref{restricted-proposition-approximate}
which became unused because of a rearrangement of the material.
\end{remark}
\begin{remark}
\label{remark-equation-go-down}
This tag used to refer to an equation in the proof of
Algebraization of Formal Spaces, Lemma
\ref{restricted-lemma-lift-approximation}
which became unused because of a rearrangement of the material.
\end{remark}
\begin{lemma}
\label{lemma-get-morphism-general}
Let $A$ be a Noetherian ring. Let $I \subset A$ be an ideal.
Let $t$ be the minimal number of generators for $I$.
Let $C$ be a Noetherian $I$-adically complete $A$-algebra.
There exists an integer $d \geq 0$ depending only on
$I \subset A \to C$ with the following property: given
\begin{enumerate}
\item $c \geq 0$ and $B$ in
Algebraization of Formal Spaces, Equation (\ref{restricted-equation-C-prime})
such that for $a \in I^c$
multiplication by $a$ on $\NL_{B/A}^\wedge$ is zero in $D(B)$,
\item an integer $n > 2t\max(c, d)$,
\item an $A/I^n$-algebra map $\psi_n : B/I^nB \to C/I^nC$,
\end{enumerate}
there exists a map $\varphi : B \to C$ of $A$-algebras such
that $\psi_n \bmod I^{m - c} = \varphi \bmod I^{m - c}$
with $m = \lfloor \frac{n}{t} \rfloor$.
\end{lemma}
\begin{proof}
This lemma has been obsoleted by the stronger
Algebraization of Formal Spaces, Lemma
\ref{restricted-lemma-get-morphism-general-better}.
In fact, we will deduce the lemma from it.
\medskip\noindent
Let $I \subset A \to C$ be given as in the statement above.
Denote $d(\text{Gr}_I(C))$ and $q(\text{Gr}_I(C))$ the integers found in
Local Cohomology, Section \ref{local-cohomology-section-uniform}.
Observe that $t$ is an upper bound for the minimal number of generators
of $IC$ and hence we have $d(\text{Gr}_I(C)) + 1 \leq t$, see discussion in
Local Cohomology, Section \ref{local-cohomology-section-uniform}.
We may and do assume $t \geq 1$ since otherwise the lemma does
not say anything. We claim that the lemma is true with
$$
d = q(\text{Gr}_I(C))
$$
Namely, suppose that $c$, $B$, $n$, $\psi_n$ are as in the statement above.
Then we see that
$$
n > 2t\max(c, d) \Rightarrow n \geq 2tc + 1 \Rightarrow
n \geq 2(d(\text{Gr}_I(C)) + 1)c + 1
$$
On the other hand, we have
$$
n > 2t\max(c, d) \Rightarrow n > t(c + d) \Rightarrow
n \geq q(C) + tc \geq q(\text{Gr}_I(C)) + (d(\text{Gr}_I(C)) + 1)c
$$
Hence the assumptions of
Algebraization of Formal Spaces, Lemma
\ref{restricted-lemma-get-morphism-general-better}
are satisfied and we obtain an $A$-algebra homomorphism
$\varphi : B \to C$ which is congruent with $\psi_n$
module $I^{n - (d(\text{Gr}_I(C)) + 1)c}C$.
Since
\begin{align*}
n - (d(\text{Gr}_I(C)) + 1)c
& = \frac{n}{t} + \frac{(t - 1)n}{t} - (d(\text{Gr}_I(C)) + 1)c \\
& \geq \frac{n}{t} + \frac{(d(\text{Gr}_I(C))n}{t} - (d(\text{Gr}_I(C)) + 1)c \\
& > \frac{n}{t} + \frac{d(\text{Gr}_I(C))2tc}{t} - (d(\text{Gr}_I(C)) + 1)c \\
& = \frac{n}{t} + 2d(\text{Gr}_I(C))c - (d(\text{Gr}_I(C)) + 1)c \\
& = \frac{n}{t} + d(\text{Gr}_I(C))c - c \\
& \geq m - c
\end{align*}
we see that we have the congruence of
$\varphi$ and $\psi_n$ module $I^{m - c}C$ as desired.
\end{proof}
\section{Sites and sheaves}
\label{section-sites}
\begin{remark}[No map from lower shriek to pushforward]
\label{remark-from-shriek-to-star}
Let $U$ be an object of a site $\mathcal{C}$. For any abelian sheaf
$\mathcal{G}$ on $\mathcal{C}/U$ one may wonder whether
there is a canonical map
$$
c : j_{U!}\mathcal{G} \longrightarrow j_{U*}\mathcal{G}
$$
To construct such a thing is the same as constructing a map
$j_U^{-1}j_{U!}\mathcal{G} \to \mathcal{G}$.
Note that restriction commutes with sheafification.
Thus we can use the presheaf of
Modules on Sites, Lemma \ref{sites-modules-lemma-extension-by-zero}.
Hence it suffices to define for $V/U$ a map
$$
\bigoplus\nolimits_{\varphi \in \Mor_\mathcal{C}(V, U)}
\mathcal{G}(V \xrightarrow{\varphi} U)
\longrightarrow
\mathcal{G}(V/U)
$$
compatible with restrictions. It looks like we can take the
which is zero on all summands except for the one where $\varphi$
is the structure morphism $\varphi_0 : V \to U$ where we take $1$.
However, this isn't compatible with restriction mappings: namely,
if $\alpha : V' \to V$ is a morphism of $\mathcal{C}$, then
denote $V'/U$ the object of $\mathcal{C}/U$ with structure
morphism $\varphi'_0 = \varphi_0 \circ \alpha$.
We need to check that the diagram
$$
\xymatrix{
\bigoplus\nolimits_{\varphi \in \Mor_\mathcal{C}(V, U)}
\mathcal{G}(V \xrightarrow{\varphi} U)
\ar[d] \ar[r] &
\mathcal{G}(V/U) \ar[d] \\
\bigoplus\nolimits_{\varphi' \in \Mor_\mathcal{C}(V', U)}
\mathcal{G}(V' \xrightarrow{\varphi'} U)
\ar[r] &
\mathcal{G}(V'/U)
}
$$
commutes. The problem here is that there
may be a morphism $\varphi : V \to U$ different from $\varphi_0$
such that $\varphi \circ \alpha = \varphi'_0$.
Thus the left vertical arrow will send the summand corresponding
to $\varphi$ into the summand on which the lower horizontal arrow is
equal to $1$ and almost surely the diagram doesn't commute.
\end{remark}
\section{Cohomology}
\label{section-cohomology}
\noindent
Obsolete lemmas about cohomology.
\begin{lemma}
\label{lemma-ML-general}
Let $I$ be an ideal of a ring $A$. Let $X$ be a scheme over $\Spec(A)$. Let
$$
\ldots \to \mathcal{F}_3 \to \mathcal{F}_2 \to \mathcal{F}_1
$$
be an inverse system of $\mathcal{O}_X$-modules
such that $\mathcal{F}_n = \mathcal{F}_{n + 1}/I^n\mathcal{F}_{n + 1}$.