-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathProst.sql
More file actions
103 lines (103 loc) · 3.62 KB
/
Prost.sql
File metadata and controls
103 lines (103 loc) · 3.62 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
INSERT INTO category_property_assignments (
category_id,
property_id,
is_satisfied,
reason
)
VALUES
(
'Prost',
'locally small',
TRUE,
'There is a forgetful functor $\mathbf{Pos} \to \mathbf{Set}$ and $\mathbf{Set}$ is locally small.'
),
(
'Prost',
'locally finitely presentable',
TRUE,
'The same proof as for $\mathbf{Pos}$ works, cf. <a href="https://ncatlab.org/nlab/show/Locally+Presentable+and+Accessible+Categories" target="_blank">Adamek-Rosicky</a>, Example 1.10.'
),
(
'Prost',
'generator',
TRUE,
'The singleton proset $1$ is a generator, since morphisms $1 \to P$ correspond to the elements of $P$.'
),
(
'Prost',
'cartesian closed',
TRUE,
'For prosets $P,Q$ we endow $\hom(P,Q)$ with the preorder in which $f \leq g$ holds iff $f(p) \leq g(p)$ for all $p \in P$. The universal evaluation map is $\hom(P,Q) \times P \to Q$, $(f,p) \mapsto f(p)$, it is order-preserving, and it satisfies the universal property.'
),
(
'Prost',
'cogenerator',
TRUE,
'Endow the set $\{ 0,1 \}$ with the preorder $0 \leq 1$, $1 \leq 0$ (which is not a partial order). Then every map $P \to \{0,1\}$ is order-preserving. Now the claim follows since the set $\{ 0,1 \}$ is a cogenerator in $\mathbf{Set}$.'
),
(
'Prost',
'infinitary extensive',
TRUE,
'[Sketch] Since $\mathbf{Set}$ is infinitary extensive, a map $f : P \to \coprod_i Q_i$ corresponds to a decomposition $P = \coprod_i P_i$ (as sets) with maps $f_i : P_i \to Q_i$. Endow $P_i$ with the induced order. If $f$ is order-preserving, the elements in different $P_i$ cannot be comparable (since their $f$-images are not comparable), so that $P = \coprod_i P_i$ as prosets, and each $f_i$ is order-preserving.'
),
(
'Prost',
'semi-strongly connected',
TRUE,
'Every non-empty proset is weakly terminal (by using constant maps).'
),
(
'Prost',
'coregular',
TRUE,
'See <a href="https://math.stackexchange.com/questions/5130295" target="_blank">MSE/5130295</a>.'
),
(
'Prost',
'regular subobject classifier',
TRUE,
'The set $\{0,1\}$ with the chaotic preorder $(0 \leq 1$, $1 \leq 0)$ is a regular subobject classifier since order-preserving maps $P \to \{0,1\}$ correspond to subsets of $P$.'
),
(
'Prost',
'strict terminal object',
FALSE,
'This is trivial.'
),
(
'Prost',
'regular',
FALSE,
'See Example 3.14 at the <a href="https://ncatlab.org/nlab/show/regular+category" target="_blank">nLab</a>.'
),
(
'Prost',
'balanced',
FALSE,
'The inclusion $\{0,1\} \to \{0 < 1\}$ provides a counterexample (where in the domain there is no relation between $0$ and $1$).'
),
(
'Prost',
'skeletal',
FALSE,
'This is trivial.'
),
(
'Prost',
'Malcev',
FALSE,
'Consider the subproset $\{(a,b) : a \leq b \}$ of $\mathbb{N}^2$.'
),
(
'Prost',
'co-Malcev',
FALSE,
'See <a href="https://mathoverflow.net/questions/509552">MO/509552</a>: Consider the forgetful functor $U : \mathbf{Prost} \to \mathbf{Set}$ and the relation $R \subseteq U^2$ defined by $R(A) := \{(a,b) \in U(A)^2 : a \leq b\}$. Both are representable: $U$ by the singleton preordered set and $R$ by $\{0 \leq 1 \}$. It is clear that $R$ is reflexive, but not symmetric.'
),
(
'Prost',
'Barr-coexact',
FALSE,
'Consider the space $X$ with one point, and the corelation $R$ with two points and the full relation. Then for any $Y$, the morphisms $R \to Y$ correspond to pairs of points $(y_1, y_2) \in Y \times Y$ such that $y_1 \le y_2$ and $y_2 \le y_1$, which induces an equivalence relation on pairs of maps $X \to Y$. It follows that $R$ is an equivalence corelation. However, the equalizer of the two maps $X \to R$ is empty, and the cokernel pair of the map $\emptyset \to X$ is the proset with two elements and the equality relation.'
);