-
Notifications
You must be signed in to change notification settings - Fork 156
Hurewicz theorem for CW complexes #1224
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 all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
cfa90f6
first
aljungstrom 5b6e35d
cont
aljungstrom 2b92158
stuff
aljungstrom 866d858
fixes
aljungstrom a868236
more
aljungstrom 9d6e116
stuff
aljungstrom c386f10
stuff
aljungstrom 3008a6f
asd
aljungstrom 5a1f43e
stuff
aljungstrom 7cb8ef8
asd
aljungstrom 1cf3626
stuff
aljungstrom 4ddaa16
done?
aljungstrom 8b0c69e
Merge remote-tracking branch 'master/master' into hurewicz-merge
aljungstrom 349af6c
minor
aljungstrom 9e514e8
minor
aljungstrom 37f8971
Data -> HITs
aljungstrom b391cbc
safe flags
aljungstrom b86de3e
safe flag
aljungstrom c5f43a6
wups
aljungstrom d767b79
universe levels
aljungstrom 39432a3
universe juggling
aljungstrom 954c785
wups
aljungstrom 84f687f
Merge remote-tracking branch 'master/master' into hurewicz-merge
aljungstrom 0854b15
fixes
aljungstrom e0bf109
remove private
aljungstrom 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,40 @@ | ||
| module Cubical.Algebra.AbGroup.FinitePresentation where | ||
|
|
||
| open import Cubical.Foundations.Prelude | ||
|
|
||
| open import Cubical.Data.Nat | ||
| open import Cubical.Data.Int | ||
|
|
||
| open import Cubical.HITs.PropositionalTruncation | ||
|
|
||
| open import Cubical.Algebra.Group | ||
| open import Cubical.Algebra.Group.Morphisms | ||
| open import Cubical.Algebra.Group.MorphismProperties | ||
| open import Cubical.Algebra.AbGroup | ||
| open import Cubical.Algebra.AbGroup.Instances.FreeAbGroup | ||
|
|
||
| open import Cubical.Algebra.Group.QuotientGroup | ||
| open import Cubical.Algebra.Group.Subgroup | ||
|
|
||
| private | ||
| variable | ||
| ℓ : Level | ||
|
|
||
| record FinitePresentation (A : AbGroup ℓ) : Type ℓ where | ||
| field | ||
| nGens : ℕ | ||
| nRels : ℕ | ||
| rels : AbGroupHom ℤ[Fin nRels ] ℤ[Fin nGens ] | ||
| fpiso : AbGroupIso A (ℤ[Fin nGens ] /Im rels) | ||
|
|
||
| isFinitelyPresented : AbGroup ℓ → Type ℓ | ||
| isFinitelyPresented G = ∥ FinitePresentation G ∥₁ | ||
|
|
||
| open FinitePresentation | ||
| GrIsoPresFinitePresentation : ∀ {ℓ ℓ'} {A : AbGroup ℓ} {B : AbGroup ℓ'} | ||
| → AbGroupIso A B → FinitePresentation A → FinitePresentation B | ||
| nGens (GrIsoPresFinitePresentation abG fpA) = nGens fpA | ||
| nRels (GrIsoPresFinitePresentation abG fpA) = nRels fpA | ||
| rels (GrIsoPresFinitePresentation abG fpA) = rels fpA | ||
| fpiso (GrIsoPresFinitePresentation abG fpA) = | ||
| compGroupIso (invGroupIso abG) (fpiso fpA) |
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
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
Oops, something went wrong.
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.