-
Notifications
You must be signed in to change notification settings - Fork 381
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
[Merged by Bors] - feat(Geometry/Manifold): state generalized Poincaré conjecture #13887
Conversation
alreadydone
commented
Jun 17, 2024
PR summary 61f96f8bc4Import changesNo significant changes to the import graph Declarations diff
You can run this locally as follows## summary with just the declaration names:
./scripts/no_lost_declarations.sh short <optional_commit>
## more verbose report:
./scripts/no_lost_declarations.sh <optional_commit> |
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.
Ha, lovely!
I think it is probably a good idea to introduce:
class IsHomotopySphere (M : Type*) [TopologicalSpace M] (n : ℕ) : Prop :=
nonempty_homotopyEquiv : Nonempty (ContinuousMap.HomotopyEquiv M S)
and
class IsTopologicalSphere (M : Type*) [TopologicalSpace M] (n : ℕ) : Prop :=
nonempty_homoeomorph : Nonempty (Homeomorph M S)
I'll have a proper look this evening when I have some time (and try to remember if there was a reason I used structomorph rather than diffeomorph when I was over in ICERM).
321ea12
to
6b6f2c0
Compare
6b6f2c0
to
ccd60ba
Compare
What do you think about something like this: def TopologicalPoincareConjecture (n : ℕ) : Prop :=
∀ (M : Type u) [TopologicalSpace M] [T2Space M] [ChartedSpace ℝⁿ M],
M ≃ₕ 𝕊ⁿ → Nonempty (M ≃ₜ 𝕊ⁿ)
def SmoothPoincareConjecture (n : ℕ) : Prop :=
∀ (M : Type u) [TopologicalSpace M] [T2Space M] [ChartedSpace ℝⁿ M]
[SmoothManifoldWithCorners (𝓡 n) M],
M ≃ₕ 𝕊ⁿ → Nonempty (M ≃ₘ⟮𝓡 n, 𝓡 n⟯ 𝕊ⁿ)
proof_wanted TopologicalPoincareConjecture.proof : ∀ n, TopologicalPoincareConjecture n
proof_wanted SmoothPoincareConjecture.not_seven : ¬ SmoothPoincareConjecture 7 etc |
bors merge |
Build failed (retrying...): |
Pull request successfully merged into master. Build succeeded: |