Skip to content

Commit bb8c2dc

Browse files
committed
assign most properties to jonsson-tarski algebras
1 parent 1e77846 commit bb8c2dc

10 files changed

Lines changed: 71 additions & 0 deletions

File tree

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
INSERT INTO category_property_assignments (
2+
category_id,
3+
property_id,
4+
is_satisfied,
5+
reason
6+
)
7+
VALUES
8+
(
9+
'J2',
10+
'locally small',
11+
TRUE,
12+
'This is trivial.'
13+
),
14+
(
15+
'J2',
16+
'finitary algebraic',
17+
TRUE,
18+
'The structure of a Jónsson-Tarski algebra on a set $X$ is equivalent to one binary operation $\mu : X^2 \to X$ and two unary operations $\lambda, \rho : X \rightrightarrows X$ such that $\mu(\lambda(x),\rho(x)) = x$, $\lambda(\mu(x,y))=x$, and $\rho(\mu(x,y))=y$.'
19+
),
20+
(
21+
'J2',
22+
'Grothendieck topos',
23+
TRUE,
24+
'See the <a href="https://ncatlab.org/nlab/show/J%C3%B3nsson-Tarski+topos" target="_blank">nLab</a>.'
25+
),
26+
(
27+
'J2',
28+
'skeletal',
29+
FALSE,
30+
'This is trivial.'
31+
),
32+
(
33+
'J2',
34+
'semi-strongly connected',
35+
FALSE,
36+
'There is a bijection $\alpha = (\lambda,\rho) : \mathbb{N} \to \mathbb{N} \times \mathbb{N}$ such that $\lambda$ has a fixed point, but $\rho$ does not (see below). Then the isomorphism $\beta := (\rho,\lambda)$ has the opposite property. There cannot be any morphism $(\mathbb{N},\alpha) \to (\mathbb{N},\beta)$, as it would map the fixed point of $\lambda$ to a fixed point of $\rho$, and likewise there is no morphism $(\mathbb{N},\beta) \to (\mathbb{N},\alpha)$.<br>
37+
To construct $\alpha$ or rather $\alpha^{-1} : \mathbb{N} \times \mathbb{N} \to \mathbb{N}$, we can alter the standard bijection $(n,m) \mapsto 2^n (2m+1) - 1$ as follows:
38+
$$\alpha^{-1}(n,m) = \begin{cases} 2 & (n,m) = (0,0) \\ 0 & (n,m) = (0,1) \\ 2^n (2m+1) - 1 & \text{otherwise} \end{cases}$$
39+
Then $\alpha(0)=(0,1)$, i.e. $\lambda(0)=0$. The function $\rho$ has no fixed point, i.e. $\alpha^{-1}(n,m) \neq m$ for all $n,m$. Namely, if $(n,m)=(0,0)$, then $\alpha^{-1}(n,m)=2 \neq m$. If $(n,m)=(0,1)$, then $\alpha^{-1}(n,m)=0 \neq m$. Otherwise,
40+
$$\alpha^{-1}(n,m) = 2^n (2m+1) - 1 \geq (2m+1)-1 = 2m \geq m,$$
41+
and equality can only hold if $m=0$ and $n=0$, which we already excluded.'
42+
);

databases/catdat/data/005_special-objects/002_initial_objects.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ VALUES
2222
('FreeAb', 'trivial group'),
2323
('Grp', 'trivial group'),
2424
('Haus', 'empty space'),
25+
('J2', '$(\varnothing,!)$'),
2526
('LRS', 'empty space'),
2627
('M-Set', 'empty set with the unique action'),
2728
('Man', 'empty manifold'),

databases/catdat/data/005_special-objects/003_terminal_objects.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ VALUES
2121
('FreeAb', 'trivial group'),
2222
('Grp', 'trivial group'),
2323
('Haus', 'singleton space'),
24+
('J2', '$(\{\ast\},!)$'),
2425
('LRS', '$\mathrm{Spec}(\mathbb{Z})$'),
2526
('M-Set', 'singleton set with the unique action'),
2627
('Man', 'singleton manifold of dimension $0$'),

