Skip to content

Commit ac12359

Browse files
committed
add notes and silly stuff
1 parent 6396d7e commit ac12359

File tree

2 files changed

+33
-3
lines changed

2 files changed

+33
-3
lines changed

MyProject.lean

-1
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
def hello := "world"

my_project/universal.lean

+33-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,43 @@
11
import Mathlib.Topology.Homotopy.Path
22
open Set
33

4-
variable {X : Type _} [TopologicalSpace X] {x₀ x₁ : X }
4+
variable {X : Type _} [TopologicalSpace X] (x₀ : X) {x₁ : X }
55
-- def baseSet : TopologicalSpace X
66

7-
def Cover :=
7+
#check X
8+
9+
def coverSet :=
810
Σ x₁ : X , Path.Homotopic.Quotient x₀ x₁
911

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+
1041

1142

1243
#exit

0 commit comments

Comments
 (0)