Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions LeanEval/NumberTheory/NeukirchUchida.lean
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import Mathlib.FieldTheory.KrullTopology
import Mathlib.NumberTheory.NumberField.Basic
import EvalTools.Markers

/-!
# The Neukirch–Uchida theorem

Every topological group isomorphism between absolute Galois groups of two number fields is induced
by a unique isomorphism between their separable closures that sends one field to the other.
A foundational result of anabelian geometry.

References:
https://en.wikipedia.org/wiki/Neukirch%E2%80%93Uchida_theorem
Jürgen Neukirch, Alexander Schmidt, Kay Wingberg. *Cohomology of Number Fields*, Theorem 12.2.1.
-/

namespace LeanEval.NumberTheory

@[eval_problem]
theorem neukirch_uchida {K₁ K₂ K₁' K₂' : Type*} [Field K₁] [Field K₂] [Field K₁'] [Field K₂']
[NumberField K₁] [NumberField K₂] [Algebra K₁ K₁'] [Algebra K₂ K₂'] [IsSepClosure K₁ K₁']
[IsSepClosure K₂ K₂'] (ϕ : Gal(K₁'/K₁) ≃* Gal(K₂'/K₂)) (he : IsHomeomorph ϕ) :
∃! σ : K₂' ≃+* K₁', (algebraMap K₂ K₂').range.map σ.toRingHom = (algebraMap K₁ K₁').range ∧
∀ g : Gal(K₁'/K₁), ϕ g = σ.trans (g.toRingEquiv.trans σ.symm) := by
sorry

end LeanEval.NumberTheory
11 changes: 10 additions & 1 deletion manifests/problems.toml
Original file line number Diff line number Diff line change
Expand Up @@ -635,4 +635,13 @@ test = false
module = "LeanEval.Geometry.RadoTheorem"
holes = ["rado_riemannSurface"]
submitter = "Junyan Xu"
source = "John Hamal Hubbard, *Teichmüller theory and applications to geometry, topology, and dynamics. Vol. 1*, §1.3."
source = "John Hamal Hubbard, *Teichmüller theory and applications to geometry, topology, and dynamics. Vol. 1*, §1.3."

[[problem]]
id = "neukirch_uchida"
title = "Neukirch–Uchida theorem"
test = false
module = "LeanEval.NumberTheory.NeukirchUchida"
holes = ["neukirch_uchida"]
submitter = "Junyan Xu"
source = "Jürgen Neukirch, Alexander Schmidt, Kay Wingberg. *Cohomology of Number Fields*, Theorem 12.2.1."
Loading