databases/catdat/data/005_special-objects/004_coproducts.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ VALUES
1919
('FreeAb', 'direct sums'),
2020
('Grp', 'free products'),
2121
('Haus', 'disjoint union with the disjoint union topology'),
22+
('J2', 'See <a href="https://matheplanet.de/matheplanet/nuke/html/article.php?sid=1713" target="_blank">here</a> for a description'),
2223
('LRS', 'disjoint union with the product sheaf'),
2324
('M-Set', 'disjoint union with obvious $M$-action'),
2425
('Meas', 'disjoint union with the obvious $\sigma$-algebra'),

databases/catdat/data/005_special-objects/005_products.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ VALUES
1818
('CRing', 'direct products with pointwise operations'),
1919
('Grp', 'direct products with pointwise operations'),
2020
('Haus', 'direct product with the <a href="https://en.wikipedia.org/wiki/Product_topology" target="_blank">product topology</a>'),
21+
('J2', 'direct products with pointwise operations'),
2122
('LRS', 'See <a href="https://arxiv.org/abs/1103.2139" target="_blank">Localization of ringed spaces</a> by W. Gillam. See also <a href="https://math.stackexchange.com/questions/1033675" target="_blank">MSE/1033675</a>.'),
2223
('M-Set', 'direct products with the evident $M$-action'),
2324
('Meas', 'direct products with the <a href="https://de.wikipedia.org/wiki/Produkt-%CF%83-Algebra" target="_blank">product $\sigma$-algebra</a>'),

databases/catdat/data/006_special-morphisms/002_isomorphisms.sql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,11 @@ VALUES
145145
'homeomorphisms',
146146
'This is easy.'
147147
),
148+
(
149+
'J2',
150+
'bijective morphisms',
151+
'This characterization holds in every algebraic category.'
152+
),
148153
(
149154
'LRS',
150155
'pairs $(f,f^{\sharp})$ consisting of a homeomorphism $f$ and an isomorphism of sheaves $f^{\sharp}$',

databases/catdat/data/006_special-morphisms/003_monomorphisms.sql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,11 @@ VALUES
140140
'injective continuous maps',
141141
'For the non-trivial direction, the forgetful functor to $\mathbf{Set}$ is representable (by the terminal object), hence preserves monomorphisms.'
142142
),
143+
(
144+
'J2',
145+
'injective morphisms',
146+
'This holds in every finitary algebraic category: the forgetful functor to $\mathbf{Set}$ is faithful, hence reflects monomorphisms, and it is continuous (even representable), hence preserves monomorphisms.'
147+
),
143148
(
144149
'M-Set',
145150
'injective $M$-maps',

databases/catdat/data/006_special-morphisms/004_epimorphisms.sql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,11 @@ VALUES
141141
'continuous maps with dense image',
142142
'It is clear that continuous maps with dense image are epimorphism, but the other direction is non-trivial. See <a href="https://math.stackexchange.com/questions/214045" target="_blank">MSE/214045</a> for a proof.'
143143
),
144+
(
145+
'J2',
146+
'surjective morphisms',
147+
'For the non-trivial direction: The category is epi-regular (since it is an elementary topos), and every regular epimorphism is surjective (this holds in any algebraic category).'
148+
),
144149
(
145150
'M-Set',
146151
'surjective $M$-maps',

databases/catdat/data/006_special-morphisms/005_regular-monomorphisms.sql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,11 @@ VALUES
115115
'embeddings with closed image',
116116
'The explicit construction of equalizers shows that they are embeddings, and they have a closed image because of the well-known lemma that for a Hausdorff space the diagonal $X \to X \times X$ has closed image. For the other non-trivial direction, see <a href="https://math.stackexchange.com/questions/214045/" target="_blank">MSE/214045</a>.'
117117
),
118+
(
119+
'J2',
120+
'same as monomorphisms',
121+
'This is because the category is mono-regular.'
122+
),
118123
(
119124
'M-Set',
120125
'same as monomorphisms',

databases/catdat/data/006_special-morphisms/006_regular-epimorphisms.sql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,11 @@ VALUES
125125
'surjective homomorphisms',
126126
'This holds in every finitary algebraic category.'
127127
),
128+
(
129+
'J2',
130+
'same as epimorphisms',
131+
'This is because the category is epi-regular.'
132+
),
128133
(
129134
'M-Set',
130135
'surjective homomorphisms',

0 commit comments

Comments
 (0)