-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNeighborhoods.v
46 lines (41 loc) · 1.15 KB
/
Neighborhoods.v
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
Require Export TopologicalSpaces.
Require Export Ensembles.
Require Import EnsemblesImplicit.
Require Export InteriorsClosures.
Definition open_neighborhood {X:TopologicalSpace}
(U:Ensemble (point_set X)) (x:point_set X) :=
open U /\ In U x.
Definition neighborhood {X:TopologicalSpace}
(N:Ensemble (point_set X)) (x:point_set X) :=
exists U:Ensemble (point_set X),
open_neighborhood U x /\ Included U N.
Lemma open_neighborhood_is_neighborhood: forall {X:TopologicalSpace}
(U:Ensemble (point_set X)) (x:point_set X),
open_neighborhood U x -> neighborhood U x.
Proof.
intros.
exists U; auto with sets.
Qed.
Lemma neighborhood_interior: forall {X:TopologicalSpace}
(N:Ensemble (point_set X)) (x:point_set X),
neighborhood N x -> In (interior N) x.
Proof.
intros.
destruct H.
destruct H.
destruct H.
assert (Included x0 (interior N)).
apply interior_maximal; trivial.
auto with sets.
Qed.
Lemma interior_neighborhood: forall {X:TopologicalSpace}
(N:Ensemble (point_set X)) (x:point_set X),
In (interior N) x -> neighborhood N x.
Proof.
intros.
exists (interior N).
repeat split.
apply interior_open.
assumption.
apply interior_deflationary.
Qed.