-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path002_limits-colimits-existence.sql
More file actions
377 lines (377 loc) · 13.3 KB
/
002_limits-colimits-existence.sql
File metadata and controls
377 lines (377 loc) · 13.3 KB
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
INSERT INTO properties (
id,
relation,
description,
nlab_link,
dual_property_id,
invariant_under_equivalences
)
VALUES
(
'complete',
'is',
'A category is <i>complete</i> when every small diagram in the category has a limit.',
'https://ncatlab.org/nlab/show/complete+category',
'cocomplete',
TRUE
),
(
'cocomplete',
'is',
'A category is <i>cocomplete</i> when every small diagram in the category has a colimit.',
'https://ncatlab.org/nlab/show/cocomplete+category',
'complete',
TRUE
),
(
'pullbacks',
'has',
'A category $\mathcal{C}$ has <i>pullbacks</i> if every cospan of morphisms $X \rightarrow S \leftarrow Y$ has a pullback $X \times_S Y$. This is also known as a fiber product. Equivalently, the slice category $\mathcal{C}/S$ has binary products.',
'https://ncatlab.org/nlab/show/pullback',
'pushouts',
TRUE
),
(
'pushouts',
'has',
'A category $\mathcal{C}$ has <i>pushouts</i> if every span of morphisms $X \leftarrow S \rightarrow Y$ has a pushout $X \sqcup_S Y$. This is also known as a fiber coproduct. Equivalently, the coslice category $S/\mathcal{C}$ has binary coproducts.',
'https://ncatlab.org/nlab/show/pushout',
'pullbacks',
TRUE
),
(
'finitely complete',
'is',
'A category is <i>finitely complete</i> when every finite diagram has a limit.',
'https://ncatlab.org/nlab/show/finitely+complete+category',
'finitely cocomplete',
TRUE
),
(
'finitely cocomplete',
'is',
'A category is <i>finitely cocomplete</i> when every finite diagram has a colimit.',
'https://ncatlab.org/nlab/show/finitely+cocomplete+category',
'finitely complete',
TRUE
),
(
'initial object',
'has an',
'An <i>initial object</i> is an object that has a unique morphism to every object in the category. This property refers to the existence of an initial object.',
'https://ncatlab.org/nlab/show/initial+object',
'terminal object',
TRUE
),
(
'terminal object',
'has a',
'A <i>terminal object</i> (or <i>final object</i>) is an object that has a unique morphism from every object in the category. This property refers to the existence of a terminal object.',
'https://ncatlab.org/nlab/show/terminal+object',
'initial object',
TRUE
),
(
'products',
'has',
'Given a family of objects $(A_i)_{i \in I}$, a <i>product</i> $\prod_{i \in I} A_i$ is defined as an object with morphisms $p_i : \prod_{i \in I} A_i \to A_i$ satisfying the following universal property: For every object $T$ and every family of morphisms $(f_i : T \to A_i)_{i \in I}$ there is a unique morphism $f : T \to \prod_{i \in I} A_i$ such that $p_i \circ f = f_i$ for all $i \in I$. This property refers to the existence of <i>small products</i>, i.e., products of small families of objects.',
'https://ncatlab.org/nlab/show/cartesian+product',
'coproducts',
TRUE
),
(
'coproducts',
'has',
'Given a family of objects $(A_i)_{i \in I}$, a <i>coproduct</i> $\coprod_{i \in I} A_i$ is defined as an object with morphisms $i_i : A_i \to \coprod_{i \in I} A_i$ satisfying the following universal property: For every object $T$ and every family of morphisms $(f_i : A_i \to T)_{i \in I}$ there is a unique morphism $f : \coprod_{i \in I} A_i \to T$ such that $f \circ i_i = f_i$ for all $i \in I$. This property refers to the existence of <i>small coproducts</i>, i.e., coproducts of small families of objects.',
'https://ncatlab.org/nlab/show/coproduct',
'products',
TRUE
),
(
'finite products',
'has',
'A category has <i>finite products</i> if it has products for finite families of objects. Equivalently, it has a terminal object and binary products.',
'https://ncatlab.org/nlab/show/finite+product',
'finite coproducts',
TRUE
),
(
'finite coproducts',
'has',
'A category has <i>finite coproducts</i> if it has coproducts for finite families of objects. Equivalently, it has an initial object and binary coproducts.',
'https://ncatlab.org/nlab/show/finite+coproduct',
'finite products',
TRUE
),
(
'binary products',
'has',
'A category has <i>binary products</i> if every pair $A,B$ of objects has a product $A \times B$.',
'https://ncatlab.org/nlab/show/binary+product',
'binary coproducts',
TRUE
),
(
'binary coproducts',
'has',
'A category has <i>binary coproducts</i> if every pair $A,B$ of objects has a coproduct $A \sqcup B$.',
'https://ncatlab.org/nlab/show/coproduct',
'binary products',
TRUE
),
(
'countable products',
'has',
'A category has <i>countable products</i> if it has products for countable families of objects.',
NULL,
'countable coproducts',
TRUE
),
(
'countable coproducts',
'has',
'A category has <i>countable coproducts</i> if it has coproducts for countable families of objects.',
NULL,
'countable products',
TRUE
),
(
'powers',
'has',
'If $X$ is an object and $I$ is a set, the <i>power</i> is defined as the product $X^I := \prod_{i \in I} X$. This property refers to the existence of powers.',
'https://ncatlab.org/nlab/show/powering',
'copowers',
TRUE
),
(
'copowers',
'has',
'If $X$ is an object and $I$ is a set, the <i>copower</i> is defined as the coproduct $I \otimes X := \coprod_{i \in I} X$. This property refers to the existence of copowers.',
'https://ncatlab.org/nlab/show/copower',
'powers',
TRUE
),
(
'countable powers',
'has',
'A category has <i>countable powers</i> when for every object $X$ and every countable set $I$ the power $X^I$ exists.',
'https://ncatlab.org/nlab/show/powering',
'countable copowers',
TRUE
),
(
'countable copowers',
'has',
'A category has <i>countable copowers</i> when for every object $X$ and every countable set $I$ the copower $I \otimes X$ exists.',
'https://ncatlab.org/nlab/show/copower',
'countable powers',
TRUE
),
(
'finite powers',
'has',
'A category has <i>finite powers</i> when for every object $X$ and every finite set $I$ the power $X^I$ exists. Equivalently, for every $n \in \mathbb{N}$ the power $X^n$ exists.',
'https://ncatlab.org/nlab/show/powering',
'finite copowers',
TRUE
),
(
'finite copowers',
'has',
'A category has <i>finite copowers</i> when for every object $X$ and every finite set $I$ the copower $I \otimes X$ exists. Equivalently, for every $n \in \mathbb{N}$ the copower $n \otimes X$ exists.',
'https://ncatlab.org/nlab/show/copower',
'finite powers',
TRUE
),
(
'binary powers',
'has',
'A category has <i>binary powers</i> when for every object $X$ the product $X \times X$ exists. These objects might also be called <i>squares</i>.',
'https://ncatlab.org/nlab/show/powering',
'binary copowers',
TRUE
),
(
'binary copowers',
'has',
'A category has <i>binary copowers</i> when for every object $X$ and every binary set $I$ the coproduct $X \sqcup X$ exists. These objects might also be called <i>doubles</i>.',
'https://ncatlab.org/nlab/show/copower',
'binary powers',
TRUE
),
(
'equalizers',
'has',
'An <i>equalizer</i> of a pair of morphisms $f,g : A \rightrightarrows B$ is an object $E$ with a morphism $e : E \to A$ such that $f \circ e = g \circ e$ and which is universal with respect to this property. This property refers to the existence of equalizers.',
'https://ncatlab.org/nlab/show/equalizer',
'coequalizers',
TRUE
),
(
'coequalizers',
'has',
'A <i>coequalizer</i> of a pair of morphisms $f,g : A \rightrightarrows B$ is an object $C$ with a morphism $c : B \to C$ such that $c \circ f = c \circ g$ and which is universal with respect to this property. This property refers to the existence of coequalizers.',
'https://ncatlab.org/nlab/show/coequalizer',
'equalizers',
TRUE
),
(
'kernels',
'has',
'A category has <i>kernels</i> if it has zero morphisms and every morphism $f : A \to B$ has a kernel, i.e. an equalizer of $f$ with the zero morphism $0_{A,B} : A \to B$.',
'https://ncatlab.org/nlab/show/kernel',
'cokernels',
TRUE
),
(
'cokernels',
'has',
'A category has <i>cokernels</i> if it has zero morphisms and every morphism $f : A \to B$ has a cokernel, i.e. a coequalizer of $f$ with the zero morphism $0_{A,B} : A \to B$.',
'https://ncatlab.org/nlab/show/cokernel',
'kernels',
TRUE
),
(
'cofiltered limits',
'has',
'A category has <i>cofiltered limits</i> if it has limits of diagrams indexed by small <a href="/category-property/cofiltered">cofiltered</a> categories. This is actually equivalent to having directed limits.',
'https://ncatlab.org/nlab/show/filtered+limit',
'filtered colimits',
TRUE
),
(
'filtered colimits',
'has',
'A category has <i>filtered colimits</i> if it has colimits of diagrams indexed by small <a href="/category-property/filtered">filtered</a> categories. This is actually equivalent to having directed colimits.',
'https://ncatlab.org/nlab/show/filtered+colimit',
'cofiltered limits',
TRUE
),
(
'directed limits',
'has',
'A category has <i>directed limits</i> if it has limits of diagrams indexed by codirected (small) posets. This is actually equivalent to having cofiltered limits.',
'https://ncatlab.org/nlab/show/directed+limit',
'directed colimits',
TRUE
),
(
'directed colimits',
'has',
'A category has <i>directed colimits</i> if it has colimits of diagrams indexed by directed (small) posets. This is actually equivalent to having filtered colimits. Directed colimits are (somewhat confusingly) also known as <i>inverse limits</i>.',
'https://ncatlab.org/nlab/show/directed+colimit',
'directed limits',
TRUE
),
(
'sequential limits',
'has',
'A category has <i>sequential limits</i> if it has limits of diagrams of the form $\cdots \bullet \to \bullet \to \bullet$.',
'https://ncatlab.org/nlab/show/sequential+limit',
'sequential colimits',
TRUE
),
(
'sequential colimits',
'has',
'A category has <i>sequential colimits</i> if it has colimits of diagrams of the form: $\bullet \to \bullet \to \bullet \to \cdots$.',
'https://ncatlab.org/nlab/show/sequential+colimit',
'sequential limits',
TRUE
),
(
'connected limits',
'has',
'A category has <i>connected limits</i> if it has limits of diagrams indexed by connected small categories.',
'https://ncatlab.org/nlab/show/connected+limit',
'connected colimits',
TRUE
),
(
'connected colimits',
'has',
'A category has <i>connected colimits</i> if it has colimits of diagrams indexed by connected small categories.',
'https://ncatlab.org/nlab/show/connected+colimit',
'connected limits',
TRUE
),
(
'wide pullbacks',
'has',
'A category $\mathcal{C}$ has <i>wide pullbacks</i> if for every object $S$ the slice category $\mathcal{C}/S$ has arbitrary small products.',
'https://ncatlab.org/nlab/show/wide+pullback',
'wide pushouts',
TRUE
),
(
'wide pushouts',
'has',
'A category $\mathcal{C}$ has <i>wide pushouts</i> if for every object $S$ the coslice category $S/\mathcal{C}$ has arbitrary small coproducts.',
'https://ncatlab.org/nlab/show/wide+pushout',
'wide pullbacks',
TRUE
),
(
'coreflexive equalizers',
'has',
'A <i>coreflexive equalizer</i> is a limit of a diagram consisting of a parallel pair of morphisms with a common retraction (left inverse), which is the same concept as an equalizer of such a parallel pair. This property refers to the existence of coreflexive equalizers.',
'https://ncatlab.org/nlab/show/reflexive+coequalizer',
'reflexive coequalizers',
TRUE
),
(
'reflexive coequalizers',
'has',
'A <i>reflexive coequalizer</i> is a colimit of a diagram consisting of a parallel pair of morphisms with a common section (right inverse), which is the same concept as a coequalizer of such a parallel pair. This property refers to the existence of reflexive coequalizers.',
'https://ncatlab.org/nlab/show/reflexive+coequalizer',
'coreflexive equalizers',
TRUE
),
(
'cosifted limits',
'has',
'A category has <i>cosifted limits</i> if it has limits of diagrams indexed by small <a href="/category-property/cosifted">cosifted</a> categories.',
'https://ncatlab.org/nlab/show/sifted+colimit',
'sifted colimits',
TRUE
),
(
'sifted colimits',
'has',
'A category has <i>sifted colimits</i> if it has colimits of diagrams indexed by small <a href="/category-property/sifted">sifted</a> categories.',
'https://ncatlab.org/nlab/show/sifted+colimit',
'cosifted limits',
TRUE
),
(
'multi-complete',
'is',
'A <i>multi-limit</i> of a diagram $D\colon \mathcal{S} \to \mathcal{C}$ is a set $I$ of cones over $D$ such that every cone over $D$ uniquely factors through a unique cone belonging to $I$. This property refers to the existence of multi-limits of small diagrams. Note that any diagram with no cone admits a multi-limit, which is the empty set of cones.',
'https://ncatlab.org/nlab/show/multilimit',
'multi-cocomplete',
TRUE
),
(
'multi-cocomplete',
'is',
'A <i>multi-colimit</i> of a diagram $D\colon \mathcal{S} \to \mathcal{C}$ is a set $I$ of cocones under $D$ such that every cocone under $D$ uniquely factors through a unique cocone belonging to $I$. This property refers to the existence of multi-colimits of small diagrams. Note that any diagram with no cocone admits a multi-colimit, which is the empty set of cocones.',
'https://ncatlab.org/nlab/show/multilimit',
'multi-complete',
TRUE
),
(
'multi-terminal object',
'has a',
'This property refers to the existence of a multi-limit of the empty diagram. A category has a multi-terminal object if and only if each connected component has a terminal object.',
'https://ncatlab.org/nlab/show/multilimit',
'multi-initial object',
TRUE
),
(
'multi-initial object',
'has a',
'This property refers to the existence of a multi-colimit of the empty diagram. A category has a multi-initial object if and only if each connected component has a initial object.',
'https://ncatlab.org/nlab/show/multilimit',
'multi-terminal object',
TRUE
);