-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcover-spaces.tex
2783 lines (2327 loc) · 156 KB
/
cover-spaces.tex
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\documentclass[reqno]{amsart}
\usepackage{amssymb}
\usepackage{hyperref}
\usepackage{ifthen}
\usepackage{xargs}
\usepackage{mathtools}
\hypersetup{colorlinks=true,linkcolor=blue}
\newcommand{\axlabel}[1]{(#1) \phantomsection \label{ax:#1}}
\newcommand{\axitem}[1]{\phantomsection \label{ax:#1}}
\newcommand{\axref}[1]{(\hyperref[ax:#1]{#1})}
\newcommand{\newref}[4][]{
\ifthenelse{\equal{#1}{}}{\newtheorem{h#2}[hthm]{#4}}{\newtheorem{h#2}{#4}[#1]}
\expandafter\newcommand\csname r#2\endcsname[1]{#3~\ref{#2:##1}}
\expandafter\newcommand\csname R#2\endcsname[1]{#4~\ref{#2:##1}}
\expandafter\newcommand\csname n#2\endcsname[1]{\ref{#2:##1}}
\newenvironmentx{#2}[2][1=,2=]{
\ifthenelse{\equal{##2}{}}{\begin{h#2}}{\begin{h#2}[##2]}
\ifthenelse{\equal{##1}{}}{}{\label{#2:##1}}
}{\end{h#2}}
}
\newref[section]{thm}{Theorem}{Theorem}
\newref{lem}{Lemma}{Lemma}
\newref{prop}{Proposition}{Proposition}
\newref{cor}{Corollary}{Corollary}
\newref{cond}{Condition}{Condition}
\theoremstyle{definition}
\newref{defn}{Definition}{Definition}
\newref{example}{Example}{Example}
\theoremstyle{remark}
\newref{remark}{Remark}{Remark}
\numberwithin{figure}{section}
\newcommand{\overlap}[2]{#1 \between #2}
\newcommand{\rb}{\prec}
\newcommand{\cat}[1]{\mathbf{#1}}
\DeclarePairedDelimiter\abs{\lvert}{\rvert}
\makeatletter
\let\oldabs\abs
\def\abs{\@ifstar{\oldabs}{\oldabs*}}
\makeatother
\begin{document}
\title{A Constructive Approach to Complete Spaces}
\author{Valery Isaev}
\begin{abstract}
In this paper, we present a constructive generalization of metric and uniform spaces by introducing a new class of spaces, called cover spaces.
These spaces form a topological concrete category with a full reflective subcategory of complete spaces.
This subcategory is closely related to a particular subcategory of locales, offering an alternative approach to localic completion.
Additionally, we demonstrate how this framework provides simple constructive definitions of compact spaces, uniform convergence, and limits of nets.
\end{abstract}
\maketitle
\section{Introduction}
This paper explores completeness, continuous mappings, and other topological concepts within the framework of constructive mathematics.
The traditional topological notion of continuity between real numbers often proves unsuitable in a constructive context.
For instance, Bishop defined continuous maps as locally uniformly continuous maps \cite[Chapter 2, Definition 9]{bishop},
a perspective that does not generalize well to spaces that are not locally compact.
Another prevalent constructive approach to general topology involves locale theory.
Palmgren demonstrated that locally uniform maps between real numbers correspond to localic endomorphisms on the locale of real numbers \cite{palmgren-cont}.
Additionally, locally compact metric spaces can be fully and faithfully embedded into the category of locales \cite{palmgren-metric-locales}.
In this paper, we propose an alternative framework that generalizes these results to spaces that are not locally compact.
We introduce a topological concrete category of \emph{cover spaces}.
Every metric space, and more generally, every uniform space, can naturally be regarded as a cover space.
We establish the existence of a full reflective subcategory of complete cover spaces (\rcor{complete-reflective}),
and we show that a particular full subcategory of locales is equivalent to a full subcategory of complete cover spaces.
This equivalence encompasses a broad class of complete metric spaces (\rthm{locale-equiv}),
offering a constructive alternative to localic completion \cite{localic-completion}.
The definition of cover spaces allows us to generalize the Cauchy condition for sequences and, more broadly, for nets (\rprop{conv-char}).
This generalization provides a motivation for the concept of cover spaces.
Classically, if $x : \mathbb{N} \to \mathbb{R}$ is a Cauchy sequence, then every open cover of $\mathbb{R}$ contains a set that eventually includes all $x_n$.
However, this property does not hold for sequences of rational numbers.
For example, if $x : \mathbb{N} \to \mathbb{Q}$ converges to $\sqrt{2}$ from both sides, then the cover $\{ (-\infty,\sqrt{2}), (\sqrt{2},\infty) \}$ does not satisfy the condition.
Informally, the problem lies in the fact that this cover does not cover all the points in the completion of $\mathbb{Q}$.
We can resolve this by augmenting the cover with additional sets.
For example, the cover ${ (-\infty, \sqrt{2}), (\sqrt{2}, \infty), (1,2) }$ satisfies the condition for all Cauchy sequences.
In general, we can choose a class of good covers of $\mathbb{Q}$, which we call \emph{Cauchy covers},
such that a sequence is Cauchy if and only if every Cauchy cover contains a set that the sequence eventually belongs to.
A \emph{cover space} is a set equipped with a choice of Cauchy covers satisfying certain closure conditions.
A \emph{complete cover space} is one in which every Cauchy sequence (or filter) converges to a point.
Constructively, there may be fewer Cauchy covers in a complete cover space than neighborhood covers, making the concept of a Cauchy cover significant even for complete spaces.
Cauchy covers share similarities with the cover relation in locale theory and can be utilized to constructively reformulate various classical definitions and theorems.
For instance, a complete cover space can be defined as \emph{compact} if every Cauchy cover admits a finite subcover.
Under this notion of compactness, we will prove constructive versions of the Heine-Borel theorem and the Tychonoff theorem.
Cover spaces provide a convenient framework for defining convergence for arbitrary nets.
In Section~\ref{sec:limits}, we demonstrate how to put a cover space structure on an arbitrary directed set $I$ in such a way that a map $I \to X$ converges if and only if it is a morphism of cover spaces.
We also show how Cauchy covers can be used to derive simple and elegant conditions for the convergence of a sequence of functions, thereby generalizing uniform convergence.
The paper is organized as follows:
\begin{itemize}
\item Section~\ref{sec:top} defines cover spaces and explores their topological properties.
\item Section~\ref{sec:cat} presents the category of cover spaces and its basic properties.
\item Section~\ref{sec:filters} introduces Cauchy filters, which are essential for defining complete cover spaces.
\item Section~\ref{sec:completion} defines the completion of cover spaces and proves its universal property.
\item Section~\ref{sec:strongly-regular}, establishes a strong regularity and completeness properties, which are instrumental in relating cover spaces to sober topological spaces and locales.
\item Section~\ref{sec:locales} constructs an equivalence between certain full subcategories of locales and strongly complete cover spaces.
\item Section~\ref{sec:reals} examines the cover space of real numbers in detail.
\item Section~\ref{sec:compact} defines compact cover spaces and proves that morphisms of locally compact cover spaces are precisely locally uniform maps.
\item Section~\ref{sec:limits} discusses limits in cover spaces and provides several criteria for their existence.
\end{itemize}
All results presented in this paper are constructive, meaning they hold within the internal language of an elementary topos.
Furthermore, these results have been formalized in the Arend proof assistant.
\section{Topological properties}
\label{sec:top}
In this section, we define cover spaces and study their topological properties.
We begin with a few basic definitions:
\begin{itemize}
\item Two subsets $U,V$ of a set $X$ are said to \emph{intersect}, written $\overlap{U}{V}$, if there exists an element of $X$ that belongs to both subsets.
\item A set $C$ of subsets of a set $X$ is called a \emph{cover} if $\bigcup C = X$. If $C$ is a cover of $X$, we also say that $C$ \emph{covers} $X$ or that $X$ \emph{is covered by} $C$.
\item A cover $C$ \emph{refines} a cover $D$ if every element of $C$ is a subset of some element of $D$.
\item If $U$ and $V$ are subsets of a topological space $X$, we say that $V$ is \emph{rather below} $U$, written $V \rb_X U$ or, for short, $V \rb U$, if $X$ is covered by open sets $W$ satisfying the implication $\overlap{W}{V} \implies W \subseteq U$.
\item A topological space is \emph{regular} if every open set $U$ is covered by open sets that are rather below $U$.
\end{itemize}
Now, we are ready to define cover spaces:
\begin{defn}
A \emph{cover space} is a set $X$ equipped with a collection $\mathcal{C}_X$ of covers of $X$ that satisfy the following conditions:
\begin{itemize}
\item[(CT)] \axitem{CT} The trivial cover $\{ X \}$ belongs to $\mathcal{C}_X$.
\item[(CE)] \axitem{CE} If $C \in \mathcal{C}_X$ and $C$ refines $D$, then $D \in \mathcal{C}_X$
\item[(CG)] \axitem{CG} If $C \in \mathcal{C}_X$ and $\{ D_U \}_{U \in C}$ is a collection of covers such that $D_U \in \mathcal{C}_X$ for all $U \in C$,
then $\{ U \cap V \mid U \in C, V \in D_U \} \in \mathcal{C}_X$.
\item[(CR)] \axitem{CR} If $C \in \mathcal{C}_X$, then $\{ V \subseteq X \mid \exists U \in C, V \rb_X U \} \in \mathcal{C}_X$,
where $V \rb_X U$ (or, for short, $V \rb U$) means that $\{ W \subseteq X \mid \overlap{W}{V} \implies W \subseteq U \} \in \mathcal{C}_X$.
\end{itemize}
Elements of $\mathcal{C}_X$ are called \emph{Cauchy covers} of $X$.
\end{defn}
\begin{remark}
Under the assumption of the law of excluded middle (LEM), the relation $V \rb U$ can equivalently be expressed as $\{ X \backslash V, U \} \in \mathcal{C}_X$.
Indeed, $\{ X \backslash V, U \}$ is always a subset of $\{ W \mid \overlap{W}{V} \implies W \subseteq U \}$.
Assuming LEM, the latter cover also refines the former.
We will discuss the condition $\{ X \backslash V, U \} \in \mathcal{C}_X$ in greater detail in Section~\ref{sec:completion}.
\end{remark}
The relation $\rb$ satisfies the usual properties of the ``rather below'' relation:
\begin{prop}[rb-props]
The following hold for subsets $U,V,U',V'$ of a cover space $X$:
\begin{enumerate}
\item \label{rb:sub} If $V \rb U$, then $V \subseteq U$.
\item If $V' \subseteq V \rb U \subseteq U'$, then $V' \rb U'$.
\item \label{rb:meet} If $V \rb U$ and $V' \rb U'$, then $V \cap V' \rb U \cap U'$.
\item $V \rb X$.
\item $\varnothing \rb U$.
\end{enumerate}
\end{prop}
\begin{proof}
Item~\eqref{rb:sub} follows from the fact that $\{ W \mid \overlap{W}{V} \implies W \subseteq U \}$ is a cover.
Item~\eqref{rb:meet} follows from \axref{CG}.
The remaining statements are straightforward.
\end{proof}
\begin{example}
For a set $X$, the \emph{indiscrete} cover space structure consists of all covers that include the whole set: $\mathcal{C}_X = \{ C \mid X \in C \}$.
This is the minimal set of covers that makes $X$ into a cover space.
\end{example}
\begin{example}
For a set $X$, the \emph{discrete} cover space structure consists of all covers.
This is the maximal set of covers that makes $X$ into a cover space.
\end{example}
\begin{example}
More generally, if $X$ is a regular topological space, a cover is defined to be Cauchy if it contains a neighborhood of every point.
Under this definition, the rather below relations for $X$ as a topological space coincides with that for $X$ as a cover space.
Thus, the regularity condition on $X$ ensures \axref{CR}, while the other axioms of cover spaces are trivially satisfied.
We denote this cover space by $T(X)$.
\end{example}
We can define various basic topological concepts for cover spaces:
\begin{defn}[cover-topology]
Let $X$ be a cover space.
\begin{itemize}
\item A \emph{neighborhood} of a point $x \in X$ is a subset $U$ of $X$ such that $\{ x \} \rb U$.
\item A subset $U \subseteq X$ is \emph{open} if $U$ is a neighborhood of each point $x \in U$.
\item A \emph{limit point} of a subset $U \subseteq X$ is a point $x \in X$ such that every neighborhood of $x$ intersects $U$.
\item A subset of $X$ is \emph{closed} if it contains all of its limit points.
\item The \emph{closure} $\overline{U}$ of a subset $U \subseteq X$ is the set of its limit points.
\item A subset $D \subseteq X$ is \emph{dense} if every point of $X$ is a limit point of $D$.
\end{itemize}
\end{defn}
From \rprop{rb-props}, it follows that the collection of open subsets defined above forms a topology on every cover space $X$.
We denote this topological space by $S(X)$.
\begin{example}
Let $X$ be an indiscrete cover space.
A subset $U \subseteq X$ is a neighborhood of a point $x \in X$ if and only if $U = X$.
Thus, a subset $U \subseteq X$ is open if and only if $U = X$ whenever it is inhabited.
It follows that $S(X)$ is an indiscrete topological space.
\end{example}
\begin{example}
Let $X$ be a discrete cover space.
A subset $U \subseteq X$ is a neighborhood of a point $x \in X$ if and only if $x \in U$.
Hence, every subset of $X$ is open, making $S(X)$ a discrete topological space.
\end{example}
\begin{example}
Let $X$ be a regular topological space.
The regularity of $X$ implies that a subset $U \subseteq X$ is a neighborhood of a point $x \in X$ in the topological sense if and only if $\{ x \} \rb_{T(X)} U$.
Thus, the topologoy $S(T(X))$ induced by the cover space $T(X)$ coincides with the original topology of $X$.
\end{example}
The following lemma is useful for establishing the relationship between a cover space $X$ and the corresponding topological space $S(X)$:
\begin{lem}[int-char]
Let $U$ be a subset of a cover space $X$.
Then the interior of $U$ is equal to $\{ x \mid \{ x \} \rb_X U \}$.
In particular, if $V \rb_X U$, then $V \subseteq \mathrm{int}(U)$.
\end{lem}
\begin{proof}
If $x \in \mathrm{int}(U)$, then $\{ x \} \rb_X \mathrm{int}(U) \subseteq U$, so one direction is clear.
Conversely, let $U' = \{ x \mid \{ x \} \rb_X U \}$.
We will show that $U'$ is open and $U' \subseteq \mathrm{int}(U)$.
If $x \in U'$, then by definition $\{ x \} \rb_X U$.
Consider the collection $\{ W' \mid \exists W, W' \rb_X W, x \in W \implies W \subseteq U \}$, which forms a Cauchy cover refining $\{ W' \mid x \in W' \implies W' \subseteq U' \}$.
This implies that $\{ x \} \rb_X U'$, showing that $U'$ is open.
Since $\mathrm{int}(U)$ is the largest open subset of $U$, we have $U' \subseteq \mathrm{int}(U)$. Hence, $\mathrm{int}(U) = \{ x \mid \{ x \} \rb_X U \}$.
\end{proof}
The following proposition shows that every Cauchy cover is refined by an open Cauchy cover.
This means we can restrict our attention to open covers if preferred, as some may find them more convenient,
but since it makes no substantive difference, we will continue to work with arbitrary covers.
\begin{prop}[cover-int]
If $C$ is a Cauchy cover, then $\{ \mathrm{int}(U) \mid U \in C \}$ is also a Cauchy cover.
\end{prop}
\begin{proof}
If $C$ is a Cauchy cover, then $\{ V \mid \exists U \in C, V \rb U \}$ is also Cauchy.
By \rlem{int-char}, this cover refines $\{ \mathrm{int}(U) \mid U \in C \}$.
Thus, $\{ \mathrm{int}(U) \mid U \in C \}$ is a Cauchy cover.
\end{proof}
Now, we will show how various topological properties of a cover space $X$ relate to corresponding properties of $S(X)$:
\begin{prop}[top-neighborhood]
If $X$ is a cover space, then the notions of a neighborhood, closed subsets, closure, and dense subsets for $X$ coincide with the corresponding properties of $S(X)$.
\end{prop}
\begin{proof}
It is enough to prove the result for neighborhoods since the other properties are defined in terms of neighborhoods.
In $S(X)$, a set $U$ is a neighborhood of a point $x$ if there exists an open set $V$ such that $x \in V \subseteq U$.
If $V$ is such a set, then $\{ x \} \rb_X V \subseteq U$.
Conversely, we can take $V = \mathrm{int}(U)$ since $\{ x \} \rb_X U$ implies that $x \in \mathrm{int}(U) \subseteq U$ by \rlem{int-char}.
\end{proof}
Next, we show that $S(X)$ is always a regular topological space.
To do this, we first prove a useful lemma:
\begin{lem}[rb-point]
Let $X$ be a cover space.
If $U$ is a neighborhood of a point $x$, then there exists a neighborhood $V$ of $x$ such that $V \rb U$.
\end{lem}
\begin{proof}
If $\{ x \} \rb U$, then $\{ V' \mid \exists V, \exists W, V' \rb V \rb W, x \in W \implies W \subseteq U \}$ covers $X$.
Thus, there exist subsets $V'$, $V$, and $W$ such that $x \in V' \rb V$ and $V \rb W \subseteq U$.
So, $V$ is the required neighborhood.
\end{proof}
\begin{prop}[top-regular]
For every cover space $X$, the topological space $S(X)$ is regular.
\end{prop}
\begin{proof}
First, note that if $V \rb_X U$, then $\{ \mathrm{int}(W) \mid x \in W \implies W \subseteq U \}$ covers $X$ by \rprop{cover-int},
so, for every $x \in X$, we have a set $W$ such that $x \in \mathrm{int}(W)$ and $\overlap{\mathrm{int}(W)}{V} \implies \overlap{W}{V} \implies \mathrm{int}(W) \subseteq W \subseteq U$.
It follows that $V \rb_{S(X)} U$.
To see that $S(X)$ is regular, consider an open set $U$.
By \rlem{rb-point}, there exists a neighborhood $V$ of $x$ such that $V \rb_X U$.
The previous observation implies that $V \rb_{S(X)} U$.
By \rprop{top-neighborhood}, there is an open neighborhood $V'$ of $x$ such that $V' \rb_{S(X)} U$.
Thus, $S(X)$ is regular.
\end{proof}
The following proposition will be useful later.
It shows that $V \rb U$ implies the usual definition of the rather below relation in terms of limit points:
\begin{prop}[rb-closure]
Let $U,V$ be subsets of a cover space $X$ such that $V \rb U$.
Then $U$ is a neighborhood of every limit point of $V$.
In particular, the closure of $V$ is a subset of $U$, and $\overline{V} \rb \mathrm{int}(U)$.
\end{prop}
\begin{proof}
We prove the last claim.
By \rprop{cover-int}, the cover $\{ \mathrm{int}(W') \mid \exists W, W' \rb W, \overlap{W}{V} \implies W \subseteq U \}$ is Cauchy.
This cover refines $\{ W \mid \overlap{W}{\overline{V}} \implies W \subseteq \mathrm{int}(U) \}$.
Thus, $\overline{V} \rb \mathrm{int}(U)$.
\end{proof}
Many examples of cover spaces arise naturally from uniform spaces.
Recall that a uniform space is a set $X$ equipped with a collection of covers $\mathcal{U}_X$ that satisfies the following axioms:
\begin{itemize}
\item[(UT)] The trivial cover $\{ X \}$ belongs to $\mathcal{U}_X$.
\item[(UE)] \axitem{UE} If $C \in \mathcal{U}_X$ and $C$ refines $D$, then $D \in \mathcal{U}_X$.
\item[(UI)] \axitem{UI} If $C,D \in \mathcal{U}_X$, then $\{ U \cap V \mid U \in C, V \in D \} \in \mathcal{U}_X$.
\item[(UU)] \axitem{UU} For every $C \in \mathcal{U}_X$, there exists $D \in \mathcal{U}_X$ such that, for every $V \in D$,
there exists $U \in C$ such that $D \subseteq \{ W \mid \overlap{W}{V} \implies W \subseteq U \}$.
\end{itemize}
The elements of $\mathcal{U}_X$ are called \emph{uniform covers} of $X$.
\begin{example}
Every metric space induces a uniform structure.
Specifically, a cover of a metric space $X$ is uniform if it refines the cover $\{ B_\varepsilon(x) \mid x \in X \}$ for some $\varepsilon > 0$.
\end{example}
We now demonstrate how every uniform space gives rise to a cover space.
To achieve this, we introduce the intermediate notion of a \emph{precover space}:
\begin{defn}
A \emph{precover space} is a set $X$ together with a collection $\mathcal{C}_X$ of covers of $X$ that satisfies the conditions \axref{CT}, \axref{CE}, and \axref{CG}.
\end{defn}
In this framework, a \emph{cover space} is precisely a precover space that additionally satisfies the regularity condition \axref{CR}.
We also define the notion of a \emph{subbase} for a precover structure:
\begin{defn}
A \emph{subbase} for a precover structure on a set $X$ is any collection of covers of $X$.
\end{defn}
Given a subbase $\mathcal{B}_X$, we can take its closure under \axref{CT}, \axref{CE}, and \axref{CG}.
We denote this closure by $\overline{\mathcal{B}_X}$.
The following lemma applied to the filter of sets containing a given point implies that all sets in this closure are covers:
\begin{lem}[closure-filter]
Let $\mathcal{B}_X$ be a subbase and $F$ a filter on $X$.
If $F$ intersects every set in $\mathcal{B}_X$, then it also intersects every set in $\overline{\mathcal{B}_X}$.
\end{lem}
\begin{proof}
The proof follows by induction on the steps used to generate $\overline{\mathcal{B}_X}$.
\end{proof}
Thus, $\overline{\mathcal{B}_X}$ is the minimal precover space structure that contains $\mathcal{B}_X$.
However, the pair $(X, \overline{\mathcal{B}_X})$ is not necessarily a cover space.
The following lemma provides a useful tool for extending regularity conditions from a subbase to the entire space:
\begin{lem}[subbase-regular]
Let $\mathcal{B}_X$ be a subbase, and let $\rb$ be a binary relation on subsets of $X$ satisfying the following conditions:
\begin{itemize}
\item $X \rb X$.
\item If $W \rb V \subseteq U$, then $W \rb U$ for all subsets $W,V,U$.
\item If $V \rb U$ and $V' \rb U'$, then $V \cap V' \rb U \cap U'$ for all subsets $V,V',U,U'$.
\end{itemize}
Suppose that, for every cover $C \in \mathcal{B}_X$, the collection $\{ V \mid \exists U \in C, V \rb U \}$ belongs to $\overline{\mathcal{B}_X}$.
Then the same property holds for every cover $C \in \overline{\mathcal{B}_X}$.
\end{lem}
\begin{proof}
We prove this by induction on the generation of $\overline{\mathcal{B}_X}$.
Specifically, we show that for every $C \in \overline{\mathcal{B}_X}$, the cover $\{ W' \mid \exists W \in C, W' \rb W \}$ also belongs to $\overline{\mathcal{B}_X}$.
The only non-trivial case arises from the axiom \axref{CG}.
Assume $C = \{ U \cap V \mid U \in D, V \in E_U \} \in \overline{\mathcal{B}_X}$, where $D \in \overline{\mathcal{B}_X}$ and $\{ E_U \in \overline{\mathcal{B}_X} \}_{U \in D}$.
By the induction hypothesis, we know:
\begin{align*}
D' & = \{ U' \mid \exists U \in D, U' \rb U \} \in \overline{\mathcal{B}_X} \\
E'_{U'} & = \{ V' \mid \exists U \in D, V \in E_U, V' \rb V, U' \rb U \} \in \overline{\mathcal{B}_X} \text{ for every } U' \in D'
\end{align*}
Since $\{ W' \mid \exists W \in C, W' \rb W \}$ is refined by $\{ U' \cap V' \mid U' \in D', V' \in E'_{U'} \}$, the proof is complete.
\end{proof}
We will see later that a stronger condition on a subbase is often useful:
\begin{defn}
A \emph{base} for a precover space structure is a collection $\mathcal{B}$ of covers of $X$ satisfying the following axioms:
\begin{itemize}
\item[(BT)] \axitem{BT} The trivial cover $\{ X \}$ belongs to $\mathcal{B}$.
\item[(BE)] \axitem{BE} If $C \in \mathcal{B}$ and $C$ refines $D$, then $D \in \mathcal{B}$.
\item[(BI)] \axitem{BI} If $C,D \in \mathcal{B}$, then $\{ U \cap V \mid U \in C, V \in D \} \in \mathcal{B}$.
\end{itemize}
Let $U,V$ be subsets of $X$.
We say that $V$ is \emph{$\mathcal{B}$-rather below} $U$, written $V \rb_\mathcal{B} U$, if $\{ W \subseteq X \mid \overlap{W}{V} \implies W \subseteq U \} \in \mathcal{B}$.
A base $\mathcal{B}$ is called \emph{regular} if it satisfies the following condition:
\begin{itemize}
\item[(BR)] \axitem{BR} For every $C \in \mathcal{B}$, we have $\{ V \mid \exists U \in C, V \rb_\mathcal{B} U \} \in \overline{\mathcal{B}}$.
\end{itemize}
\end{defn}
\begin{remark}
The conditions of \rlem{subbase-regular} apply to the relation $\rb_\mathcal{B}$.
It follows that the precover space generated by a base $\mathcal{B}$ is not only a cover space but also satisfies a stronger regularity condition:
if $C$ is a Cauchy cover, then $\{ V \mid \exists U \in C, V \rb_\mathcal{B} U \}$ is also a Cauchy cover.
\end{remark}
\begin{example}
The collection of all Cauchy covers of a cover space forms a regular base.
\end{example}
\begin{example}
If $X$ is a uniform space, then the collection of uniform covers is a regular base.
The regularity axiom \axref{BR} follows from \axref{UU}.
\end{example}
The previous example shows that every uniform space $(X, \mathcal{U}_X)$ determines a cover space $(X, \overline{\mathcal{U}_X})$.
In particular, every metric space defines a cover space.
These are fundamental examples of cover spaces.
\section{Categorical properties}
\label{sec:cat}
In this section, we define the category of cover spaces and establish its various properties.
For convenience, we also define the category of precover spaces, a broader framework that will aid in understanding the structure of cover spaces.
We begin with the definition of morphisms between precover spaces:
\begin{defn}
A \emph{cover map} between precover spaces $X$ and $Y$ is a function $f : X \to Y$ such that, for every Cauchy cover $D$ on $Y$, the collection $\{ f^{-1}(V) \mid V \in D \}$ forms a Cauchy cover on $X$.
\end{defn}
The identity function is trivially a cover map, and cover maps are closed under composition.
This makes the collection of precover spaces and cover maps into a category, denoted by $\cat{Precov}$.
The subcategory of $\cat{Precov}$ consisting of cover spaces is called the category of cover spaces, denoted by $\cat{Cov}$.
We now show that several constructions previously defined are functorial.
To facilitate this, we first establish a simple lemma:
\begin{lem}[cover-map-rb]
Let $f : X \to Y$ be a cover map, and let $U$ and $V$ be subsets of $Y$ such that $V \rb_Y U$.
Then $f^{-1}(V) \rb_X f^{-1}(U)$.
\end{lem}
\begin{proof}
The result follows from the fact that the collection $\{ W \mid \overlap{W}{f^{-1}(V)} \implies W \subseteq f^{-1}(U) \}$ is refined by $\{ f^{-1}(W) \mid \overlap{W}{V} \implies W \subseteq U \}$.
\end{proof}
Using this lemma, we show that the constructions $S : \cat{Cov} \to \cat{Top}_\mathrm{reg}$ and $T : \cat{Top}_\mathrm{reg} \to \cat{Cov}$ are functors.
Here, $\cat{Top}_\mathrm{reg}$ denotes the category of regular topological spaces.
\paragraph{Functoriality of $S$.}
Let $f : X \to Y$ be a cover map between cover spaces.
For any open subset $U$ of $Y$, we claim that $f^{-1}(U)$ is open in $X$.
Indeed, given $x \in f^{-1}(U)$, note that $\{x\} \subseteq f^{-1}(\{f(x)\}) \rb f^{-1}(U)$ by \rlem{cover-map-rb},
which implies that $f^{-1}(U)$ satisfies the openness condition in $S(X)$.
Hence, $S(f)$ is a continuous map, demonstrating that $S$ is functorial.
\paragraph{Functoriality of $T$.}
For any regular topological space $X$, the associated functor $T$ assigns to $X$ a cover space structure.
It is clear that $T$ preserves morphisms, and therefore, it is also a functor.
\paragraph{Faithfulness and fullness.}
Both $S$ and $T$ are faithful functors as they preserve the underlying functions of morphisms.
Furthermore, $T$ is full.
Since $S(T(X)) = X$ for every regular topological space $X$, any cover map $f : T(X) \to T(Y)$ induces a continuous map $g = S(f) : X \to Y$ such that $T(g) = f$.
\paragraph{Adjunction.}
The functor $T$ is a left adjoint to $S$, with the unit and counit of the adjunction being identity maps.
The counit $T(S(X)) \to X$ is a cover map since any Cauchy cover contains a neighborhood of every point.
Consequently, $\cat{Top}_\mathrm{reg}$ is equivalent to a full coreflective subcategory of $\cat{Cov}$.
\paragraph{Topological category structure of $\cat{Precov}$.}
Finally, we show that $\cat{Precov}$ is a topological category in the sense of \cite[Definition~21.7]{joy-cats}.
This requires demonstrating that the set of precover space structures on a given set $X$ forms a complete lattice under inclusion.
Given a collection $\{\mathcal{C}_i\}_{i \in I}$ of precover space structures on $X$,
the join of these structures is $\overline{\bigcup_{i \in I} \mathcal{C}_i}$.
\paragraph{Transferred precover structures.}
Let $f : X \to Y$ be a function between sets, and let $Y$ have a precover space structure.
The smallest precover space structure on $X$ for which $f$ is a cover map is constructed as follows:
A cover $C$ of $X$ is Cauchy if and only if $\{ V \mid \exists U \in C, f^{-1}(V) \subseteq U \}$ is a Cauchy cover of $Y$.
These constructions collectively establish that $\cat{Precov}$ is a topological category.
Cover spaces are closed under joins in the lattice of precover space structures on a set $X$.
This property follows directly from \rlem{subbase-regular}.
Additionally, if $Y$ is a cover space and $f : X \to Y$ is a function, then the transferred precover structure on $X$ is, in fact, a cover structure.
Consequently, the category of cover spaces is reflective in $\cat{Precov}$:
\begin{prop}[regular-reflective]
The category of cover spaces is reflective in $\cat{Precov}$.
The reflection $X \to R(X)$ is given by the identity function on $X$.
\end{prop}
\begin{proof}
For a precover space $X$, define its reflection $R(X)$ as the join of all cover space structures on $X$ that are contained within $\mathcal{C}_X$.
The identity function $X \to R(X)$ is a cover map and satisfies the universal property of the reflection.
Specifically, if $Y$ is a cover space and $f : X \to Y$ is a cover map, then the transferred cover structure on $X$ is a subset of $\mathcal{C}_{R(X)}$.
Hence, $f$ is a cover map from $R(X)$ to $Y$.
\end{proof}
\begin{cor}
The category of cover spaces is a topological category.
\end{cor}
We conclude this section with a discussion of embeddings.
A cover map $f : X \to Y$ is called an \emph{embedding} if, for every $C \in \mathcal{C}_X$,
the set $\{ V \mid \exists U \in C, f^{-1}(V) \subseteq U \}$ is a Cauchy cover of $Y$.
Note that a cover map $f : X \to Y$ is an embedding if and only if the precover space structure on $X$ is the transferred precover space structure.
In general, an embedding does not need to be injective.
However, we will show in \rprop{embedding-injective} that injectivity holds if the domain satisfies a separation condition.
For injective embeddings, we have the following characterization:
\begin{prop}
A cover map is a regular monomorphism in $\cat{Precov}$ if and only if it is an injective embedding.
Similarly, a cover map between cover spaces is a regular monomorphism in $\cat{Cov}$ if and only if it is an injective embedding.
\end{prop}
\begin{proof}
Suppose $f : X \to Y$ is a regular monomorphism in $\cat{Precov}$.
Then $f$ is injective, and it is straightforward to verify that the precover space structure on $X$ is the transferred structure.
Conversely, let $f : X \to Y$ be an injective embedding.
Then $f : X \to Y$ is an equalizer of some functions $g,h : Y \to Z$ in $\cat{Set}$.
Assign the indiscrete structure to $Z$, making $g$ and $h$ cover maps, and it is easy to see that $f$ is their equalizer.
The same reasoning applies in $\cat{Cov}$ for cover spaces.
\end{proof}
We will later need the fact that embeddings are closed under products.
To establish this, we first prove the following lemma:
\begin{lem}
Let $\mathcal{B}_X$ be a subbase for a precover space structure on $X$, and let $Y$ be a precover space.
Let $f : X \to Y$ be a cover map such that, for every $C \in \mathcal{B}_X$, the set $\{ V \mid \exists U \in C, f^{-1}(V) \subseteq U \}$ is a Cauchy cover of $Y$.
Then $f$ is an embedding.
\end{lem}
\begin{proof}
We will show, by induction on the generation of a cover $E \in \overline{\mathcal{B}_X}$, that $\{ U' \mid \exists U \in E, f^{-1}(U') \subseteq U \}$ is a Cauchy cover of $Y$.
The base case holds by assumption.
The cases \axref{CT} and \axref{CE} are straightforward.
Now, consider \axref{CG}.
Let $C$ be a Cauchy cover of $X$, and let $\{ D_U \}_{U \in C}$ be a collection of Cauchy covers of $X$ such that $E = \{ U \cap V \mid U \in C, V \in D_U \}$.
By the induction hypothesis, $C' = \{ U' \mid \exists U \in C, f^{-1}(U') \subseteq U \}$ is a Cauchy cover of $Y$.
For each $U' \in C'$, define
\[ D'_{U'} = \{ V' \mid \exists U \in C, \exists V \in D_U, f^{-1}(U') \subseteq U, f^{-1}(V') \subseteq V \}. \]
Then $D'_{U'}$ is a Cauchy cover of $Y$.
Since $\{ U' \cap V' \mid U' \in C', V' \in D'_{U'} \}$ refines $\{ W' \mid \exists W \in E, f^{-1}(W') \subseteq W \}$, the proof is complete.
\end{proof}
\begin{lem}[prod-embedding]
If $f : X \to Y$ and $g : X' \to Y'$ are embeddings, then $f \times g : X \times X' \to Y \times Y'$ is also an embedding.
\end{lem}
\begin{proof}
The precover space structure on $X \times X'$ is generated by covers of the form $\{ \pi_1^{-1}(U) \mid U \in C \}$ and $\{ \pi_2^{-1}(U') \mid U' \in C' \}$,
where $C$ is a Cauchy cover of $X$, and $C'$ is a Cauchy cover of $X'$.
Since $f$ and $g$ are embeddings, the sets $\{ \pi_1^{-1}(V) \mid \exists U \in C, f^{-1}(V) \subseteq U \}$
and $\{ \pi_2^{-1}(V') \mid \exists U' \in C', f^{-1}(V') \subseteq U' \}$ are Cauchy covers on $Y$ and $Y'$, respectively.
These covers refine $\{ V \mid \exists U \in C, (f \times g)^{-1}(V) \subseteq \pi_1^{-1}(U) \}$
and $\{ V' \mid \exists U' \in C', (f \times g)^{-1}(V') \subseteq \pi_2^{-1}(U') \}$.
By the previous lemma, $f \times g$ is an embedding.
\end{proof}
\section{Cauchy filters}
\label{sec:filters}
In the next section, we will define complete cover spaces.
To do this, we first introduce the notion of a Cauchy filter, which we define and study in this section.
Additionally, we will show that Cauchy filters on $\mathbb{Q}$ correspond to Dedekind real numbers.
\begin{defn}
A \emph{filter} on a set $X$ is an upward-closed set of subsets of $X$ that is closed under finite intersections.
A \emph{proper filter} is a filter consisting of inhabited sets.
A filter on a cover space satisfies the \emph{Cauchy condition} if it intersects with every Cauchy cover.
A \emph{Cauchy filter} on a cover space $X$ is a proper filter that satisfies the Cauchy condition.
\end{defn}
\begin{example}
For every point $x$ in a cover space $X$, the set of neighborhoods of $x$ forms a Cauchy filter on $X$.
This filter is denoted by $x^\wedge$.
\end{example}
If a cover space is equipped with a subbase, it becomes easier to determine when a proper filter is Cauchy:
\begin{prop}[cauchy-filter]
If $\mathcal{B}_X$ is a subbase for a cover space $X$, then a proper filter $F$ is Cauchy if and only if it intersects with every cover in $\mathcal{B}_X$.
\end{prop}
\begin{proof}
This follows directly from \rlem{closure-filter}.
\end{proof}
\begin{cor}[metric-cauchy-filter]
If $X$ is a metric space, then a proper filter is Cauchy if and only if it contains an open ball of radius $\varepsilon$ for every $\varepsilon > 0$.
\end{cor}
The notion of a Cauchy filter makes every cover space into a Cauchy space \cite[Definition~1.3.1]{cauchy-spaces}.
However, we will not use this abstraction; instead, we provide the necessary constructions and definitions directly for cover spaces.
Given a function $f : X \to Y$ and a filter $F$ on $X$, we write $f(F)$ for the filter $\{ V \mid f^{-1}(V) \in F \}$ on $Y$.
We say that $f$ is a \emph{Cauchy map} if it preserves Cauchy filters.
Clearly, every cover map is Cauchy.
It is also straightforward to verify that Cauchy maps are continuous:
\begin{prop}[cauchy-continuous]
Every Cauchy map $f : X \to Y$ is a continuous function.
\end{prop}
\begin{proof}
Let $U$ be an open subset of $Y$, and let $x \in X$ be such that $f(x) \in U$.
Since $f(x^\wedge)$ is a Cauchy filter and $\{ f(x) \} \rb U$, there exists a set $V \in f(x^\wedge)$ such that $f(x) \in V \implies V \subseteq U$.
The first condition implies that $f^{-1}(V)$ is a neighborhood of $x$, and the second condition implies that $f^{-1}(V) \subseteq f^{-1}(U)$.
Thus, $f^{-1}(U)$ is also a neighborhood of $x$.
\end{proof}
There is an equivalence relation on Cauchy filters.
Two Cauchy fitlers are \emph{equivalent} if every Cauchy cover contains an element from both filters.
Equivalently, Cauchy filters are equivalent if and only if their intersection is a Cauchy filter.
In particular, if one Cauchy filter is a subset of another, they are equivalent.
Now, we prove a key lemma about Cauchy filters:
\begin{lem}[cauchy-filter-rb]
Let $X$ be a cover space, $F$ and $G$ be equivalent Cauchy filters on $X$, and $U$ and $V$ be subsets of $X$ such that $V \rb U$.
If $V \in F$, then $U \in G$.
\end{lem}
\begin{proof}
Since $V \rb U$, there exists a set $W \in F \cap G$ such that $\overlap{W}{V} \implies W \subseteq U$.
As $W,V \in F$, their intersection also belongs to $F$, hence it is inhabited.
It follows that $W \subseteq U$.
Thus, $U \in G$
\end{proof}
\begin{prop}[cauchy-filter-equiv]
The equivalence of Cauchy filters is indeed an equivalence relation.
\end{prop}
\begin{proof}
The only non-trivial part is transitivity.
Let $F$, $G$, and $H$ be Cauchy filters such that $F$ is equivalent to $G$ and $G$ is equivalent to $H$.
Let $C$ be a Cauchy cover.
By \axref{CR}, there exist sets $U$ and $V$ such that $V \rb U$, $U \in C$, and $V \in F \cap G$.
By \rlem{cauchy-filter-rb}, $U$ belongs to both $F$ and $H$.
\end{proof}
A Cauchy filter $F$ is called \emph{regular} if, for every $U \in F$, there exists a set $V \in F$ such that $V \rb U$.
Regular Cauchy filters can be used as representatives of their equivalence classes.
\begin{example}
For every point $x \in X$, the neighborhood filter $x^\wedge$ is regular.
This follows from \rlem{rb-point}.
\end{example}
The following propositions show that every Cauchy filter is equivalent to a unique regular one:
\begin{prop}[regular-minimal]
Let $F$ and $G$ be equivalent Cauchy filters.
If $F$ is regular, then $F \subseteq G$.
\end{prop}
\begin{proof}
Let $U \in F$.
Since $F$ is regular, there exists a set $V \in F$ such that $V \rb U$.
By \rlem{cauchy-filter-rb}, $U$ belongs to $G$.
\end{proof}
\begin{prop}[regular-filter-repr]
Let $F$ be a Cauchy filter.
The intersection of all Cauchy subfilters of $F$ is a regular Cauchy filter.
It is the unique regular filter equivalent to $F$.
\end{prop}
\begin{proof}
We denote the intersection of all Cauchy subfilters of $F$ by $M$.
First, note that the intersection of an inhabited set of proper filters is a proper filter.
To see that $M$ is a Cauchy filter, let $C$ be a Cauchy cover.
By \axref{CR}, there exist sets $V \in F$ and $U \in C$ such that $V \rb U$.
By \rlem{cauchy-filter-rb}, every Cauchy filter equivalent to $F$ contains $U$.
Thus, $U$ belongs to $M$, showing that $M$ is Cauchy.
Next, we prove that $M$ is regular.
Define $G = \{ U \mid \exists W \in F, \exists V, W \rb V, V \rb U \}$.
By \rprop{rb-props}, $G$ is a proper filter, and by \axref{CR}, it is Cauchy.
Since $G \subseteq F$, we have $M \subseteq G$.
Now, let $U \in M$.
Then there exist sets $W \in F$ and $V$ such that $W \rb V$ and $V \rb U$.
Since $F$ and $M$ are equivalent, \rlem{cauchy-filter-rb} implies $V \in M$.
This shows that $M$ is regular.
Finally, since $M \subseteq F$, it is equivalent to $F$.
Uniqueness follows from \rprop{regular-minimal}.
\end{proof}
Now, we will construct a bijection between regular Cauchy filters and Dedekind reals.
Recall that Dedekind reals are usually defined as Dedekind cuts.
A \emph{Dedekind cut} is a pair $(L,U)$ of subsets of $\mathbb{Q}$ satisfying the following conditions:
\begin{itemize}
\item[(DI)] \axitem{DI} Both $L$ and $U$ are inhabited.
\item[(DL)] \axitem{DL} $a \in L$ if and only if there exists $b > a$ such that $b \in L$.
\item[(DU)] \axitem{DU} $a \in U$ if and only if there exists $b < a$ such that $b \in U$.
\item[(DD)] \axitem{DD} $L$ and $U$ do not intersect.
\item[(DS)] \axitem{DS} If $a < b$, then either $a \in L$ or $b \in U$.
\end{itemize}
Dedekind reals can alternatively be represented by filters.
A filter $F$ on $\mathbb{Q}$ will be called a \emph{Dedekind filter} if it satisfies the following conditions:
\begin{itemize}
\item[(DE)] \axitem{DE} For every rational $\varepsilon > 0$, there exists $a \in \mathbb{Q}$ such that the open interval $(a, a + \varepsilon)$ belongs to $F$.
\item[(DR)] \axitem{DR} If $F$ contains an open interval $(a,d)$, then $F$ also contains an open interval $(b,c)$ such that $a < b < c < d$.
\item[(DT)] \axitem{DT} For every $U \in F$, there exists an open interval $(a,b) \in F$ such that $(a,b) \subseteq U$.
\end{itemize}
\begin{prop}[dedekind-cuts-filters]
There is a bijection between the set of Dedekind cuts and the set of Dedekind filters.
\end{prop}
\begin{proof}
If $(L,U)$ is a Dedekind real, define $F(L,U)$ as the set of all $V$ such that there exist $a \in L$ and $b \in U$ such that $(a,b) \subseteq V$.
Clearly, this is a filter that satisfies \axref{DT}.
Axioms \axref{DL} and \axref{DU} imply \axref{DR}.
Let us prove \axref{DE}.
By \axref{DI}, \axref{DD}, and \axref{DL}, there exist $a \in L$ and $b \in U$ such that $a < b$.
Let $a' = a + \frac{b - a}{3}$ and $b' = b - \frac{b - a}{3}$.
By \axref{DS}, either $a' \in L$ or $b' \in U$.
Thus, the open interval $(a,b)$ can be reduced by a factor of $1.5$.
Repeating this process, we can obtain an arbitrarily small open interval in a finite number of steps, proving \axref{DE}.
Now, let $F$ be a Dedekind filter.
Define:
\[ L_F = \{ a \in \mathbb{Q} \mid \exists b \in \mathbb{Q}, (a,b) \in F \}, \quad U_F = \{ b \in \mathbb{Q} \mid \exists a \in \mathbb{Q}, (a,b) \in F \}. \]
Axiom \axref{DE} implies \axref{DI} and \axref{DS}.
Axiom \axref{DR} implies \axref{DL} and \axref{DU}.
Finally, \axref{DT} implies \axref{DD}.
It is straightforward to verify that $L_{F(L,U)} = L$ and $U_{F(L,U)} = U$.
The fact that $F(L_F,U_F) = F$ follows directly from \axref{DT}.
\end{proof}
The cover space of rational numbers $\mathbb{Q}$ is defined as the one induced by the usual Euclidean metric space structure on $\mathbb{Q}$.
Now, we can show that regular Cauchy filters on this cover space correspond to Dedekind filters:
\begin{prop}[dedekind-cauchy]
A filter on $\mathbb{Q}$ is a Dedekind filter if and only if it is a regular Cauchy filter.
\end{prop}
\begin{proof}
By \rcor{metric-cauchy-filter}, a proper filter on $\mathbb{Q}$ satisfies \axref{DE} if and only if it is a Cauchy filter.
Thus, we need to show that a Cauchy filter is regular if and only if it satisfies \axref{DR} and \axref{DT}.
If a Cauchy filter $F$ satisfies \axref{DR} and \axref{DT}, then, for every $U \in F$, there exist $a < b < c < d$ such that $(b,c) \subseteq (a,d) \subseteq U$ and $(b,c) \in F$.
Since $(b,c) \rb (a,d)$, this shows that $F$ is regular.
Conversely, suppose that $F$ is regular.
Define
\[ F' = \{ U \in F \mid \exists (a,b) \in F, (a,b) \subseteq U \}. \]
By \rcor{metric-cauchy-filter}, $F'$ is a Cauchy filter.
Since $F' \subseteq F$ and $F$ is regular, \rprop{regular-minimal} implies that $F = F'$.
Thus, $F$ satisfies \axref{DT}.
Finally, let us prove that $F$ satisfies \axref{DR}.
Since $F$ is regular, if we have $(a,b) \in F$, then there exists a set $U \in F$ such that $U \rb (a,b)$.
By \axref{DT}, we also have an open interval $(c,d) \in F$ such that $(c,d) \subseteq U$.
\rprop{rb-closure} implies that $a < c$ and $d < b$.
This concludes the proof.
To show \axref{DR}, suppose $(a,b) \in F$.
Because $F$ is regular, there exists $U \in F$ such that $U \rb (a,b)$.
By \axref{DT}, we can find an open interval $(c,d) \in F$ such that $(c,d) \subseteq U$.
Using \rprop{rb-closure}, we conclude that $a < c < d < b$, verifying \axref{DR}.
This completes the proof.
\end{proof}
\section{Completion}
\label{sec:completion}
In this section, we define separated and complete cover spaces and prove that complete cover spaces form a reflective subcategory of $\cat{Cov}$.
Separated cover spaces are analogous to $T_0$-spaces or Hausdorff spaces.
These two notions are equivalent for cover spaces, as we assume regularity.
We will also prove that a certain subcategory of complete cover spaces and Cauchy maps is equivalent to a subcategory of regular topological spaces.
To define separated spaces, we first introduce an equivalence relation on points of a cover space.
Two points $x$ and $y$ are said to be \emph{equivalent} if every Cauchy cover contains a set that includes both $x$ and $y$.
The following lemma provides a useful characterization of this relation, confirming that it is indeed an equivalence relation:
\begin{lem}[separated-char]
Let $x,y$ be a pair of points in a cover space $X$.
Then the following conditions are equivalent:
\begin{enumerate}
\item \label{sc:sub} $x^\wedge \subseteq y^\wedge$.
\item $x^\wedge$ and $y^\wedge$ are equivalent as Cauchy filters.
\item $x^\wedge = y^\wedge$.
\item \label{sc:con} Every neighborhood of $x$ contains $y$.
\item \label{sc:int} Every neighborhood of $x$ intersects every neighborhood of $y$.
\item \label{sc:neighbor} Every Cauchy cover contains a neighborhood of both $x$ and $y$.
\item \label{sc:cov} $x$ and $y$ are equivalent.
\end{enumerate}
\end{lem}
\begin{proof}
The equivalence of the first three conditions follows from \rprop{regular-minimal}, since neighborhood filters are regular.
It is also clear that \eqref{sc:sub} implies \eqref{sc:con}, \eqref{sc:con} implies \eqref{sc:int}, and \eqref{sc:neighbor} implies \eqref{sc:cov}.
Additionally, \eqref{sc:cov} implies \eqref{sc:neighbor} by \axref{CR}.
Now, we prove that \eqref{sc:int} implies \eqref{sc:neighbor}.
Let $C$ be a Cauchy cover.
Then, there exist sets $U,W$ such that $U$ is a neighborhood of $x$, $U \rb W$, and $W \in C$.
Since $U \rb W$, there exists a neighborhood $V$ of $y$ such that $\overlap{V}{U} \implies V \subseteq W$.
By \eqref{sc:int}, $U$ and $V$ intersect, which implies that $V \subseteq W$.
Thus, $W$ is a neighborhood of both $x$ and $y$.
Finally, we prove that \eqref{sc:neighbor} implies \eqref{sc:sub}.
Let $U$ be a neighborhood of $x$.
By \eqref{sc:cov}, there exists a neighborhood $V$ of both $x$ and $y$ such that $x \in V \implies V \subseteq U$
Thus, $U$ is also a neighborhood of $y$.
\end{proof}
\begin{defn}
A cover space $X$ is called \emph{separated} if any two points of $X$ that satisfy the equivalent conditions of \rlem{separated-char} are equal.
\end{defn}
\begin{example}
A discrete cover space is separated.
Indeed, since the cover consisting of singleton sets is Cauchy, any two equivalent points must be equal.
\end{example}
\begin{example}
The cover space induced by a metric space is separated.
Indeed, if two points $x$ and $y$ are equivalent, there exists an open ball of any given radius that contains both $x$ and $y$.
This implies that the distance between $x$ and $y$ is zero, and hence, $x = y$.
\end{example}
A topological space $X$ is \emph{Hausdorff} if, for every pair of points $x,y \in X$, whenever every neighborhood of $x$ intersects every neighborhood of $y$, it follows that $x = y$.
\rlem{separated-char} implies that a cover space is separated if and only if its underlying topological space is Hausdorff.
A subset of a topological space is \emph{dense} if it intersects every inhabited open set.
A function is \emph{dense} if its image is dense.
We include a proof of the following standard fact to demonstrate that it is constructive:
\begin{prop}[dense-unique]
Let $Y$ be a Hausdorff topological space, $S$ a dense subset of a topological space $X$, and $f,g : X \to Y$ continuous functions.
If $f$ and $g$ are equal on every point in $S$, then $f = g$.
\end{prop}
\begin{proof}
Let $x$ be a point in $X$.
Since $Y$ is Hausdorff, to prove that $f(x) = g(x)$, we need to show that every neighborhood of $f(x)$ intersects every neighborhood of $g(x)$.
Let $U$ be a neighborhood of $f(x)$ and $V$ a neighborhood of $g(x)$.
Then $f^{-1}(U) \cap g^{-1}(V)$ is a neighborhood of $x$.
Since $S$ is dense, this neighborhood contains a point $x' \in S$.
Thus, $U$ and $V$ both contain $f(x') = g(x')$.
\end{proof}
Now, we are ready to define complete cover spaces:
\begin{defn}
A cover space is said to be \emph{complete} if it is separated and every Cauchy filter is equivalent to the neighborhood filter of some point.
\end{defn}
\begin{remark}
A cover space is separated if and only if the mapping $(-)^\wedge$, which sends points to regular Cauchy filters, is injective.
Similarly, a cover space is complete if and only if this mapping is bijective.
\end{remark}
In a complete cover space, every Cauchy filter $F$ determines a point, denoted by $F^\vee$, which is the unique point such that $F^{\vee \wedge} \subseteq F$.
The following lemma provides a useful characterization of the neighborhood filter $F^{\vee \wedge}$:
\begin{lem}[filter-point-char]
Let $F$ be a Cauchy filter in a complete cover space.
Then
\[ F^{\vee \wedge} = \{ U \mid \exists V \in F, V \rb U \}. \]
\end{lem}
\begin{proof}
Since $F^{\vee \wedge}$ and $F$ are equivalent, if $V \in F$ and $V \rb U$, then $U \in F^{\vee \wedge}$ by \rlem{cauchy-filter-rb}.
Conversely, suppose $U \in F^{\vee \wedge}$.
By \rlem{rb-point}, there exists a neighborhood $V$ of $F^\vee$ such that $V \rb U$.
Since $F^{\vee \wedge} \subseteq F$, we have $V \in F$, completing the proof.
\end{proof}
Now, we will show that cover maps to complete cover spaces extend uniquely along dense embeddings.
First, we prove a lemma that shows how to lift Cauchy filters along dense embeddings:
\begin{lem}[filter-lift]
Let $f : X \to Y$ be a dense embedding between cover spaces, and let $F$ be a Cauchy filter on $Y$.
Then the set
\[ G = \{ U \mid \exists V,V' \subseteq Y, f^{-1}(V) \subseteq U, V' \rb V, V' \in F \} \]
is a Cauchy filter on $X$ such that $f(G)$ is equivalent to $F$.
\end{lem}
\begin{proof}
Clearly, $G$ is a filter.
To see that it is proper, let $U \in G$.
By definition of $G$, there exist sets $V, V' \subseteq Y$ such that $f^{-1}(V) \subseteq U$, $V' \rb V$, and $V' \in F$.
Since $F$ is a proper filter, there exists a point $y \in V'$.
Since $f$ is dense, there is a point $x \in X$ such that $f(x) \in V$, implying $x \in U$.
Therefore, $G$ is proper.
We now demonstrate that $G$ is Cauchy.
Let $C$ be a Cauchy cover of $X$.
Since $f$ is an embedding, the set
\[ \{ V' \mid \exists V, V' \rb V, \exists U \in C, f^{-1}(V) \subseteq U \} \]
forms a Cauchy cover of $Y$.
Since $F$ is Cauchy, there exist sets $V',V,U$ such that $V' \in F$, $V' \rb V$, $U \in C$, and $f^{-1}(V) \subseteq U$.
This implies $U \in C \cap G$, proving that $G$ is Cauchy.
Finally, we prove that $f(G)$ is equivalent to $F$.
Let $C$ be a Cauchy cover of $Y$.
Since $F$ is Cauchy, there exist sets $V' \in F$ and $V \in C$ such that $V' \rb V$.
Since $f^{-1}(V)$ belongs to $G$ by construction, we have $V \in C \cap F \cap f(G)$.
Therefore, $f(G)$ is indeed equivalent to $F$.
\end{proof}
This lemma implies a useful criterion for completeness.
Given a dense embedding $f : X \to Y$, to prove that $Y$ is complete, it suffices to consider only Cauchy filters that come from $X$:
\begin{lem}[complete-part]
Let $X$ be a cover space, $Y$ a separated cover space, and $f : X \to Y$ a dense embedding.
Then $Y$ is complete if and only if, for every regular Cauchy filter $F$ on $X$, there exists a point $y \in Y$ such that $f(F)$ is equivalent to the neighborhood filter of $y$.
\end{lem}
\begin{proof}
The ``only if'' direction is obvious.
The coverse follows from \rlem{filter-lift}.
\end{proof}
Now, we are ready to prove the extension property:
\begin{thm}[dense-lift]
For every complete cover space $Z$, every dense embedding $f : X \to Y$ between cover spaces, and every Cauchy map $g : X \to Z$,
there exists a unique Cauchy map $\widetilde{g} : Y \to Z$ such that $\widetilde{g} \circ f = g$.
If $g$ is a cover map, then so is $\widetilde{g}$.
\end{thm}
\begin{proof}
The uniqueness follows from \rprop{dense-unique} and \rprop{cauchy-continuous}.
Let us prove the existence.
For each point $y \in Y$, by \rlem{filter-lift}, there exists a Cauchy filter $G_y$ on $X$ such that $f(G_y)$ is equivalent to $y^\wedge$.
We define $\widetilde{g}(y)$ as $g(G_y)^\vee$.
Next, we show that $\widetilde{g}$ is a Cauchy map.
Let $F$ be a Cauchy filter on $Y$ and $C$ a Cauchy cover on $Z$.
We need to show that there exists a set $U \in C$ such that $\widetilde{g}^{-1}(U) \in F$.
Let $G_F$ be the filter constructed for $F$ via \rlem{filter-lift}.
Since $g$ is Cauchy, the filter $g(G_F)$ is Cauchy, so there exist sets $U' \in g(G_F)$ and $U \in C$ such that $U' \rb U$.
From the definition of $G_F$, we get sets $V' \in F$ and $V$ such that $f^{-1}(V) \subseteq g^{-1}(U')$ and $V' \rb V$.
Since $F$ is a filter, it suffices to show that $V' \subseteq \widetilde{g}^{-1}(U)$.
Let $y \in V'$.
We need to show that $U$ is a neighborhood of $\widetilde{g}(y)$.
By \rlem{filter-point-char}, it suffices to show that $U' \in g(G_y)$.
This follows from the definition of $G_y$ and \rlem{rb-point}, as $f^{-1}(V) \subseteq g^{-1}(U')$ and $V$ is a neighborhood of $y$.
Now, we prove that $\widetilde{g} \circ f = g$.
Let $x \in X$.
By \rlem{separated-char}, it suffices to show that every neighborhood of $\widetilde{g}(f(x))$ contains $g(x)$.
Let $W$ be a neighborhood of $\widetilde{g}(f(x))$.
By \rlem{filter-point-char}, there exists a set $W' \in g(G_{f(x)})$ such that $W' \rb W$.
From the definition of $G_{f(x)}$, we get sets $V$ and $V'$ such that $f^{-1}(V) \subseteq g^{-1}(W')$, $V' \rb V$, and $\{ f(x) \} \rb V'$.
This implies that $W$ is a neighborhood of $g(x)$.
Finally, suppose that $g$ is a cover map.
We need to show that $\widetilde{g}$ is also a cover map.
Let $D$ be a Cauchy cover on $Z$.
By \axref{CR}, the set $\{ g^{-1}(W') \mid \exists W \in D, W' \rb W \}$ is a Cauchy cover on $X$.
Since $f$ is an embedding, the set
\[ \{ V'' \mid \exists V,V',W',W, V'' \rb V', V' \rb V, W \in D, W' \rb W, f^{-1}(V) \subseteq g^{-1}(W') \} \]
is a Cauchy cover on $Y$.
We will show that this cover refines $\{ \widetilde{g}^{-1}(W) \mid W \in D \}$.
Let $V,V',V'',W,W'$ be sets such that $V'' \rb V'$, $V' \rb V$, $W \in D$, $W' \rb W$, and $f^{-1}(V) \subseteq g^{-1}(W')$.
Then $V'' \subseteq \widetilde{g}^{-1}(W)$.
To see this, let $y \in V''$.
We need to show that $W$ is a neighborhood of $\widetilde{g}(y) = g(G_y)^\vee$, but this follows from \rlem{filter-point-char} and the definition of $G_y$.
\end{proof}
A \emph{completion} of a cover space $X$ is a complete cover space $Y$ together with a dense embedding $X \to Y$.
By \rthm{dense-lift}, completion is unique up to isomorphism.
We now show that every cover space has a completion:
\begin{thm}[completion]
For every cover space $X$, there exists a complete cover space $C(X)$ and a dense embedding $\eta_X : X \to C(X)$.
\end{thm}
\begin{proof}
Define $C(X)$ as the set of regular Cauchy filters on $X$.
For every subset $U \subseteq X$, let $\widetilde{U} \subseteq C(X)$ denote the set of regular Cauchy filters containing $U$.
The Cauchy covers of $C(X)$ are defined as those covers $C$ refined by $\{ \widetilde{U'} \mid U' \in C' \}$ for some Cauchy cover $C'$ in $X$.
To see that $C$ is a cover, let $F$ be a regular Cauchy filter.
Then there exists a set $U \in F \cap C'$, which implies that we have $V \in C$ such that $F \in \widetilde{U} \subseteq V$.
We first verify that this definition satisfies the axioms of a cover space:
\begin{itemize}
\item Axioms \axref{CT} and \axref{CE}: These follow directly from the definition of $C(X)$.
\item Axiom \axref{CG}: Let $C$ and $\{ D_U \}_{U \in C}$ be Cauchy covers of $C(X)$.
We need to show that $E = \{ U \cap V \mid U \in C, V \in D_U \}$ is a Cauchy cover.
For each $U' \in C'$, define a Cauchy cover of $X$:
\[ D'_{U'} = \{ V' \mid \exists U \in C, V \in D_U, \widetilde{U'} \subseteq U, \widetilde{V'} \subseteq V \}. \]
By \axref{CG}, the set
\[ E' = \{ U' \cap V' \mid U' \in C', \exists U \in C, V \in D_U, \widetilde{U'} \subseteq U, \widetilde{V'} \subseteq V \} \]
is also a Cauchy cover of $X$.
Since $E$ is refined by $\{ \widetilde{W'} \mid W' \in E' \}$, it is a Cauchy cover of $C(X)$.
\item Axiom \axref{CR}: First, we show that $\widetilde{V} \rb_{C(X)} \widetilde{U}$ whenever $V \rb_X U$.
If $V \rb_X U$, then the following set is a Cauchy cover of $C(X)$:
\[ R_{V,U} = \{ \widetilde{W} \mid \overlap{W}{V} \implies W \subseteq U \}. \]
Let $\widetilde{W} \in R_{V,U}$.
We will show that $\widetilde{W}$ belongs to the following set:
\[ \widetilde{R}_{V,U} = \{ W \mid \overlap{W}{\widetilde{V}} \implies W \subseteq \widetilde{U} \}. \]
If $\widetilde{W}$ intersects $\widetilde{V}$, then there exists a Cauchy filter $F$ containing $W \cap V$.