Commit ac12359 1 parent 6396d7e commit ac12359 Copy full SHA for ac12359
File tree 2 files changed +33
-3
lines changed
2 files changed +33
-3
lines changed Original file line number Diff line number Diff line change 1
- def hello := " world"
Original file line number Diff line number Diff line change 1
1
import Mathlib.Topology.Homotopy.Path
2
2
open Set
3
3
4
- variable {X : Type _} [TopologicalSpace X] { x₀ x₁ : X }
4
+ variable {X : Type _} [TopologicalSpace X] ( x₀ : X) { x₁ : X }
5
5
-- def baseSet : TopologicalSpace X
6
6
7
- def Cover :=
7
+ #check X
8
+
9
+ def coverSet :=
8
10
Σ x₁ : X , Path.Homotopic.Quotient x₀ x₁
9
11
12
+ #check coverSet
13
+ #synth TopologicalSpace (Path x₀ x₁)
14
+
15
+ #synth TopologicalSpace (coverSet x₀)
16
+
17
+ example : IsOpen (univ : Cover) :=
18
+ isOpen_univ
19
+
20
+
21
+
22
+
23
+ -- Hybrid approach
24
+
25
+ -- Construct Hatcher's version of the universal cover
26
+ -- Then show that the topology it has is equivalent to the one described in Bourbaki
27
+ -- by taking the quotient of the path space of X (equipped with the compact open topology)
28
+ -- with repsect to homotopy equivalence rel boundary.
29
+
30
+ -- I.e. need to show that Hatcher's basis generates the compact-open topology quotient.
31
+
32
+ --
33
+
34
+
35
+
36
+
37
+
38
+
39
+
40
+
10
41
11
42
12
43
#exit
You can’t perform that action at this time.
0 commit comments