Skip to content
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

quotient is trivial iff subgroup is maximal #2197

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions theories/Algebra/Groups/QuotientGroup.v
Original file line number Diff line number Diff line change
Expand Up @@ -322,3 +322,29 @@ Definition grp_quotient_trivial (G : Group) (N : NormalSubgroup G)
(triv : IsTrivialGroup N)
: G $<~> G / N
:= Build_CatEquiv grp_quotient_map.

(** A quotient by a maximal subgroup is trivial. *)
Global Instance istrivial_grp_quotient_maximal
(G : Group) (N : NormalSubgroup G)
: IsMaximalSubgroup N -> IsTrivialGroup (G / N).
Proof.
intros max x _; revert x.
rapply grp_quotient_ind_hprop.
intros x.
apply qglue, max.
Defined.

(** Conversely, a trivial quotient means the subgroup is maximal. *)
Definition ismaximalsubgroup_istrivial_grp_quotient `{Univalence}
(G : Group) (N : NormalSubgroup G)
: IsTrivialGroup (G / N) -> IsMaximalSubgroup N.
Proof.
intros triv x.
specialize (triv (grp_quotient_map x) tt).
simpl in triv.
apply related_quotient_paths in triv.
2-5: exact _.
apply equiv_subgroup_inverse.
nrapply (subgroup_in_op_l _ _ 1 triv) .
apply subgroup_in_unit.
Defined.
Loading