Skip to content

Commit

Permalink
Begin proof that RTop and ℝ¹ are homeomorphic
Browse files Browse the repository at this point in the history
  • Loading branch information
Columbus240 committed Jun 1, 2021
1 parent 30b1691 commit 77313c2
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions theories/Topology/Manifolds.v
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,35 @@ Definition Manifold (X:TopologicalSpace) (n : nat) : Prop :=

From Topology Require Import RTopology.

Lemma RTop_lhom_R1 : locally_homeomorphic RTop (EuclideanSpace 1).
Proof. Admitted.
Lemma RTop_homeo_R1 : homeomorphic RTop (EuclideanSpace 1).
Proof.
unshelve eexists.
2: unshelve eexists.
- (* define [f] *)
intros.
red.
red in X.
simpl in *.
constructor; [assumption|constructor].
- (* define [g] *)
intros.
red. red in X.
simpl in *.
inversion X; subst; clear X.
assumption.
- (* continuity of [f] *)
admit.
- (* continuity of [g] *)
admit.
- intros. simpl. reflexivity.
- intros. simpl. admit.
Admitted.

Corollary RTop_lhom_R1 : locally_homeomorphic RTop (EuclideanSpace 1).
Proof.
apply homeomorphic_locally_homeomorphic.
apply RTop_homeo_R1.
Qed.

Lemma RManifold : Manifold RTop 1.
Proof.
Expand Down

0 comments on commit 77313c2

Please sign in to comment.