Skip to content

Commit e5cd7fa

Browse files
committed
redundant satisfied properties: remove some, ignore others (part 1)
1 parent 47641ad commit e5cd7fa

20 files changed

Lines changed: 97 additions & 61 deletions

databases/catdat/data/003_category-property-assignments/Ban.sql

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,10 @@ VALUES
9494
'cofiltered-limit-stable epimorphisms',
9595
FALSE,
9696
'We show that epimorphisms are not stable under sequential limits. Let $X_n = Y_n = \IC$ for all $n \geq 0$. The transition morphism $Y_{n+1} \to Y_n$ is the identity, and the transition morphism $X_{n+1} \to X_n$ is $x \mapsto x/2$. The morphisms $X_n \to Y_n$, $x \mapsto x/2^n$ are compatible with the transitions, and they are surjective, hence epimorphisms. Now we check $\lim_n X_n = 0$: An element $(x_n) \in \lim_n X_n$ is a family of complex numbers satisfying $x_n = x_{n+1}/2$ <i>and</i> $\sup_n |x_n| < \infty$. But then $x_n = 2^n x_0$ and this can only be bounded when $x_0=0$. Hence, $0 = \lim_n X_n \to \lim_n Y_n = \IC$ is no epimorphism.'
97-
);
97+
);
98+
99+
-- properties that should be ignored by the redundancy check script
100+
UPDATE category_property_assignments
101+
SET check_redundancy = FALSE
102+
WHERE category_id = 'Ban'
103+
AND property_id IN ('pointed');

databases/catdat/data/003_category-property-assignments/CAlg(R).sql

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,10 @@ VALUES
8888
'cofiltered-limit-stable epimorphisms',
8989
FALSE,
9090
'Let $K$ be a field over $R$. Consider the sequence of projections $\cdots \to K[X]/\langle X^2 \rangle \to K[X]/\langle X \rangle$ and the constant sequence $\cdots \to K[X] \to K[X]$. The surjective homomorphisms $K[X] \to K[X]/\langle X^n \rangle$ induce the inclusion $K[X] \hookrightarrow K[[X]]$ in the limit, where $K[[X]]$ is the algebra of formal power series. It is clearly not surjective, but this is not sufficient, we need to argue that it is not an epimorphism in $\CAlg(R)$, or equivalently, in $\CRing$. For a proof, see <a href="https://math.stackexchange.com/questions/2391187" target="_blank">MSE/2391187</a>.'
91-
);
91+
);
92+
93+
-- properties that should be ignored by the redundancy check script
94+
UPDATE category_property_assignments
95+
SET check_redundancy = FALSE
96+
WHERE category_id = 'CAlg(R)'
97+
AND property_id IN ('strict terminal object');

databases/catdat/data/003_category-property-assignments/CMon.sql

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,10 @@ VALUES
8282
'CSP',
8383
FALSE,
8484
'First of all, epimorphisms in $\CMon$ are preserved and reflected by the forgetful functor to $\Mon$ (see below). Furthermore, if $M \to N$ is an epimorphism in $\Mon$ and $M$ is infinite, then $\card(N) \leq \card(M)$ (see <a href="https://mathoverflow.net/questions/510431/" target="_blank">MO/510431</a>). This implies that in $\CMon$ the canonical homomorphism $\bigoplus_{n \geq 0} \IN \to \prod_{n \geq 0} \IN$ is not an epimorphism because its domain is countable and its codomain is uncountable.'
85-
);
85+
);
86+
87+
-- properties that should be ignored by the redundancy check script
88+
UPDATE category_property_assignments
89+
SET check_redundancy = FALSE
90+
WHERE category_id = 'CMon'
91+
AND property_id IN ('pointed');

databases/catdat/data/003_category-property-assignments/CRing.sql

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,9 @@ VALUES
8989
FALSE,
9090
'For a prime $p$ consider the sequence of projections $\cdots \to \IZ/p^2 \to \IZ/p$ and the constant sequence $\cdots \to \IZ \to \IZ$. The surjective homomorphisms $\IZ \to \IZ/p^n$ induce the homomorphism $\IZ \to \IZ_p$ in the limit, where $\IZ_p$ is the ring of $p$-adic integers. It is not surjective since $\IZ_p$ is uncountable, but this is not sufficient (at least, for this category): We need to use <a href="https://stacks.math.columbia.edu/tag/04W0" target="_blank">SP/04W0</a> to conclude that it is no epimorphism in $\CRing$.'
9191
);
92+
93+
-- properties that should be ignored by the redundancy check script
94+
UPDATE category_property_assignments
95+
SET check_redundancy = FALSE
96+
WHERE category_id = 'CRing'
97+
AND property_id IN ('strict terminal object');

