Zulip Chat Archive
Stream: Is there code for X?
Topic: InfiniteGalois.normalAutEquivQuotient is continuous
Jz Pan (Jan 08 2026 at 04:20):
If is a closed normal subgroup of , then should be isomorphic to as topological groups. We are missing continuity in mathlib.
Kevin Buzzard (Jan 08 2026 at 08:27):
You only need continuity in one direction because everything is compact Hausdorff so I would imagine it just boils down to proving that is continuous.
Jz Pan (Jan 08 2026 at 10:50):
This works:
import Mathlib
/-- If `H` is a closed normal subgroup of `Gal(K / k)`,
then `Gal(fixedField H / k)` is isomorphic to `Gal(K / k) ⧸ H` as a topological group.
TODO: should go to mathlib -/
@[simps! toMulEquiv]
noncomputable def InfiniteGalois.normalAutContinuousEquivQuotient {k K : Type*} [Field k] [Field K]
[Algebra k K] [IsGalois k K] (H : ClosedSubgroup Gal(K/k)) [H.Normal] :
Gal(K/k) ⧸ H.1 ≃ₜ* Gal(IntermediateField.fixedField H.1/k) :=
letI f : Gal(K/k) ⧸ H.1 ≃* Gal(IntermediateField.fixedField H.1/k) := normalAutEquivQuotient H
haveI hc : Continuous f := by simpa only [(QuotientGroup.isQuotientMap_mk H.1).continuous_iff]
using InfiniteGalois.restrictNormalHom_continuous (IntermediateField.fixedField H.1)
letI f1 : Gal(K/k) ⧸ H.1 ≃ₜ Gal(IntermediateField.fixedField H.1/k) :=
hc.homeoOfEquivCompactToT2 (f := f)
{ f, f1 with }
Last updated: Feb 28 2026 at 14:05 UTC