-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMet_c.sql
More file actions
103 lines (103 loc) · 3 KB
/
Met_c.sql
File metadata and controls
103 lines (103 loc) · 3 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
(
'Met_c',
'locally small',
TRUE,
'There is a forgetful functor $\mathbf{Met}_c \to \mathbf{Set}$ and $\mathbf{Set}$ is locally small.'
),
(
'Met_c',
'equalizers',
TRUE,
'Just restrict the metric to the equalizer built from the sets.'
),
(
'Met_c',
'coproducts',
TRUE,
'See <a href="https://math.stackexchange.com/questions/5004389" target="_blank">MSE/5004389</a>.'
),
(
'Met_c',
'infinitary extensive',
TRUE,
'This follows from the existence of coproducts and from the fact that $\mathbf{Top}$ is infinitary extensive.'
),
(
'Met_c',
'well-powered',
TRUE,
'This follows easily from the fact that monomorphisms are injective in this category.'
),
(
'Met_c',
'generator',
TRUE,
'The one-point metric space is a generator since it represents the forgetful functor $\mathbf{Met}_c \to \mathbf{Set}$.'
),
(
'Met_c',
'cogenerator',
TRUE,
'The same proof as for $\mathbf{Met}$ shows that $\mathbb{R}$ with the usual metric is a cogenerator.'
),
(
'Met_c',
'countable products',
TRUE,
'For finite products, we take the cartesian product with, say, the sup-metric. The product of countably many metric spaces $(X_i,d_i)_{i \geq 0}$ is given by the cartesian product $\prod_{i \geq 0} X_i$ with the metric $d(x,y) := \sum_{i \geq 0} d_i(x_i,y_i)/(1 + d_i(x_i,y_i))$. See Engelking''s book <i>General Topology</i>.'
),
(
'Met_c',
'well-copowered',
TRUE,
'If $f : X \to Y$ is an epimorphism, then $f(X)$ is dense in $Y$ (see below). Hence, there is an injective map $Y \to X^{\mathbb{N}}$, which bounds the size of $Y$.'
),
(
'Met_c',
'semi-strongly connected',
TRUE,
'Every non-empty metric space is weakly terminal (by using constant maps).'
),
(
'Met_c',
'powers',
FALSE,
'See <a href="https://math.stackexchange.com/questions/139168" target="_blank">MSE/139168</a> for a proof that uncountable powers do not exist.'
),
(
'Met_c',
'balanced',
FALSE,
'The inclusion $\mathbb{Q} \hookrightarrow \mathbb{R}$ provides a counterexample.'
),
(
'Met_c',
'skeletal',
FALSE,
'This is trivial.'
),
(
'Met_c',
'Malcev',
FALSE,
'Consider the metric subspace $\{(a,b) \in \mathbb{R}^2 : a \leq b\}$ of $\mathbb{R}^2$.'
),
(
'Met_c',
'regular subobject classifier',
FALSE,
'We recycle the proof from the <a href="/category/Haus">category of Hausdorff spaces</a>: Assume that there is a regular subobject classifier $\Omega$. By the classification of regular monomorphisms, we would have an isomorphism between $\mathrm{Hom}(X,\Omega)$ and the set of closed subsets of $X$ for any metric space $X$. If we take $X = 1$ we see that $\Omega$ has two points. Since $\Omega$ is Hausdorff, $\Omega \cong 1 + 1$ must be discrete. But then $\mathrm{Hom}(X,\Omega)$ is isomorphic to the set of all clopen subsets of $X$, of which there are usually far fewer than closed subsets (consider $X = [0,1]$).'
),
(
'Met_c',
'sequential colimits',
FALSE,
'See <a href="https://mathoverflow.net/questions/510316" target="_blank">MO/510316</a>.'
);