Skip to content

Commit

Permalink
feat(group_theory/p_group): Intersection with p-subgroup is a p-subgr…
Browse files Browse the repository at this point in the history
…oup (#9189)

Two lemmas stating that the intersection with a p-subgroup is a p-subgroup.

Not sure which one should be called left and which one should be called right though :)
  • Loading branch information
tb65536 committed Sep 14, 2021
1 parent eb20390 commit e489ca1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/group_theory/p_group.lean
Expand Up @@ -63,6 +63,14 @@ begin
exact λ h, hK ⟨h, hHK h.2⟩,
end

lemma to_inf_left {H : subgroup G} (hH : is_p_group p H) (K : subgroup G) :
is_p_group p (H ⊓ K : subgroup G) :=
hH.to_le inf_le_left

lemma to_inf_right {K : subgroup G} (hK : is_p_group p K) (H : subgroup G) :
is_p_group p (H ⊓ K : subgroup G) :=
hK.to_le inf_le_right

variables (hG : is_p_group p G)

include hG
Expand Down

0 comments on commit e489ca1

Please sign in to comment.