-
Notifications
You must be signed in to change notification settings - Fork 362
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Topology/Group): Open normal subgroup in clopen nhds of one (#18377
) Proving that there is always an open normal subgroup in a clopen nhd of compact topological group Co-authored-by: NailinGuan <[email protected]> Yi Song <[email protected]> Xuchun Li <[email protected]> Co-authored-by: Patrick Massot <[email protected]>
- Loading branch information
1 parent
652d155
commit c6c4ad2
Showing
3 changed files
with
138 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/- | ||
Copyright (c) 2024 Nailin Guan. All rights reserved. | ||
Released under Apache 2.0 license as described in the file LICENSE. | ||
Authors: Nailin Guan, Yi Song, Xuchun Li | ||
-/ | ||
import Mathlib.GroupTheory.Index | ||
import Mathlib.Topology.Algebra.ClosedSubgroup | ||
import Mathlib.Topology.Algebra.OpenSubgroup | ||
/-! | ||
# Existence of an open normal subgroup in any clopen neighborhood of the neutral element | ||
This file proves the lemma `TopologicalGroup.exist_openNormalSubgroup_sub_clopen_nhd_of_one`, which | ||
states that in a compact topological group, for any clopen neighborhood of 1, | ||
there exists an open normal subgroup contained within it. | ||
This file is split out from the file `OpenSubgroup` because it needs more imports. | ||
-/ | ||
|
||
namespace TopologicalGroup | ||
|
||
theorem exist_openNormalSubgroup_sub_clopen_nhd_of_one {G : Type*} [Group G] [TopologicalSpace G] | ||
[TopologicalGroup G] [CompactSpace G] {W : Set G} (WClopen : IsClopen W) (einW : 1 ∈ W) : | ||
∃ H : OpenNormalSubgroup G, (H : Set G) ⊆ W := by | ||
rcases exist_openSubgroup_sub_clopen_nhd_of_one WClopen einW with ⟨H, hH⟩ | ||
have : Subgroup.FiniteIndex H := H.finiteIndex_of_finite_quotient | ||
use { toSubgroup := Subgroup.normalCore H | ||
isOpen' := Subgroup.isOpen_of_isClosed_of_finiteIndex _ (H.normalCore_isClosed H.isClosed) } | ||
exact fun _ b ↦ hH (H.normalCore_le b) | ||
|
||
end TopologicalGroup |
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