-
Notifications
You must be signed in to change notification settings - Fork 369
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c907204
commit c3aa245
Showing
6 changed files
with
71 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/- | ||
Copyright (c) 2021 Jordan Brown, Thomas Browning, Patrick Lutz. All rights reserved. | ||
Released under Apache 2.0 license as described in the file LICENSE. | ||
Authors: Jordan Brown, Thomas Browning, Patrick Lutz | ||
-/ | ||
import Mathlib.Algebra.Group.Subgroup.Finite | ||
import Mathlib.Algebra.Group.Subgroup.ZPowers.Lemmas | ||
import Mathlib.GroupTheory.Commutator.Basic | ||
import Mathlib.GroupTheory.GroupAction.Quotient | ||
|
||
/-! | ||
# Extra lemmas about commutators | ||
The commutator of a finite direct product is contained in the direct product of the commutators. | ||
-/ | ||
|
||
open QuotientGroup | ||
|
||
namespace Subgroup | ||
variable {G : Type*} [Group G] | ||
|
||
/-- The commutator of a finite direct product is contained in the direct product of the commutators. | ||
-/ | ||
theorem commutator_pi_pi_of_finite {η : Type*} [Finite η] {Gs : η → Type*} [∀ i, Group (Gs i)] | ||
(H K : ∀ i, Subgroup (Gs i)) : ⁅Subgroup.pi Set.univ H, Subgroup.pi Set.univ K⁆ = | ||
Subgroup.pi Set.univ fun i => ⁅H i, K i⁆ := by | ||
classical | ||
apply le_antisymm (commutator_pi_pi_le H K) | ||
rw [pi_le_iff] | ||
intro i hi | ||
rw [map_commutator] | ||
apply commutator_mono <;> | ||
· rw [le_pi_iff] | ||
intro j _hj | ||
rintro _ ⟨_, ⟨x, hx, rfl⟩, rfl⟩ | ||
by_cases h : j = i | ||
· subst h | ||
simpa using hx | ||
· simp [h, one_mem] | ||
|
||
/-- Cosets of the centralizer of an element embed into the set of commutators. -/ | ||
noncomputable def quotientCentralizerEmbedding (g : G) : | ||
G ⧸ centralizer (zpowers (g : G)) ↪ commutatorSet G := | ||
((MulAction.orbitEquivQuotientStabilizer (ConjAct G) g).trans | ||
(quotientEquivOfEq (ConjAct.stabilizer_eq_centralizer g))).symm.toEmbedding.trans | ||
⟨fun x => | ||
⟨x * g⁻¹, | ||
let ⟨_, x, rfl⟩ := x | ||
⟨x, g, rfl⟩⟩, | ||
fun _ _ => Subtype.ext ∘ mul_right_cancel ∘ Subtype.ext_iff.mp⟩ | ||
|
||
theorem quotientCentralizerEmbedding_apply (g : G) (x : G) : | ||
quotientCentralizerEmbedding g x = ⟨⁅x, g⁆, x, g, rfl⟩ := | ||
rfl | ||
|
||
/-- If `G` is generated by `S`, then the quotient by the center embeds into `S`-indexed sequences | ||
of commutators. -/ | ||
noncomputable def quotientCenterEmbedding {S : Set G} (hS : closure S = ⊤) : | ||
G ⧸ center G ↪ S → commutatorSet G := | ||
(quotientEquivOfEq (center_eq_infi' S hS)).toEmbedding.trans | ||
((quotientiInfEmbedding _).trans | ||
(Function.Embedding.piCongrRight fun g => quotientCentralizerEmbedding (g : G))) | ||
|
||
theorem quotientCenterEmbedding_apply {S : Set G} (hS : closure S = ⊤) (g : G) (s : S) : | ||
quotientCenterEmbedding hS g s = ⟨⁅g, s⁆, g, s, rfl⟩ := | ||
rfl | ||
|
||
end Subgroup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters