-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path004_morphism-behavior-implications.sql
More file actions
169 lines (169 loc) · 5.37 KB
/
004_morphism-behavior-implications.sql
File metadata and controls
169 lines (169 loc) · 5.37 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
INSERT INTO implication_input (
id,
assumptions,
conclusions,
reason,
is_equivalence
)
VALUES
(
'cancellative_consequence',
'["right cancellative", "equalizers"]',
'["thin"]',
'If $f,g$ are two parallel morphisms, then their equalizer is a regular monomorphism, but also an epimorphism by assumption, so it must be an isomorphism. But this means that $f = g$.',
FALSE
),
(
'zero-no-mono',
'["left cancellative", "zero morphisms"]',
'["thin"]',
'If $f,g : A \rightrightarrows B$ are two morphisms, then $0_{B,B} \circ f = 0_{A,B} = 0_{B,B} \circ g$, so that $f = g$.',
FALSE
),
(
'codiagonal-no-mono',
'["left cancellative", "binary copowers"]',
'["thin"]',
'For every object $A$ the codiagonal $A + A \to A$ is a split epimorphism, and by assumption a monomorphism, hence an isomorphism. Hence, the two inclusions $i_1,i_2 : A \rightrightarrows A + A$ coincide. Now, if $f, g : A \rightrightarrows B$ are two morphisms, consider the induced morphism $h : A + A \to B$ and compute $f = h \circ i_1 = h \circ i_2 = g$.',
FALSE
),
(
'cauchy_complete_criterion',
'["left cancellative"]',
'["Cauchy complete"]',
'Any idempotent monomorphism must be the identity and therefore splits.',
FALSE
),
(
'reflexive_pair_trivial',
'["left cancellative"]',
'["reflexive coequalizers", "coreflexive equalizers"]',
'Any parallel pair of morphisms with a common section (or retraction) must be a pair of equal isomorphisms.',
FALSE
),
(
'groupoid_consequence',
'["groupoid"]',
'["self-dual", "mono-regular", "pullbacks", "directed limits", "left cancellative", "well-powered"]',
'This is easy.',
FALSE
),
(
'groupoid_criterion',
'["left cancellative", "right cancellative", "balanced"]',
'["groupoid"]',
'This is trivial.',
FALSE
),
(
'groupoid_connected',
'["groupoid", "connected"]',
'["strongly connected"]',
'This is trivial.',
FALSE
),
(
'groupoid_lcc',
'["groupoid"]',
'["locally cartesian closed"]',
'Every slice category is a trivial category.',
FALSE
),
(
'mono_regular_consequence',
'["mono-regular"]',
'["balanced"]',
'Any regular monomorphism that is an epimorphism must be an isomorphism.',
FALSE
),
(
'normal_condition',
'["normal"]',
'["zero morphisms"]',
'This is part of our definition of a normal category.',
FALSE
),
(
'mono_regular_via_kernels',
'["normal"]',
'["mono-regular"]',
'This is trivial.',
FALSE
),
(
'normal_criterion',
'["mono-regular", "preadditive"]',
'["normal"]',
'The a monomorphism is the equalizer of $f,g$, it is the kernel of $f-g$.',
FALSE
),
(
'direct_implies_one-way',
'["direct"]',
'["one-way", "skeletal"]',
'The category is one-way since any non-identity endomorphism yields an infinite sequence of equal non-identity morphisms. The category is skeletal since any non-identity isomorphism $f : A \to B$ yields the infinite sequence $\dotsc,f^{-1},f,f^{-1},f$.',
FALSE
),
(
'thin_consequences',
'["thin"]',
'["one-way", "locally essentially small", "generating set"]',
'This is trivial. The empty set is generating.',
FALSE
),
(
'one-way_zero',
'["zero morphisms", "one-way"]',
'["thin"]',
'If $f,g : A \rightrightarrows B$ are two morphisms, then since $0_{B,B} = \mathrm{id}_B$ we have $f = 0_{B,B} \circ f = 0_{A,B} = 0_{B,B} \circ g = g$.',
FALSE
),
(
'direct_criterion',
'["skeletal", "one-way", "finite"]',
'["direct"]',
'See the <a href="https://ncatlab.org/nlab/show/direct+category#direct_versus_oneway_categories" target="_blank">nLab</a> for a proof.',
FALSE
),
(
'one-way_products_thin',
'["one-way", "binary products"]',
'["thin"]',
'Let $X$ be any object. The swap $\tau : X \times X \to X \times X$ is equal to the identity. It follows that the projections $p_1,p_2 : X \times X \rightrightarrows X$ are the same. And this means that every two morphisms $Y \rightrightarrows X$ are the same.',
FALSE
),
(
'one-way_groupoids',
'["one-way", "groupoid"]',
'["thin"]',
'If $f,g : A \rightrightarrows B$ are two morphisms, then $f^{-1} \circ g : A \to A$ must be the identity, so that $f = g$.',
FALSE
),
(
'direct_implies_sequential_limits',
'["direct"]',
'["sequential limits"]',
'Assume that $\cdots \to A_2 \to A_1 \to A_0$ is a sequence of morphisms. We will prove that almost all of them are identities, so that the sequence is eventually constant and the limit exists. Assume the opposite, i.e. that there are infinitely many $A_k \to A_{k-1}$ which are not the identity. Pick some $n_1$ such that $A_{n_1} \to A_{n_1 - 1}$ is not the identity, and let $n_0 := n_1 - 1$. If $A_{n_i} \to A_{n_{i-1}}$ has been constructed, there is some $n_{i+1} > n_i$ such that the composite $A_{n_{i+1}} \to A_{n_i}$ is not the identity, because otherwise it would follow inductively that all $A_{k+1} \to A_k$, $k \geq n_i$ would be identities, which would contradict our infiniteness assumption. This way we construct an infinite sequence of non-identity morphisms $A_{n_{i+1}} \to A_{n_i}$, a contradiction.',
FALSE
),
(
'one-way_reflexive',
'["one-way"]',
'["reflexive coequalizers"]',
'Every reflexive pair is equal: If $f s = g s = \mathrm{id}$, then since $s f = \mathrm{id}$ (one-way), we must have $f = s^{-1}$, and likewise $g = s^{-1}$.',
FALSE
),
(
'filtered_monos_assumption',
'["filtered-colimit-stable monomorphisms"]',
'["filtered colimits"]',
'This holds by definition.',
FALSE
),
(
'filtered_monos_trivial',
'["left cancellative", "filtered colimits"]',
'["filtered-colimit-stable monomorphisms"]',
'This is trivial.',
FALSE
);