Skip to content

Commit

Permalink
feat(group_theory/subgroup/basic): normalizer_eq_top (#9917)
Browse files Browse the repository at this point in the history
The normalizer is the whole group if and only if the subgroup is normal.
  • Loading branch information
tb65536 committed Oct 25, 2021
1 parent 41b90d7 commit bfcbe68
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/group_theory/subgroup/basic.lean
Expand Up @@ -1132,6 +1132,10 @@ variable {H}
instance normal_in_normalizer : (H.comap H.normalizer.subtype).normal :=
⟨λ x xH g, by simpa using (g.2 x).1 xH⟩

@[to_additive] lemma normalizer_eq_top : H.normalizer = ⊤ ↔ H.normal :=
eq_top_iff.trans ⟨λ h, ⟨λ a ha b, (h (mem_top b) a).mp ha⟩, λ h a ha b,
⟨λ hb, h.conj_mem b hb a, λ hb, by rwa [h.mem_comm_iff, inv_mul_cancel_left] at hb⟩⟩

open_locale classical

@[to_additive]
Expand Down

0 comments on commit bfcbe68

Please sign in to comment.