We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68e5c89 commit 7ffdfd6Copy full SHA for 7ffdfd6
1 file changed
Minimathlib/Topology.lean
@@ -15,10 +15,12 @@ class TopologicalSpace (X : Type u) where
15
16
variable {X : Type u} [TopologicalSpace X]
17
18
-def is_nhd (x : X) (U : Set X) := TopologicalSpace.isOpen U → x ∈ U
+def is_nhd (x : X) (U : Set X) (_: TopologicalSpace.isOpen U) := x ∈ U
19
20
-theorem univ_nhd_any_pt (x : X): is_nhd x 𝒰 := by
21
- exact fun a => trivial
+theorem univ_nhd_any_pt (x : X): is_nhd x 𝒰 _? := by trivial
+
22
+theorem empty_nhd_of_no_pt (x : X): ¬is_nhd x ∅ _? := by
23
+ exact fun a => a
24
25
def isClosed (s : Set X) : Prop := @TopologicalSpace.isOpen X _ (sᶜ)
26
0 commit comments