Skip to content

Commit 8883ace

Browse files
committed
feat(Topology/Algebra/IsUniformGroup): characteriztaion of uniform cauchy sequences in topological groups (leanprover-community#38599)
Topological groups had several lemmas about uniform convergence, but were missing a lemma about a sequence being a uniform cauchy sequence. This PR fills that gap. This is a simplifying lemma on the way to Michael's selection theorem. Co-authored-by: Kevin H Wilson <khwilson@gmail.com>
1 parent aafc9e6 commit 8883ace

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

Mathlib/Topology/Algebra/IsUniformGroup/Basic.lean

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,14 @@ namespace IsTopologicalGroup
404404

405405
variable {ι α G : Type*} [Group G] [u : UniformSpace G] [IsTopologicalGroup G]
406406

407+
@[to_additive]
408+
theorem uniformCauchySeqOn_iff (F : ι → α → G) (p : Filter ι) (s : Set α)
409+
(hu : IsTopologicalGroup.rightUniformSpace G = u) :
410+
UniformCauchySeqOn F p s ↔ ∀ u ∈ 𝓝 (1 : G), ∀ᶠ m in p ×ˢ p, ∀ a ∈ s, F m.2 a / F m.1 a ∈ u := by
411+
simp only [div_eq_mul_inv]
412+
exact hu ▸ ⟨fun h u hu ↦ h _ ⟨u, hu, fun _ ↦ id⟩,
413+
fun h _ ⟨u, hu, hv⟩ => mem_of_superset (h u hu) fun _ hi a ha => hv (hi a ha)⟩
414+
407415
@[to_additive]
408416
theorem tendstoUniformly_iff (F : ι → α → G) (f : α → G) (p : Filter ι)
409417
(hu : IsTopologicalGroup.rightUniformSpace G = u) :

0 commit comments

Comments
 (0)