Skip to content

Commit

Permalink
feat: Add UniformCauchySeqOn.cauchySeq (#10815)
Browse files Browse the repository at this point in the history
We have `UniformCauchySeqOn.cauchy_map`.  This is the special case of that if one wants exactly `CauchySeq`, which is a Cauchy map specialized to `atTop`.
  • Loading branch information
girving committed Mar 6, 2024
1 parent 242d929 commit 60b7f5a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Mathlib/Topology/UniformSpace/UniformConvergence.lean
Expand Up @@ -551,6 +551,13 @@ theorem UniformCauchySeqOn.cauchy_map [hp : NeBot p] (hf : UniformCauchySeqOn F
filter_upwards [hf u hu] with p hp using hp x hx
#align uniform_cauchy_seq_on.cauchy_map UniformCauchySeqOn.cauchy_map

/-- If a sequence of functions is uniformly Cauchy on a set, then the values at each point form
a Cauchy sequence. See `UniformCauchSeqOn.cauchy_map` for the non-`atTop` case. -/
theorem UniformCauchySeqOn.cauchySeq [Nonempty ι] [SemilatticeSup ι]
(hf : UniformCauchySeqOn F atTop s) (hx : x ∈ s) :
CauchySeq fun i ↦ F i x :=
hf.cauchy_map (hp := atTop_neBot) hx

section SeqTendsto

theorem tendstoUniformlyOn_of_seq_tendstoUniformlyOn {l : Filter ι} [l.IsCountablyGenerated]
Expand Down

0 comments on commit 60b7f5a

Please sign in to comment.