forked from stacks/stacks-project
-
Notifications
You must be signed in to change notification settings - Fork 1
/
spaces-limits.tex
3517 lines (3125 loc) · 136 KB
/
spaces-limits.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{Limits of Algebraic Spaces}
\maketitle
\phantomsection
\label{section-phantom}
\tableofcontents
\section{Introduction}
\label{section-introduction}
\noindent
In this chapter we put material related to limits of algebraic spaces.
A first topic is the characterization of algebraic spaces $F$ locally
of finite presentation over the base $S$ as limit preserving functors.
We continue with a study of limits of inverse systems over directed
partially ordered sets with affine transition maps. We discuss absolute
Noetherian approximation for quasi-compact and quasi-separated algebraic
spaces following \cite{CLO}. Another approach is due to David Rydh (see
\cite{rydh_approx}) whose results also cover absolute Noetherian
approximation for certain algebraic stacks.
\section{Conventions}
\label{section-conventions}
\noindent
The standing assumption is that all schemes are contained in
a big fppf site $\Sch_{fppf}$. And all rings $A$ considered
have the property that $\Spec(A)$ is (isomorphic) to an
object of this big site.
\medskip\noindent
Let $S$ be a scheme and let $X$ be an algebraic space over $S$.
In this chapter and the following we will write $X \times_S X$
for the product of $X$ with itself (in the category of algebraic
spaces over $S$), instead of $X \times X$.
\section{Morphisms of finite presentation}
\label{section-finite-presentation}
\noindent
In this section we generalize
Limits, Proposition
\ref{limits-proposition-characterize-locally-finite-presentation}
to morphisms of algebraic spaces.
The motivation for the following definition comes from
the proposition just cited.
\begin{definition}
\label{definition-locally-finite-presentation}
Let $S$ be a scheme.
\begin{enumerate}
\item A functor $F : (\Sch/S)_{fppf}^{opp} \to \textit{Sets}$
is said to be {\it locally of finite presentation} or {\it limit preserving} if
for every affine scheme $T$ over $S$ which is a limit $T = \lim T_i$
of a directed inverse system of affine schemes $T_i$ over $S$, we have
$$
F(T) = \colim F(T_i).
$$
We sometimes say that $F$ is {\it locally of finite presentation over $S$}.
\item Let $F, G : (\Sch/S)_{fppf}^{opp} \to \textit{Sets}$.
A transformation of functors $a : F \to G$
is {\it locally of finite presentation} if for every scheme $T$ over $S$
and every $y \in G(T)$ the functor
$$
F_y : (\Sch/T)_{fppf}^{opp} \longrightarrow \textit{Sets}, \quad
T'/T \longmapsto \{x \in F(T') \mid a(x) = y|_{T'}\}
$$
is locally of finite presentation over $T$\footnote{The characterization (2) in
Lemma \ref{lemma-characterize-relative-limit-preserving}
may be easier to parse.}. We sometimes say that
$F$ is {\it relatively limit preserving} over $G$.
\end{enumerate}
\end{definition}
\noindent
The functor $F_y$ is in some sense the fiber of
$a : F \to G$ over $y$, except that it is a presheaf on the big fppf
site of $T$. A formula for this functor is:
\begin{equation}
\label{equation-fibre-map-functors}
F_y =
F|_{(\Sch/T)_{fppf}}
{\times}_{G|_{(\Sch/T)_{fppf}}}
*
\end{equation}
Here $*$ is the final object in the category of (pre)sheaves
on $(\Sch/T)_{fppf}$ (see
Sites, Example \ref{sites-example-singleton-sheaf})
and the map $* \to G|_{(\Sch/T)_{fppf}}$ is given by $y$.
Note that if $j : (\Sch/T)_{fppf} \to (\Sch/S)_{fppf}$
is the localization functor, then the formula above becomes
$F_y = j^{-1}F \times_{j^{-1}G} *$ and $j_!F_y$ is just the fiber product
$F \times_{G, y} T$. (See
Sites, Section \ref{sites-section-localize},
for information on localization, and especially
Sites, Remark \ref{sites-remark-localize-presheaves}
for information on $j_!$ for presheaves.)
\medskip\noindent
At this point we temporarily have two definitions of what it means
for a morphism $X \to Y$ of algebraic spaces over $S$ to be locally of finite
presentation. Namely, one by
Morphisms of Spaces,
Definition \ref{spaces-morphisms-definition-locally-finite-presentation}
and one using that $X \to Y$ is a transformation of functors so that
Definition \ref{definition-locally-finite-presentation}
applies. We will show in
Proposition \ref{proposition-characterize-locally-finite-presentation}
that these two definitions agree.
\begin{lemma}
\label{lemma-characterize-relative-limit-preserving}
Let $S$ be a scheme. Let $a : F \to G$ be a transformation of functors
$(\Sch/S)_{fppf}^{opp} \to \textit{Sets}$.
The following are equivalent
\begin{enumerate}
\item $F$ is relatively limit preserving over $G$, and
\item for every every affine scheme $T$ over $S$ which is a
limit $T = \lim T_i$ of a directed inverse system of affine
schemes $T_i$ over $S$ the diagram of sets
$$
\xymatrix{
\colim_i F(T_i) \ar[r] \ar[d]_a & F(T) \ar[d]^a \\
\colim_i G(T_i) \ar[r] & G(T)
}
$$
is a fibre product diagram.
\end{enumerate}
\end{lemma}
\begin{proof}
Assume (1). Consider $T = \lim_{i \in I} T_i$ as in (2). Let
$(y, x_T)$ be an element of the fibre product
$\colim_i G(T_i) \times_{G(T)} F(T)$.
Then $y$ comes from $y_i \in G(T_i)$ for some $i$.
Consider the functor $F_{y_i}$ on $(\Sch/T_i)_{fppf}$ as in
Definition \ref{definition-locally-finite-presentation}.
We see that $x_T \in F_{y_i}(T)$. Moreover $T = \lim_{i' \geq i} T_{i'}$
is a directed system of affine schemes over $T_i$. Hence (1) implies
that $x_T$ the image of a unique element $x$ of
$\colim_{i' \geq i} F_{y_i}(T_{i'})$. Thus $x$ is the unique
element of $\colim F(T_i)$ which maps to the pair $(y, x_T)$.
This proves that (2) holds.
\medskip\noindent
Assume (2). Let $T$ be a scheme and $y_T \in G(T)$. We have to show that
$F_{y_T}$ is limit preserving. Let $T' = \lim_{i \in I} T'_i$ be an
affine scheme over $T$ which is the directed limit of affine scheme $T'_i$
over $T$. Let $x_{T'} \in F_{y_T}$. Pick $i \in I$ which is possible as
$I$ is a directed partially ordered set. Denote $y_i \in F(T'_i)$ the
image of $y_{T'}$. Then we see that $(y_i, x_{T'})$ is an
element of the fibre product
$\colim_i G(T'_i) \times_{G(T')} F(T')$.
Hence by (2) we get a unique element $x$ of $\colim_i F(T'_i)$
mapping to $(y_i, x_{T'})$. It is clear that $x$ defines an element
of $\colim_i F_y(T'_i)$ mapping to $x_{T'}$ and we win.
\end{proof}
\begin{lemma}
\label{lemma-composition-locally-finite-presentation}
Let $S$ be a scheme contained in $\Sch_{fppf}$.
Let $F, G, H : (\Sch/S)_{fppf}^{opp} \to \textit{Sets}$.
Let $a : F \to G$, $b : G \to H$ be transformations of functors.
If $a$ and $b$ are locally of finite presentation, then
$$
b \circ a : F \longrightarrow H
$$
is locally of finite presentation.
\end{lemma}
\begin{proof}
Let $T = \lim_{i \in I} T_i$ as in characterization (2) of
Lemma \ref{lemma-characterize-relative-limit-preserving}.
Consider the diagram
$$
\xymatrix{
\colim_i F(T_i) \ar[r] \ar[d]_a & F(T) \ar[d]^a \\
\colim_i G(T_i) \ar[r] \ar[d]_b & G(T) \ar[d]^b \\
\colim_i H(T_i) \ar[r] & H(T)
}
$$
By assumption the two squares are fibre product squares. Hence the
outer rectangle is a fibre product diagram too which proves the lemma.
\end{proof}
\begin{lemma}
\label{lemma-base-change-locally-finite-presentation}
Let $S$ be a scheme contained in $\Sch_{fppf}$.
Let $F, G, H : (\Sch/S)_{fppf}^{opp} \to \textit{Sets}$.
Let $a : F \to G$, $b : H \to G$ be transformations of functors.
Consider the fibre product diagram
$$
\xymatrix{
H \times_{b, G, a} F \ar[r]_-{b'} \ar[d]_{a'} & F \ar[d]^a \\
H \ar[r]^b & G
}
$$
If $a$ is locally of finite presentation, then the base change $a'$ is
locally of finite presentation.
\end{lemma}
\begin{proof}
Omitted. Hint: This is formal.
\end{proof}
\begin{lemma}
\label{lemma-limit-fppf-topology}
Let $T$ be an affine scheme which is written as a limit
$T = \lim_{i \in I} T_i$ of a directed inverse system of affine schemes.
\begin{enumerate}
\item Let $\mathcal{V} = \{V_j \to T\}_{j = 1, \ldots, m}$ be a standard fppf
covering of $T$, see
Topologies, Definition \ref{topologies-definition-standard-fppf}.
Then there exists an index $i$ and a standard fppf covering
$\mathcal{V}_i = \{V_{i, j} \to T_i\}_{j = 1, \ldots, m}$
whose base change $T \times_{T_i} \mathcal{V}_i$ to $T$
is isomorphic to $\mathcal{V}$.
\item Let $\mathcal{V}_i$, $\mathcal{V}'_i$ be a pair of standard
fppf coverings of $T_i$. If
$f : T \times_{T_i} \mathcal{V} \to T \times_{T_i} \mathcal{V}'_i$ is
a morphism of coverings of $T$, then there exists an index
$i' \geq i$ and a morphism
$f_{i'} : T_{i'} \times_{T_i} \mathcal{V} \to
T_{i'} \times_{T_i} \mathcal{V}'_i$
whose base change to $T$ is $f$.
\item If
$f, g : \mathcal{V} \to \mathcal{V}'_i$
are morphisms of standard fppf coverings of $T_i$ whose
base changes $f_T, g_T$ to $T$ are equal then there exists an
index $i' \geq i$ such that $f_{T_{i'}} = g_{T_{i'}}$.
\end{enumerate}
In other words, the category of standard fppf coverings of $T$ is
the colimit over $I$ of the categories of standard fppf coverings of $T_i$
\end{lemma}
\begin{proof}
By
Limits, Lemma \ref{limits-lemma-descend-finite-presentation}
the category of schemes of finite presentation over $T$ is the
colimit over $I$ of the categories of finite presentation over $T_i$. By
Limits, Lemmas \ref{limits-lemma-descend-affine-finite-presentation}
and \ref{limits-lemma-descend-flat-finite-presentation}
the same is true for category of schemes which are affine, flat and
of finite presentation over $T$.
To finish the proof of the lemma it suffices to show that if
$\{V_{j, i} \to T_i\}_{j = 1, \ldots, m}$ is a finite family of
flat finitely presented morphisms with $V_{j, i}$ affine, and the
base change $\coprod_j T \times_{T_i} V_{j, i} \to T$ is surjective,
then for some $i' \geq i$ the morphism
$\coprod T_{i'} \times_{T_i} V_{j, i} \to T_{i'}$ is surjective.
Denote $W_{i'} \subset T_{i'}$, resp.\ $W \subset T$ the image.
Of course $W = T$ by assumption.
Since the morphisms are flat and of finite presentation we see that
$W_i$ is a quasi-compact open of $T_i$, see
Morphisms, Lemma \ref{morphisms-lemma-fppf-open}.
Moreover, $W = T \times_{T_i} W_i$ (formation of image commutes
with base change). Hence by
Limits, Lemma \ref{limits-lemma-descend-opens}
we conclude that $W_{i'} = T_{i'}$ for some large enough $i'$
and we win.
\end{proof}
\begin{lemma}
\label{lemma-sheafify-finite-presentation}
Let $S$ be a scheme contained in $\Sch_{fppf}$.
Let $F : (\Sch/S)_{fppf}^{opp} \to \textit{Sets}$ be a functor.
If $F$ is locally of finite presentation over $S$ then its sheafification
$F^\#$ is locally of finite presentation over $S$.
\end{lemma}
\begin{proof}
Assume $F$ is locally of finite presentation.
It suffices to show that $F^+$ is locally of finite presentation, since
$F^\# = (F^+)^+$, see
Sites, Theorem \ref{sites-theorem-plus}.
Let $T$ be an affine scheme over $S$, and let $T = \lim T_i$ be written
as the directed limit of an inverse system of affine $S$ schemes.
Recall that $F^+(T)$ is the colimit of $\check H^0(\mathcal{V}, F)$
where the limit is over all coverings of $T$ in $(\Sch/S)_{fppf}$.
Any fppf covering of an affine scheme can be refined by a standard
fppf covering, see
Topologies, Lemma \ref{topologies-lemma-fppf-affine}.
Hence we can write
$$
F^+(T)
=
\colim_{\mathcal{V}\text{ standard covering }T}
\check H^0(\mathcal{V}, F).
$$
By
Lemma \ref{lemma-limit-fppf-topology}
we may rewrite this as
$$
\colim_{i \in I}
\colim_{\mathcal{V}_i\text{ standard covering }T_i}
\check H^0(T \times_{T_i}\mathcal{V}_i, F).
$$
(The order of the colimits is irrelevant by
Categories, Lemma \ref{categories-lemma-colimits-commute}.)
Given a standard fppf covering
$\mathcal{V}_i = \{V_j \to T_i\}_{j = 1, \ldots, m}$ of $T_i$ we see that
$$
T \times_{T_i} V_j = \lim_{i' \geq i} T_{i'} \times_T V_j
$$
by
Limits, Lemma \ref{limits-lemma-scheme-over-limit}, and similarly
$$
T \times_{T_i} (V_j \times_{T_i} V_{j'}) =
\lim_{i' \geq i} T_{i'} \times_T (V_j \times_{T_i} V_{j'}).
$$
As the presheaf $F$ is locally of finite presentation this means that
$$
\check H^0(T \times_{T_i}\mathcal{V}_i, F)
=
\colim_{i' \geq i}
\check H^0(T_{i'} \times_{T_i}\mathcal{V}_i, F).
$$
Hence the colimit expression for $F^+(T)$ above collapses to
$$
\colim_{i \in I} \colim_{\mathcal{V}\text{ standard covering }T_i}
\check H^0(\mathcal{V}, F).
=
\colim_{i \in I} F^+(T_i).
$$
In other words $F^+(T) = \colim_i F^+(T_i)$ and hence
the lemma holds.
\end{proof}
\begin{lemma}
\label{lemma-sheaf-finite-presentation}
Let $S$ be a scheme.
Let $F : (\Sch/S)_{fppf}^{opp} \to \textit{Sets}$ be a functor.
Assume that
\begin{enumerate}
\item $F$ is a sheaf, and
\item there exists an fppf covering $\{U_j \to S\}_{j \in J}$ such that
$F|_{(\Sch/U_j)_{fppf}}$ is locally of finite presentation.
\end{enumerate}
Then $F$ is locally of finite presentation.
\end{lemma}
\begin{proof}
Let $T$ be an affine scheme over $S$.
Let $I$ be a directed partially ordered set, and let
$T_i$ be an inverse system of affine schemes over $S$ such that
$T = \lim T_i$. We have to show that the canonical
map $\colim F(T_i) \to F(T)$ is bijective.
\medskip\noindent
Choose some $0 \in I$ and choose a standard fppf covering
$\{V_{0, k} \to T_{0}\}_{k = 1, \ldots, m}$ which refines
the pullback $\{U_j \times_S T_0 \to T_0\}$ of the given fppf covering of $S$.
For each $i \geq 0$ we set $V_{i, k} = T_i \times_{T_0} V_{0, k}$, and
we set $V_k = T \times_{T_0} V_{0, k}$. Note that
$V_k = \lim_{i \geq 0} V_{i, k}$, see
Limits, Lemma \ref{limits-lemma-scheme-over-limit}.
\medskip\noindent
Suppose that $x, x' \in \colim F(T_i)$ map to the same
element of $F(T)$. Say $x, x'$ are given by elements $x_i, x'_i \in F(T_i)$
for some $i \in I$ (we may choose the same $i$ for both as $I$ is directed).
By assumption (2) and the fact that $x_i, x'_i$ map to the same element
of $F(T)$ this implies that
$$
x_i|_{V_{i', k}} = x'_i|_{V_{i', k}}
$$
for some suitably large $i' \in I$. We can choose the same $i'$ for each
$k$ as $k \in \{1, \ldots, m\}$ ranges over a finite set.
Since $\{V_{i', k} \to T_{i'}\}$
is an fppf covering and $F$ is a sheaf this implies that
$x_i|_{T_{i'}} = x'_i|_{T_{i'}}$ as desired. This proves that the map
$\colim F(T_i) \to F(T)$ is injective.
\medskip\noindent
To show surjectivity we argue in a similar fashion.
Let $x \in F(T)$. By assumption (2) for each $k$ we
can choose a $i$ such that $x|_{V_k}$ comes from an
element $x_{i, k} \in F(V_{i, k})$. As before we may choose a
single $i$ which works for all $k$. By the injectivity
proved above we see that
$$
x_{i, k}|_{V_{i', k} \times_{T_{i'}} V_{i', l}}
=
x_{i, l}|_{V_{i', k} \times_{T_{i'}} V_{i', l}}
$$
for some large enough $i'$. Hence by the sheaf condition of $F$
the elements $x_{i, k}|_{V_{i', k}}$ glue to an element $x_{i'} \in F(T_{i'})$
as desired.
\end{proof}
\begin{lemma}
\label{lemma-sheafify-finite-presentation-map}
Let $S$ be a scheme contained in $\Sch_{fppf}$.
Let $F, G : (\Sch/S)_{fppf}^{opp} \to \textit{Sets}$ be functors.
If $a : F \to G$ is a transformation which is locally of finite
presentation, then the induced transformation of sheaves
$F^\# \to G^\#$ is of finite presentation.
\end{lemma}
\begin{proof}
Suppose that $T$ is a scheme and $y \in G^\#(T)$.
We have to show the functor
$F^\#_y : (\Sch/T)_{fppf}^{opp} \to \textit{Sets}$
constructed from $F^\# \to G^\#$ and $y$ as in
Definition \ref{definition-locally-finite-presentation}
is locally of finite presentation.
By Equation (\ref{equation-fibre-map-functors})
we see that $F^\#_y$ is a sheaf. Choose an fppf covering
$\{V_j \to T\}_{j \in J}$ such that $y|_{V_j}$ comes from
an element $y_j \in F(V_j)$.
Note that the restriction of $F^\#$ to $(\Sch/V_j)_{fppf}$
is just $F^\#_{y_j}$. If we can show that $F^\#_{y_j}$ is
locally of finite presentation then
Lemma \ref{lemma-sheaf-finite-presentation}
guarantees that $F^\#_y$ is locally of finite presentation and
we win. This reduces us to the case $y \in G(T)$.
\medskip\noindent
Let $y \in G(T)$. In this case we claim that $F^\#_y = (F_y)^\#$.
This follows from
Equation (\ref{equation-fibre-map-functors}).
Thus this case follows from
Lemma \ref{lemma-sheafify-finite-presentation}.
\end{proof}
\begin{proposition}
\label{proposition-characterize-locally-finite-presentation}
Let $S$ be a scheme. Let $f : X \to Y$ be a morphism of algebraic
spaces over $S$. The following are equivalent:
\begin{enumerate}
\item The morphism $f$ is a morphism of algebraic spaces which is
locally of finite presentation, see
Morphisms of Spaces,
Definition \ref{spaces-morphisms-definition-locally-finite-presentation}.
\item The morphism $f : X \to Y$ is locally of finite presentation as
a transformation of functors, see
Definition \ref{definition-locally-finite-presentation}.
\end{enumerate}
\end{proposition}
\begin{proof}
Assume (1). Let $T$ be a scheme and let $y \in Y(T)$. We have to show that
$T \times_X Y$ is locally of finite presentation over $T$ in the sense of
Definition \ref{definition-locally-finite-presentation}.
Hence we are reduced to proving that if $X$ is an algebraic space which
is locally of finite presentation over $S$ as an algebraic space, then it
is locally of finite presentation as a functor
$X : (\Sch/S)_{fppf}^{opp} \to \textit{Sets}$.
To see this choose a presentation $X = U/R$, see
Spaces, Definition \ref{spaces-definition-presentation}.
It follows from
Morphisms of Spaces,
Definition \ref{spaces-morphisms-definition-locally-finite-presentation}
that both $U$ and $R$ are schemes which are locally of finite presentation
over $S$. Hence by
Limits, Proposition
\ref{limits-proposition-characterize-locally-finite-presentation}
we have
$$
U(T) = \colim U(T_i), \quad
R(T) = \colim R(T_i)
$$
whenever $T = \lim_i T_i$ in $(\Sch/S)_{fppf}$. It follows
that the presheaf
$$
(\Sch/S)_{fppf}^{opp} \longrightarrow \textit{Sets}, \quad
W \longmapsto U(W)/R(W)
$$
is locally of finite presentation. Hence by
Lemma \ref{lemma-sheafify-finite-presentation}
its sheafification $X = U/R$ is locally of finite presentation too.
\medskip\noindent
Assume (2). Choose a scheme $V$ and a surjective \'etale morphism
$V \to Y$. Next, choose a scheme $U$ and a surjective \'etale morphism
$U \to V \times_Y X$. By
Lemma \ref{lemma-base-change-locally-finite-presentation}
the transformation of functors $V \times_Y X \to V$ is locally of
finite presentation. By
Morphisms of Spaces,
Lemma \ref{spaces-morphisms-lemma-etale-locally-finite-presentation}
the morphism of algebraic spaces $U \to V \times_Y X$ is locally
of finite presentation, hence locally of finite presentation as
a transformation of functors by the first part of the proof. By
Lemma \ref{lemma-composition-locally-finite-presentation}
the composition $U \to V \times_Y X \to V$ is locally of
finite presentation as a transformation of functors. Hence
the morphism of schemes $U \to V$ is locally of finite presentation by
Limits, Proposition
\ref{limits-proposition-characterize-locally-finite-presentation}
(modulo a set theoretic remark, see last paragraph of the proof).
This means, by definition, that (1) holds.
\medskip\noindent
Set theoretic remark. Let $U \to V$ be a morphism of
$(\Sch/S)_{fppf}$. In the statement of
Limits, Proposition
\ref{limits-proposition-characterize-locally-finite-presentation}
we characterize $U \to V$ as being locally of finite presentation
if for {\it all} directed inverse systems $(T_i, f_{ii'})$ of affine schemes
over $V$ we have $U(T) = \colim V(T_i)$, but in the current setting
we may only consider affine schemes $T_i$ over $V$ which are (isomorphic to)
an object of $(\Sch/S)_{fppf}$. So we have to make sure that there
are enough affines in $(\Sch/S)_{fppf}$ to make the proof work.
Inspecting the proof of (2) $\Rightarrow$ (1) of
Limits, Proposition
\ref{limits-proposition-characterize-locally-finite-presentation}
we see that the question reduces to the case that $U$ and $V$ are affine.
Say $U = \Spec(A)$ and $V = \Spec(B)$. By construction
of $(\Sch/S)_{fppf}$ the spectrum of any ring of cardinality
$\leq |B|$ is isomorphic to an object of $(\Sch/S)_{fppf}$.
Hence it suffices to observe that in the "only if" part of the proof of
Algebra, Lemma \ref{algebra-lemma-characterize-finite-presentation}
only $A$-algebras of cardinality $\leq |B|$ are used.
\end{proof}
\begin{remark}
\label{remark-limit-preserving}
Here is an important special case of
Proposition \ref{proposition-characterize-locally-finite-presentation}.
Let $S$ be a scheme. Let $X$ be an algebraic space over $S$.
Then $X$ is locally of finite presentation over $S$ if and only
if $X$, as a functor $(\Sch/S)^{opp} \to \textit{Sets}$,
is limit preserving. Compare with
Limits, Remark \ref{limits-remark-limit-preserving}.
\end{remark}
\section{Limits of algebraic spaces}
\label{section-limits}
\noindent
The following lemma explains how we think of limits of algebraic
spaces in this chapter. We will use (without further mention) that the
base change of an affine morphism of algebraic spaces is affine (see
Morphisms of Spaces, Lemma \ref{spaces-morphisms-lemma-base-change-affine}).
\begin{lemma}
\label{lemma-directed-inverse-system-has-limit}
Let $S$ be a scheme. Let $I$ be a directed partially ordered set.
Let $(X_i, f_{ii'})$ be an inverse system over $I$
in the category of algebraic spaces over $S$.
If the morphisms $f_{ii'} : X_i \to X_{i'}$ are affine, then the
limit $X = \lim_i X_i$ (as an fppf sheaf) is an algebraic space.
Moreover,
\begin{enumerate}
\item each of the morphisms $f_i : X \to X_i$ is affine,
\item for any $i \in I$ and any morphism of algebraic spaces
$T \to X_i$ we have
$$
X \times_{X_i} T = \lim_{i' \geq i} X_{i'} \times_{X_i} T.
$$
as algebraic spaces over $S$.
\end{enumerate}
\end{lemma}
\begin{proof}
Part (2) is a formal consequence of the existence of the
limit $X = \lim X_i$ as an algebraic space over $S$.
Choose an element $0 \in I$ (this is possible as a directed partially
ordered set is nonempty). Choose a scheme $U_0$ and a surjective
\'etale morphism $U_0 \to X_0$. Set $R_0 = U_0 \times_{X_0} U_0$
so that $X_0 = U_0/R_0$. For $i \geq 0$ set
$U_i = X_i \times_{X_0} U_0$ and
$R_i = X_i \times_{X_0} R_0 = U_i \times_{X_i} U_i$.
By Limits, Lemma \ref{limits-lemma-directed-inverse-system-has-limit}
we see that $U = \lim_{i \geq 0} U_i$ and $R = \lim_{i \geq 0} R_i$
are schemes. Moreover, the two morphisms $s, t : R \to U$ are the base
change of the two projections $R_0 \to U_0$ by the morphism
$U \to U_0$, in particular \'etale. The morphism $R \to U \times_S U$
defines an equivalence relation as directed a limit of equivalence relations
is an equivalence relation. Hence the morphism
$R \to U \times_S U$ is an \'etale equivalence relation. We claim that
the natural map
\begin{equation}
\label{equation-isomorphism-sheaves}
U/R \longrightarrow \lim X_i
\end{equation}
is an isomorphism of fppf sheaves on the category of schemes over $S$.
The claim implies $X = \lim X_i$ is an algebraic
space by Spaces, Theorem \ref{spaces-theorem-presentation}.
\medskip\noindent
Let $Z$ be a scheme and let $a : Z \to \lim X_i$ be a morphism.
Then $a = (a_i)$ where $a_i : Z \to X_i$. Set $W_0 = Z \times_{a_0, X_0} U_0$.
Note that $W_0 = Z \times_{a_i, X_i} U_i$ for all $i \geq 0$ by our
choice of $U_i \to X_i$ above. Hence we obtain a morphism
$W_0 \to \lim_{i \geq 0} U_i = U$. Since $W_0 \to Z$ is surjective
and \'etale, we conclude that (\ref{equation-isomorphism-sheaves})
is a surjective map of sheaves. Finally, suppose that
$Z$ is a scheme and that $a, b : Z \to U/R$ are two morphisms
which are equalized by (\ref{equation-isomorphism-sheaves}).
We have to show that $a = b$.
After replacing $Z$ by the members of an fppf covering
we may assume there exist morphisms $a', b' : Z \to U$ which
give rise to $a$ and $b$. The condition that $a, b$ are
equalized by (\ref{equation-isomorphism-sheaves}) means that
for each $i \geq 0$ the compositions $a_i', b_i' : Z \to U \to U_i$
are equal as morphisms into $U_i/R_i = X_i$. Hence
$(a_i', b_i') : Z \to U_i \times_S U_i$ factors through
$R_i$, say by some morphism $c_i : Z \to R_i$. Since
$R = \lim_{i \geq 0} R_i$ we see that $c = \lim c_i : Z \to R$
is a morphism which shows that $a, b$ are equal as morphisms
of $Z$ into $U/R$.
\medskip\noindent
Part (1) follows as we have seen above that
$U_i \times_{X_i} X = U$ and $U \to U_i$ is affine by
construction.
\end{proof}
\begin{lemma}
\label{lemma-space-over-limit}
Let $S$ be a scheme. Let $I$ be a directed partially ordered set.
Let $(X_i, f_{ii'})$ be an inverse system over $I$ of algebraic spaces
over $S$ with affine transition maps.
Let $X = \lim_i X_i$. Let $0 \in I$. Suppose that $T \to X_0$ is a
morphism of algebraic spaces. Then
$$
T \times_{X_0} X = \lim_{i \geq 0} T \times_{X_0} X_i
$$
as algebraic spaces over $S$.
\end{lemma}
\begin{proof}
The limit $X$ is an algebraic space by
Lemma \ref{lemma-directed-inverse-system-has-limit}.
The equality is formal, see
Categories, Lemma \ref{categories-lemma-colimits-commute}.
\end{proof}
\section{Descending properties}
\label{section-descent}
\noindent
This section is the analogue of Limits, Section \ref{limits-section-descent}.
\begin{situation}
\label{situation-descent}
Let $S$ be a scheme. Let $X = \lim_{i \in I} X_i$ be a limit of a directed
system of algebraic spaces over $S$ with affine transition morphisms
(Lemma \ref{lemma-directed-inverse-system-has-limit}).
We assume that $X_i$ is quasi-compact and quasi-separated for all $i \in I$.
We also choose an element $0 \in I$.
\end{situation}
\noindent
The following lemma holds a little bit more generally
(namely when we just assume each $X_i$ is a decent algebraic space).
\begin{lemma}
\label{lemma-topology-limit}
In Situation \ref{situation-descent} we have $|X| = \lim |X_i|$.
\end{lemma}
\begin{proof}
There is a canonical map $|X| \to \lim |X_i|$.
Choose an affine scheme $U_0$ and a surjective \'etale morphism $U_0 \to X_0$.
Set $U_i = X_i \times_{X_0} U_0$ and $U = X \times_{X_0} U_0$.
Set $R_i = U_i \times_{X_i} U_i$ and $R = U \times_X U$.
Recall that $U = \lim U_i$ and $R = \lim R_i$, see proof of
Lemma \ref{lemma-directed-inverse-system-has-limit}.
Recall that $|X| = |U|/|R|$ and $|X_i| = |U_i|/|R_i|$. By
Limits, Lemma \ref{limits-lemma-topology-limit} we have $|U| = \lim |U_i|$ and
$|R| = \lim |R_i|$.
\medskip\noindent
Surjectivity of $|X| \to \lim |X_i|$. Let $(x_i) \in \lim |X_i|$. Denote
$S_i \subset |U_i|$ the inverse image of $x_i$. This is a finite nonempty
set by Properties of Spaces, Lemma
\ref{spaces-properties-lemma-finite-fibres-presentation}.
Hence $\lim S_i$ is nonempty, see
Categories, Lemma \ref{categories-lemma-nonempty-limit}.
Let $(u_i) \in \lim S_i \subset \lim |U_i|$. By the above this determines
a point $u \in |U|$ which maps to an $x \in |X|$ mapping to the given
element $(x_i)$ of $\lim |X_i|$.
\medskip\noindent
Injectivity of $|X| \to \lim |X_i|$. Suppose that $x, x' \in |X|$
map to the same point of $\lim |X_i|$. Choose lifts $u, u' \in |U|$
and denote $u_i, u'_i \in |U_i|$ the images.
For each $i$ let $T_i \subset |R_i|$ be the set of points mapping
to $(u_i, u'_i) \in |U_i| \times |U_i|$. This is a finite
set by Properties of Spaces, Lemma
\ref{spaces-properties-lemma-finite-fibres-presentation}
which is nonempty as we've assumed that $x$ and $x'$ map to the
same point of $X_i$. Hence $\lim T_i$ is nonempty, see
Categories, Lemma \ref{categories-lemma-nonempty-limit}.
As before let $r \in |R| = \lim |R_i|$ be a point corresponding to an
element of $\lim T_i$. Then $r$ maps to $(u, u')$ in $|U| \times |U|$
by construction and we see that $x = x'$ in $|X|$ as desired.
\end{proof}
\begin{lemma}
\label{lemma-limit-nonempty}
In Situation \ref{situation-descent}, if each $X_i$ is nonempty, then
$|X|$ is nonempty.
\end{lemma}
\begin{proof}
Choose an affine scheme $U_0$ and a surjective \'etale morphism $U_0 \to X_0$.
Set $U_i = X_i \times_{X_0} U_0$ and $U = X \times_{X_0} U_0$.
Then each $U_i$ is a nonempty affine scheme. Hence $U = \lim U_i$
is nonempty (Limits, Lemma \ref{limits-lemma-limit-nonempty}) and thus
$X$ is nonempty.
\end{proof}
\begin{lemma}
\label{lemma-descend-section}
Notation and assumptions as in Situation \ref{situation-descent}.
Suppose that $\mathcal{F}_0$ is a quasi-coherent sheaf on $X_0$.
Set $\mathcal{F}_i = f_{0i}^*\mathcal{F}_0$ for $i \geq 0$ and set
$\mathcal{F} = f_0^*\mathcal{F}_0$. Then
$$
\Gamma(X, \mathcal{F}) = \colim_{i \geq 0} \Gamma(X_i, \mathcal{F}_i)
$$
\end{lemma}
\begin{proof}
Choose a surjective \'etale morphism $U_0 \to X_0$ where $U_0$ is an affine
scheme (Properties of Spaces, Lemma
\ref{spaces-properties-lemma-quasi-compact-affine-cover}).
Set $U_i = X_i \times_{X_0} U_0$.
Set $R_0 = U_0 \times_{X_0} U_0$ and $R_i = R_0 \times_{X_0} X_i$.
In the proof of Lemma \ref{lemma-directed-inverse-system-has-limit} we have
seen that there exists a presentation $X = U/R$ with
$U = \lim U_i$ and $R = \lim R_i$.
Note that $U_i$ and $U$ are affine and that $R_i$ and $R$ are
quasi-compact and separated (as $X_i$ is quasi-separated). Hence
Limits, Lemma \ref{limits-lemma-descend-section}
implies that
$$
\mathcal{F}(U) = \colim \mathcal{F}_i(U_i)
\quad\text{and}\quad
\mathcal{F}(R) = \colim \mathcal{F}_i(R_i).
$$
The lemma follows as
$\Gamma(X, \mathcal{F}) = \Ker(\mathcal{F}(U) \to \mathcal{F}(R))$
and similarly
$\Gamma(X_i, \mathcal{F}_i) =
\Ker(\mathcal{F}_i(U_i) \to \mathcal{F}_i(R_i))$
\end{proof}
\begin{lemma}
\label{lemma-descend-opens}
Notation and assumptions as in Situation \ref{situation-descent}.
For any quasi-compact open subspace $U \subset X$ there exists an $i$
and a quasi-compact open $U_i \subset X_i$ whose inverse image in $X$ is $U$.
\end{lemma}
\begin{proof}
Follows formally from the construction of limits in
Lemma \ref{lemma-directed-inverse-system-has-limit}
and the corresponding result for schemes:
Limits, Lemma \ref{limits-lemma-descend-opens}.
\end{proof}
\noindent
The following lemma will be superseded by the stronger
Lemma \ref{lemma-descend-isomorphism}.
\begin{lemma}
\label{lemma-descend-equality}
Notation and assumptions as in Situation \ref{situation-descent}.
Let $f_0 : Y_0 \to Z_0$ be a morphism of algebraic spaces over $X_0$.
Assume (a) $Y_0 \to X_0$ and $Z_0 \to X_0$ are representable, (b)
$Y_0$, $Z_0$ quasi-compact and quasi-separated, (c)
$f_0$ locally of finite presentation, and
(d) $Y_0 \times_{X_0} X \to Z_0 \times_{X_0} X$ an isomorphism.
Then there exists an $i \geq 0$ such that
$Y_0 \times_{X_0} X_i \to Z_0 \times_{X_0} X_i$ is an isomorphism.
\end{lemma}
\begin{proof}
Choose an affine scheme $U_0$ and a surjective \'etale morphism $U_0 \to X_0$.
Set $U_i = U_0 \times_{X_0} X_i$ and $U = U_0 \times_{X_0} X$.
Apply Limits, Lemma \ref{limits-lemma-descend-isomorphism}
to see that $Y_0 \times_{X_0} U_i \to Z_0 \times_{X_0} U_i$
is an isomorphism of schemes for some $i \geq 0$ (details omitted).
As $U_i \to X_i$ is surjective \'etale, it follows that
$Y_0 \times_{X_0} X_i \to Z_0 \times_{X_0} X_i$ is an isomorphism
(details omitted).
\end{proof}
\begin{lemma}
\label{lemma-descend-separated}
Notation and assumptions as in Situation \ref{situation-descent}.
If $X$ is separated, then $X_i$ is separated for some $i \in I$.
\end{lemma}
\begin{proof}
Choose an affine scheme $U_0$ and a surjective \'etale morphism $U_0 \to X_0$.
For $i \geq 0$ set $U_i = U_0 \times_{X_0} X_i$ and set
$U = U_0 \times_{X_0} X$. Note that $U_i$ and $U$ are affine schemes
which come equipped with surjective \'etale morphisms $U_i \to X_i$
and $U \to X$. Set $R_i = U_i \times_{X_i} U_i$ and $R = U \times_X U$
with projections $s_i, t_i : R_i \to U_i$ and $s, t : R \to U$.
Note that $R_i$ and $R$ are quasi-compact separated schemes (as the
algebraic spaces $X_i$ and $X$ are quasi-separated). The maps
$s_i : R_i \to U_i$ and $s : R \to U$ are of finite type.
By definition $X_i$ is separated if and only if
$(t_i, s_i) : R_i \to U_i \times U_i$
is a closed immersion, and since $X$ is separated by assumption,
the morphism $(t, s) : R \to U \times U$ is a closed immersion. Since
$R \to U$ is of finite type, there exists an
$i$ such that the morphism $R \to U_i \times U$ is a closed immersion
(Limits, Lemma \ref{limits-lemma-finite-type-eventually-closed}).
Fix such an $i \in I$. Apply Limits, Lemma
\ref{limits-lemma-descend-closed-immersion-finite-presentation}
to the system of morphisms $R_{i'} \to U_i \times U_{i'}$ for $i' \geq i$
(this is permissible as indeed
$R_{i'} = R_i \times_{U_i \times U_i} U_i \times U_{i'}$)
to see that $R_{i'} \to U_i \times U_{i'}$ is a closed immersion
for $i'$ sufficiently large. This implies immediately
that $R_{i'} \to U_{i'} \times U_{i'}$ is a closed immersion
finishing the proof of the lemma.
\end{proof}
\begin{lemma}
\label{lemma-limit-is-affine}
Notation and assumptions as in Situation \ref{situation-descent}.
If $X$ is affine, then there exists an $i$ such that $X_i$ is affine.
\end{lemma}
\begin{proof}
Choose $0 \in I$. Choose an affine scheme $U_0$ and a surjective
\'etale morphism $U_0 \to X_0$. Set $U = U_0 \times_{X_0} X$
and $U_i = U_0 \times_{X_0} X_i$ for $i \geq 0$. Since the transition
morphisms are affine, the algebraic spaces $U_i$ and $U$ are affine.
Thus $U \to X$ is an \'etale morphism of affine schemes. Hence we
can write $X = \Spec(A)$, $U = \Spec(B)$ and
$$
B = A[x_1, \ldots, x_n]/(g_1, \ldots, g_n)
$$
such that $\Delta = \det(\partial g_\lambda/\partial x_\mu)$ is invertible
in $B$, see Algebra, Lemma \ref{algebra-lemma-etale-standard-smooth}.
Set $A_i = \mathcal{O}_{X_i}(X_i)$. We have $A = \colim A_i$ by
Lemma \ref{lemma-descend-section}. After increasing $0$ we may assume
we have $g_{1, i}, \ldots, g_{n, i} \in A_i[x_1, \ldots, x_n]$ mapping to
$g_1, \ldots, g_n$. Set
$$
B_i = A_i[x_1, \ldots, x_n]/(g_{1, i}, \ldots, g_{n, i})
$$
for all $i \geq 0$. Increasing $0$ if necessary we may assume that
$\Delta_i = \det(\partial g_{\lambda, i}/\partial x_\mu)$ is invertible
in $B_i$ for all $i \geq 0$. Thus $A_i \to B_i$ is an \'etale ring map.
After increasing $0$ we may assume also that
$\Spec(B_i) \to \Spec(A_i)$ is surjective, see
Limits, Lemma \ref{limits-lemma-descend-surjective}. Increasing
$0$ yet again we may choose elements
$h_{1, i}, \ldots, h_{n, i} \in \mathcal{O}_{U_i}(U_i)$ which map to the
classes of $x_1, \ldots, x_n$ in $B = \mathcal{O}_U(U)$ and such that
$g_{\lambda, i}(h_{\nu, i}) = 0$ in $\mathcal{O}_{U_i}(U_i)$. Thus
we obtain a commutative diagram
\begin{equation}
\label{equation-to-show-cartesian}
\vcenter{
\xymatrix{
X_i \ar[d] & U_i \ar[l] \ar[d] \\
\Spec(A_i) & \Spec(B_i) \ar[l]
}
}
\end{equation}
By construction $B_i = B_0 \otimes_{A_0} A_i$ and
$B = B_0 \otimes_{A_0} A$. Consider the morphism
$$
f_0 : U_0 \longrightarrow X_0 \times_{\Spec(A_0)} \Spec(B_0)
$$
This is a morphism of quasi-compact and quasi-separated algebraic spaces
representable, separated and \'etale over $X_0$. The base change of $f_0$
to $X$ is an isomorphism by our choices. Hence
Lemma \ref{lemma-descend-equality}
guarantees that there exists an $i$ such that the base change of $f_0$
to $X_i$ is an isomorphism, in other words the diagram
(\ref{equation-to-show-cartesian}) is cartesian. Thus
Descent, Lemma \ref{descent-lemma-descent-data-sheaves}
applied to the fppf covering $\{\Spec(B_i) \to \Spec(A_i)\}$
combined with Descent, Lemma \ref{descent-lemma-affine}
give that $X_i \to \Spec(A_i)$ is representable by a scheme
affine over $\Spec(A_i)$ as desired. (Of course it then also follows
that $X_i = \Spec(A_i)$ but we don't need this.)
\end{proof}
\begin{lemma}
\label{lemma-limit-is-scheme}
Notation and assumptions as in Situation \ref{situation-descent}.
If $X$ is a scheme, then there exists an $i$ such that $X_i$ is a scheme.
\end{lemma}
\begin{proof}
Choose a finite affine open covering $X = \bigcup W_j$.
By Lemma \ref{lemma-descend-opens}
we can find an $i \in I$ and open subspaces $W_{j, i} \subset X_i$
whose base change to $X$ is $W_j \to X$. By
Lemma \ref{lemma-limit-is-affine} we may assume that
each $W_{j, i}$ is an affine scheme. This means that $X_i$
is a scheme (see for example
Properties of Spaces, Section \ref{spaces-properties-section-schematic}).
\end{proof}
\begin{lemma}
\label{lemma-finite-type-eventually-closed}
Let $S$ be a scheme. Let $B$ be an algebraic space over $S$.
Let $X = \lim X_i$ be a directed limit of
algebraic spaces over $B$ with affine transition morphisms.
Let $Y \to X$ be a morphism of algebraic spaces over $B$.
\begin{enumerate}
\item If $Y \to X$ is a closed immersion, $X_i$ quasi-compact, and
$Y \to B$ locally of finite type, then $Y \to X_i$ is a closed immersion
for $i$ large enough.
\item If $Y \to X$ is an immersion, $X_i$ quasi-separated, $Y \to B$
locally of finite type, and $Y$ quasi-compact, then $Y \to X_i$ is an
immersion for $i$ large enough.
\item If $Y \to X$ is an isomorphism, $X_i$ quasi-compact,
$X_i \to B$ locally of finite type, the transition morphisms
$X_{i'} \to X_i$ are closed immersions, and $Y \to B$ is locally
of finite presentation, then $Y \to X_i$ is an isomorphism for $i$
large enough.
\item If $Y \to X$ is a monomorphism, $X_i$ quasi-separated,
$Y \to B$ locally of finite type, and $Y$ quasi-compact, then
$Y \to X_i$ is a monomorphism for $i$ large enough.
\end{enumerate}
\end{lemma}
\begin{proof}
Proof of (1). Choose $0 \in I$. As $X_0$ is quasi-compact, we can choose
an affine scheme $W$ and an \'etale morphism $W \to B$ such that the image of
$|X_0| \to |B|$ is contained in $|W| \to |B|$.
Choose an affine scheme $U_0$ and an \'etale morphism
$U_0 \to X_0 \times_B W$ such that $U_0 \to X_0$ is surjective.
(This is possible by our choice of $W$ and the fact that $X_0$ is
quasi-compact; details omitted.)
Let $V \to Y$, resp.\ $U \to X$, resp.\ $U_i \to X_i$ be the base change
of $U_0 \to X_0$ (for $i \geq 0$). It suffices to prove that $V \to U_i$
is a closed immersion for $i$ sufficiently large. Thus we reduce
to proving the result for $V \to U = \lim U_i$ over $W$. This follows from
the case of schemes, which is
Limits, Lemma \ref{limits-lemma-finite-type-eventually-closed}.
\medskip\noindent
Proof of (2). Choose $0 \in I$. Choose a quasi-compact open subspace
$X'_0 \subset X_0$ such that $Y \to X_0$ factors through $X'_0$.
After replacing $X_i$ by the inverse image of $X'_0$ for $i \geq 0$
we may assume all $X_i'$ are quasi-compact and quasi-separated.
Let $U \subset X$ be a quasi-compact open such that $Y \to X$ factors
through a closed immersion $Y \to U$ ($U$ exists as $Y$ is quasi-compact). By
Lemma \ref{lemma-descend-opens}
we may assume that $U = \lim U_i$ with $U_i \subset X_i$ quasi-compact
open. By part (1) we see that $Y \to U_i$ is a closed immersion for some
$i$. Thus (2) holds.
\medskip\noindent
Proof of (3). Choose $0 \in I$. Choose an affine scheme $U_0$
and a surjective \'etale morphism $U_0 \to X_0$.
Set $U_i = X_i \times_{X_0} U_0$,
$U = X \times_{X_0} U_0 = Y \times_{X_0} U_0$. Then $U = \lim U_i$ is a
limit of affine schemes, the transition maps of the system are closed
immersions, and $U \to U_0$ is of finite presentation (because
$U \to B$ is locally of finite presentation and $U_0 \to B$ is locally
of finite type and
Morphisms of Spaces, Lemma
\ref{spaces-morphisms-lemma-finite-presentation-permanence}).
Thus we've reduced to the following algebra fact: If $A = \lim A_i$