Skip to content

Commit

Permalink
Merge pull request #2187 from Alizter/ps/rr/sugroup_group_of_maximal_…
Browse files Browse the repository at this point in the history
…subgroup_is_iso_to_original_group

group of maximal subgroup of a group is iso to said group
  • Loading branch information
Alizter authored Jan 8, 2025
2 parents 7ef0792 + 3b5d305 commit 12bd284
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions theories/Algebra/Groups/Subgroup.v
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,15 @@ Defined.
Coercion maximal_subgroup : Group >-> Subgroup.
Add Printing Coercion maximal_subgroup.

(** The group associated to the maximal subgroup is the original group. *)
Definition grp_iso_subgroup_group_maximal (G : Group)
: subgroup_group (maximal_subgroup G) $<~> G.
Proof.
snrapply Build_GroupIsomorphism'.
- rapply equiv_sigma_contr.
- hnf; reflexivity.
Defined.

(** Paths between subgroups correspond to homotopies between the underlying predicates. *)
Proposition equiv_path_subgroup `{F : Funext} {G : Group} (H K : Subgroup G)
: (H == K) <~> (H = K).
Expand Down

0 comments on commit 12bd284

Please sign in to comment.