-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP Manifolds #30
base: WIP_EuclideanSpaces
Are you sure you want to change the base?
WIP Manifolds #30
Conversation
theories/Topology/Manifolds.v
Outdated
admit. | ||
- split. | ||
+ (* need proof that R^n is Hausdorff *) | ||
admit. | ||
+ apply locally_homeomorphic_refl. | ||
Admitted. | ||
|
||
Theorem SphereManifold (n : nat) : Manifold (Sphere (S n)) n. | ||
Proof. | ||
constructor. | ||
- (* provide an atlas for the sphere *) | ||
admit. | ||
- split. | ||
+ (* sphere is Hausdorff *) | ||
admit. | ||
+ (* sphere is locally homeomorphic to R^n *) | ||
admit. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could state facts like Hausdorff (Sphere n)
or Hausdorff (EuclideanSpace n)
as Lemmas/Corollaries whose proof ends in Admitted
. This would simplify the code style (we wouldn’t need to repeat the proofs) and would make clearer what facts we still need to prove.
Adding comments what we need to show for each admit
, as you did above, is very useful as reader. Thanks.
theories/Topology/Manifolds.v
Outdated
+ apply metrizable_Hausdorff. | ||
apply RTop_metrizable. | ||
+ (* locally_homeomorphic RTop (EuclideanSpace 1) *) | ||
admit. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should be able to prove that RTop
is homeomorphic to EuclideanSpace 1
. Combining this with a lemma that if A, B are homeomorphic, they are also homeomorphic, we should be able to get a proof of locally homeomorphic RTop (EuclideanSpace 1)
.
I took the liberty to give a more general result, relating global and local homeomorphisms and using it to change the proof of
|
4028d5a
to
850ee2e
Compare
850ee2e
to
eb4c150
Compare
77313c2
to
faa21c3
Compare
Use this to change the proof that `locally_homeomorphic` is reflexive.
eb4c150
to
49507b3
Compare
Tracking PR for #29. Targets the EuclideanSpaces branch because it needs to make use of facts about R^n.
Rough checklist/wishlist