Skip to content

Commit

Permalink
closes #256 (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcommelin authored Dec 2, 2024
1 parent 6fa656e commit c00cd37
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion FLT/NumberField/AdeleRing.lean
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,20 @@ theorem Rat.AdeleRing.zero_discrete : ∃ U : Set (AdeleRing ℚ),

-- Maybe this discreteness isn't even stated in the best way?
-- I'm ambivalent about how it's stated
open Pointwise in
theorem Rat.AdeleRing.discrete : ∀ q : ℚ, ∃ U : Set (AdeleRing ℚ),
IsOpen U ∧ (algebraMap ℚ (AdeleRing ℚ)) ⁻¹' U = {q} := sorry -- issue #256
IsOpen U ∧ (algebraMap ℚ (AdeleRing ℚ)) ⁻¹' U = {q} := by
obtain ⟨V, hV, hV0⟩ := zero_discrete
intro q
set ι := algebraMap ℚ (AdeleRing ℚ) with
set qₐ := ι q with hqₐ
set f := Homeomorph.subLeft qₐ with hf
use f ⁻¹' V, f.isOpen_preimage.mpr hV
have : f ∘ ι = ι ∘ Homeomorph.subLeft q := by ext; simp [hf, hqₐ]
rw [← Set.preimage_comp, this, Set.preimage_comp, hV0]
ext
simp only [Set.mem_preimage, Homeomorph.subLeft_apply, Set.mem_singleton_iff, sub_eq_zero, eq_comm]


variable (K : Type*) [Field K] [NumberField K]

Expand Down

0 comments on commit c00cd37

Please sign in to comment.