-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path006_additional-structure.sql
More file actions
73 lines (73 loc) · 3.06 KB
/
006_additional-structure.sql
File metadata and controls
73 lines (73 loc) · 3.06 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
INSERT INTO properties (
id,
relation,
description,
nlab_link,
dual_property_id,
invariant_under_equivalences
)
VALUES
(
'finitary algebraic',
'is',
'A category is <i>finitary algebraic</i> if it is equivalent to the category of models of a one-sorted finitary algebraic theory. This is also known as a variety of one-sorted finitary algebras.',
'https://ncatlab.org/nlab/show/algebraic+category',
NULL,
TRUE
),
(
'zero morphisms',
'has',
'A category has <i>zero morphisms</i> if for every pair of objects $A,B$ there is a distinguished morphism $0_{A,B} : A \to B$, called the zero morphism, such that we have $f \circ 0_{A,B} = 0_{A,C}$ and $0_{B,C} \circ g = 0_{A,C}$ for all morphisms $f : B \to C$ and $g : A \to B$. The zero morphisms are unique if they exist, hence this is actually a property of the category.',
'https://ncatlab.org/nlab/show/zero+morphism',
'zero morphisms',
TRUE
),
(
'preadditive',
'is',
'A category is <i>preadditive</i> when it is locally essentially small* and each hom-set carries the structure of an abelian group such that the composition is bilinear. Notice that "preadditive" is an extra structure. The property here just says that some preadditive structure exists.<br>*We demand this instead of the more common "locally small" to ensure that preadditive categories are invariant under equivalences of categories.',
'https://ncatlab.org/nlab/show/Ab-enriched+category',
'preadditive',
TRUE
),
(
'additive',
'is',
'A category is <i>additive</i> if it is preadditive and has finite products (equivalently, finite coproducts). Note that in the context of finite products, the preadditive structure <a href="/lemma/preadditive_structure_unique">is unique</a>.',
'https://ncatlab.org/nlab/show/additive+category',
'additive',
TRUE
),
(
'abelian',
'is',
'A category is <i>abelian</i> if it is additive, every morphism has a kernel and a cokernel, and every monomorphism and epimorphism is normal. Equivalently, it is additive, has equalizers and coequalizers, and it is mono-regular and epi-regular. As opposed to other types of categories (such as monoidal categories), being abelian turns out to be a mere property.',
'https://ncatlab.org/nlab/show/abelian+category',
'abelian',
TRUE
),
(
'split abelian',
'is',
'A category is <i>split abelian</i> if it is abelian and every short exact sequence splits. Equivalently, every object is projective. Equivalently, every object is injective.',
'https://ncatlab.org/nlab/show/split+exact+sequence',
'split abelian',
TRUE
),
(
'Grothendieck abelian',
'is',
'A category is <i>Grothendieck abelian</i> if it is abelian, has coproducts (and is therefore cocomplete), a generator, and filtered colimits commute with finite limits. These categories play an important role in homological algebra.',
'https://ncatlab.org/nlab/show/Grothendieck+category',
NULL,
TRUE
),
(
'monadically concrete',
'is',
'A category is <i>monadically concrete</i> if there exists a monadic functor to Set. Note this is not standard terminology, but is used in the CatDat system for its numerous implications.',
NULL,
NULL,
TRUE
);