-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathSet.sql
More file actions
49 lines (49 loc) · 1.01 KB
/
Set.sql
File metadata and controls
49 lines (49 loc) · 1.01 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
INSERT INTO category_property_assignments (
category_id,
property_id,
is_satisfied,
reason
)
VALUES
(
'Set',
'locally small',
TRUE,
'The collection of maps between two sets $X,Y$ is a subset of $X \times Y$ and therefore a set.'
),
(
'Set',
'Grothendieck topos',
TRUE,
'It is equivalent to the category of sheaves on a one-point space.'
),
(
'Set',
'semi-strongly connected',
TRUE,
'Every non-empty set is weakly terminal (by using constant maps).'
),
(
'Set',
'finitary algebraic',
TRUE,
'Use the empty algebraic theory.'
),
(
'Set',
'skeletal',
FALSE,
'This is trivial.'
),
(
'Set',
'Malcev',
FALSE,
'There are lots of non-symmetric reflexive relations, for example $\leq$ on $\mathbb{N}$.'
),
(
'Set',
'cofiltered-limit-stable epimorphisms',
FALSE,
'Pick any decreasing sequence of non-empty sets $X_0 \supseteq X_1 \supseteq \cdots$ with empty intersection, such as $X_n = \mathbb{N}_{\geq n}$. The unique map $X_n \to 1$ is surjective, but their limit $\varnothing \to 1$ is not surjective.'
);