databases/catdat/data/003_category-property-assignments/FI.sql

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,6 @@ VALUES
1111
TRUE,
1212
'There is a forgetful functor $\FI \to \Set$ and $\Set$ is locally small.'
1313
),
14-
(
15-
'FI',
16-
'initial object',
17-
TRUE,
18-
'Take the empty set.'
19-
),
2014
(
2115
'FI',
2216
'left cancellative',

databases/catdat/data/003_category-property-assignments/FinGrp.sql

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,6 @@ VALUES
2323
TRUE,
2424
'The underlying set of a finite structure can be chosen to be a subset of $\IN$.'
2525
),
26-
(
27-
'FinGrp',
28-
'epi-regular',
29-
TRUE,
30-
'This holds since every epimorphism is surjective (see below), and a surjective homomorphism $A \to B$ is the coequalizer of its kernel pair $A \times_B A \rightrightarrows A$.'
31-
),
3226
(
3327
'FinGrp',
3428
'mono-regular',
@@ -119,3 +113,9 @@ VALUES
119113
FALSE,
120114
'This is trivial.'
121115
);
116+
117+
-- properties that should be ignored by the redundancy check script
118+
UPDATE category_property_assignments
119+
SET check_redundancy = FALSE
120+
WHERE category_id = 'FinGrp'
121+
AND property_id IN ('pointed');

databases/catdat/data/003_category-property-assignments/Grp.sql

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,6 @@ VALUES
2929
TRUE,
3030
'See Prop. 4.2 at the <a href="https://ncatlab.org/nlab/show/regular+monomorphism#Examples" target="_blank">nLab</a>.'
3131
),
32-
(
33-
'Grp',
34-
'epi-regular',
35-
TRUE,
36-
'This holds since every epimorphism is surjective, and a surjective homomorphism $A \to B$ is the coequalizer of its kernel pair $A \times_B A \rightrightarrows A$.'
37-
),
3832
(
3933
'Grp',
4034
'Malcev',
@@ -116,4 +110,10 @@ VALUES
116110
'cofiltered-limit-stable epimorphisms',
117111
FALSE,
118112
'We already know that $\Ab$ does not have this property. Now apply the contrapositive of the dual of <a href="/lemma/filtered-monos">this lemma</a> to the forgetful functor $\Ab \to \Grp$ which indeed preserves epimorphisms.'
119-
);
113+
);
114+
115+
-- properties that should be ignored by the redundancy check script
116+
UPDATE category_property_assignments
117+
SET check_redundancy = FALSE
118+
WHERE category_id = 'Grp'
119+
AND property_id IN ('pointed');

databases/catdat/data/003_category-property-assignments/Man.sql

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,3 +134,9 @@ VALUES
134134
FALSE,
135135
'If $\Man$ had quotients of congruences, then by <a href="/lemma/pushouts-of-monos-via-congruence-quotients">this lemma</a>, it would have a pushout of $\IR \leftarrow \{ 0 \} \rightarrow \IR$. This contradicts <a href="https://mathoverflow.net/questions/19116">MO/19916</a>.'
136136
);
137+
138+
-- properties that should be ignored by the redundancy check script
139+
UPDATE category_property_assignments
140+
SET check_redundancy = FALSE
141+
WHERE category_id = 'Man'
142+
AND property_id IN ('finite products');

databases/catdat/data/003_category-property-assignments/Mon.sql

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,3 +113,9 @@ VALUES
113113
$$E \to M_{2\times 2}(\IZ), \quad p \mapsto \begin{pmatrix} 1 & 0 \\ 0 & 0 \end{pmatrix},\quad q \mapsto \begin{pmatrix} 1 & 1 \\ 0 & 0 \end{pmatrix},$$
114114
we can see that $p \ne q$ in $E$, so the equalizer of the two maps $X \rightrightarrows E$ is the trivial submonoid $\{ 1 \}$. Therefore, if $E$ were effective, it would be isomorphic to the coproduct $X \sqcup X$, whose underlying set consists of words in $p,q$ with $p,q$ strictly alternating. In particular, in this coproduct, $pq \ne q$.'
115115
);
116+
117+
-- properties that should be ignored by the redundancy check script
118+
UPDATE category_property_assignments
119+
SET check_redundancy = FALSE
120+
WHERE category_id = 'Mon'
121+
AND property_id IN ('pointed');

databases/catdat/data/003_category-property-assignments/N.sql

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,6 @@ VALUES
3535
TRUE,
3636
'Every non-empty set of natural numbers has a minimum.'
3737
),
38-
(
39-
'N',
40-
'skeletal',
41-
TRUE,
42-
'The relation $\leq$ is antisymmetric.'
43-
),
4438
(
4539
'N',
4640
'semi-strongly connected',
@@ -64,4 +58,10 @@ VALUES
6458
'countable coproducts',
6559
FALSE,
6660
'The numbers $0,1,2,\dotsc$ have no supremum, i.e. no coproduct.'
67-
);
61+
);
62+
63+
-- properties that should be ignored by the redundancy check script
64+
UPDATE category_property_assignments
65+
SET check_redundancy = FALSE
66+
WHERE category_id = 'N'
67+
AND property_id IN ('thin', 'finitely cocomplete');

0 commit comments

Comments
 (0)