-
Notifications
You must be signed in to change notification settings - Fork 199
A strengthening of Freudenthal's theorem for H-spaces #1814
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
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
fe9dc64
Homotopy.Hopf: define the Hopf construction; show Prop 2.19 of BCFR
jarlg fd2f382
Homotopy.Hopf: stronger Freudenthal for H-spaces, plus prelims
jarlg d1f82f3
Apply review suggestions
jdchristensen a5bf421
HomotopyGroup.v: fix typo
jdchristensen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,53 @@ | ||
| Require Import Types Basics Pointed Truncations. | ||
| Require Import HSpace Suspension ExactSequence HomotopyGroup. | ||
| Require Import WildCat Modalities.ReflectiveSubuniverse. | ||
| Require Import HSet Spaces.Nat. | ||
|
|
||
| Local Open Scope pointed_scope. | ||
| Local Open Scope trunc_scope. | ||
| Local Open Scope mc_mult_scope. | ||
|
|
||
|
|
||
| (** * The Hopf construction *) | ||
|
|
||
| (** We define the Hopf construction associated to a left-invertible H-space, and use it to prove that H-spaces satisfy a strengthened version of Freudenthal's theorem (see [freudenthal_hspace] below). | ||
|
|
||
| We have not yet included various standard results about the Hopf construction, such as the total space being the join of the fibre. *) | ||
|
|
||
| (** The Hopf construction associated to a left-invertible H-space (Definition 8.5.6 in the HoTT book). *) | ||
| Definition hopf_construction `{Univalence} (X : pType) | ||
| `{IsHSpace X} `{forall a, IsEquiv (a *.)} | ||
| : pFam (psusp X). | ||
| Proof. | ||
| srapply Build_pFam. | ||
| - apply (Susp_rec (Y:=Type) X X). | ||
| exact (fun x => path_universe (x *.)). | ||
| - simpl. exact pt. | ||
| Defined. | ||
|
|
||
| Lemma transport_hopf_construction `{Univalence} {X : pType} | ||
| `{IsHSpace X} `{forall a, IsEquiv (a *.)} | ||
| : forall x y : X, transport (hopf_construction X) (merid x) y = x * y. | ||
| Proof. | ||
| intros x y. | ||
| transport_to_ap. | ||
| refine (ap (fun z => transport idmap z y) _ @ _). | ||
| 1: apply Susp_rec_beta_merid. | ||
| apply transport_path_universe. | ||
| Defined. | ||
|
|
||
| (** The connecting map associated to the Hopf construction of [X] is a retraction of [loop_susp_unit X] (Proposition 2.19 in https://arxiv.org/abs/2301.02636v1). *) | ||
| Proposition hopf_retraction `{Univalence} (X : pType) | ||
| `{IsHSpace X} `{forall a, IsEquiv (a *.)} | ||
| : connecting_map_family (hopf_construction X) o* loop_susp_unit X | ||
| ==* pmap_idmap. | ||
| Proof. | ||
| nrapply hspace_phomotopy_from_homotopy. | ||
| 1: assumption. | ||
| intro x; cbn. | ||
| refine (transport_pp _ _ _ _ @ _); unfold dpoint. | ||
| apply moveR_transport_V. | ||
| refine (transport_hopf_construction _ _ | ||
| @ _ @ (transport_hopf_construction _ _)^). | ||
| exact (right_identity _ @ (left_identity _)^). | ||
| Defined. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.