-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathAb.sql
More file actions
43 lines (43 loc) · 1.21 KB
/
Ab.sql
File metadata and controls
43 lines (43 loc) · 1.21 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
INSERT INTO category_property_assignments (
category_id,
property_id,
is_satisfied,
reason
)
VALUES
(
'Ab',
'locally small',
TRUE,
'There is a forgetful functor $\mathbf{Ab} \to \mathbf{Set}$ and $\mathbf{Set}$ is locally small.'
),
(
'Ab',
'abelian',
TRUE,
'This is standard, see <a href="https://ncatlab.org/nlab/show/Categories+for+the+Working+Mathematician" target="_blank">Mac Lane</a>, Ch. VIII.'
),
(
'Ab',
'finitary algebraic',
TRUE,
'Take the algebraic theory of a commutative group.'
),
(
'Ab',
'split abelian',
FALSE,
'The short exact sequence $0 \xrightarrow{} \mathbb{Z} \xrightarrow{p} \mathbb{Z} \xrightarrow{} \mathbb{Z}/p \xrightarrow{} 0$ does not split. '
),
(
'Ab',
'skeletal',
FALSE,
'This is trivial.'
),
(
'Ab',
'cofiltered-limit-stable epimorphisms',
FALSE,
'We know that $\mathbf{CRing}$ does not have this property. Now use the contrapositive of the dual of <a href="/lemma/filtered-monos">this lemma</a> applied to the forgetful functor $\mathbf{CRing} \to \mathbf{Ab}$. Even though it does not preserve epimorphisms, our counterexample for $\mathbf{CRing}$ has used the <i>surjective</i> ring homomorphisms $\mathbb{Z} \to \mathbb{Z}/p^n$, which remain epimorphisms in $\mathbf{Ab}$.'
);