-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSetxSet.sql
More file actions
55 lines (55 loc) · 1.16 KB
/
SetxSet.sql
File metadata and controls
55 lines (55 loc) · 1.16 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
INSERT INTO category_property_assignments (
category_id,
property_id,
is_satisfied,
reason
)
VALUES
(
'SetxSet',
'locally small',
TRUE,
'This is obvious.'
),
(
'SetxSet',
'Grothendieck topos',
TRUE,
'It is equivalent to the category of sheaves on a discrete space with two points.'
),
(
'SetxSet',
'locally strongly finitely presentable',
TRUE,
'Take the two-sorted algebraic theory with no operations and no equations.'
),
(
'SetxSet',
'Barr-coexact',
TRUE,
'$(\mathbf{Set} \times \mathbf{Set})^{\operatorname{op}}$ is monadic over $\mathbf{Set} \times \mathbf{Set}$.'
),
(
'SetxSet',
'skeletal',
FALSE,
'This is trivial.'
),
(
'SetxSet',
'Malcev',
FALSE,
'There are lots of pairs of non-symmetric reflexive relations.'
),
(
'SetxSet',
'semi-strongly connected',
FALSE,
'When $X$ is non-empty, there is no morphism between $(\varnothing,X)$ and $(X,\varnothing)$.'
),
(
'SetxSet',
'generator',
FALSE,
'Assume that $(A,B)$ is a generator. Of course, $A$ and $B$ cannot be both empty. Assume w.l.o.g. that $A$ is non-empty. Then there is no morphism $(A,B) \to (0,1)$, but there are two different morphisms $(0,1) \rightrightarrows (0,2)$.'
);