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

lemmas about subgroup product #2193

Merged
merged 1 commit into from
Jan 15, 2025
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: 25 additions & 1 deletion theories/Algebra/Groups/Subgroup.v
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ Defined.

(** The product of two subgroups. *)
Definition subgroup_product {G : Group} (H K : Subgroup G) : Subgroup G
:= subgroup_generated (fun x => ((H x) + (K x))%type).
:= subgroup_generated (fun x => (H x + K x)%type).

(** The induction principle for the product. *)
Definition subgroup_product_ind {G : Group} (H K : Subgroup G)
Expand All @@ -663,6 +663,30 @@ Proof.
+ by apply P_op.
Defined.

Definition subgroup_product_incl_l {G : Group} (H K : Subgroup G)
: forall x, H x -> subgroup_product H K x
:= fun x => tr o sgt_in o inl.

Definition subgroup_product_incl_r {G : Group} (H K : Subgroup G)
: forall x, K x -> subgroup_product H K x
:= fun x => tr o sgt_in o inr.

(** A product of normal subgroups is normal. *)
Global Instance isnormal_subgroup_product {G : Group} (H K : Subgroup G)
`{!IsNormalSubgroup H, !IsNormalSubgroup K}
: IsNormalSubgroup (subgroup_product H K).
Proof.
snrapply Build_IsNormalSubgroup'.
intros x y; revert x.
nrapply (functor_subgroup_generated _ _ (grp_conj y)).
intros x.
apply functor_sum; rapply isnormal_conj.
Defined.

Definition normalsubgroup_product {G : Group} (H K : NormalSubgroup G)
: NormalSubgroup G
:= Build_NormalSubgroup G (subgroup_product H K) _.

(* **** Paths between generated subgroups *)

(* This gets used twice in [path_subgroup_generated], so we factor it out here. *)
Expand Down
Loading