Infinite sum in the reals #
This file provides lemmas about Cauchy sequences in terms of infinite sums.
theorem
cauchySeq_of_edist_le_of_summable
{α : Type u_1}
[PseudoEMetricSpace α]
{f : ℕ → α}
(d : ℕ → NNReal)
(hf : ∀ (n : ℕ), edist (f n) (f (Nat.succ n)) ≤ ↑(d n))
(hd : Summable d)
:
If the extended distance between consecutive points of a sequence is estimated
by a summable series of NNReal
s, then the original sequence is a Cauchy sequence.
theorem
cauchySeq_of_dist_le_of_summable
{α : Type u_1}
[PseudoMetricSpace α]
{f : ℕ → α}
(d : ℕ → ℝ)
(hf : ∀ (n : ℕ), dist (f n) (f (Nat.succ n)) ≤ d n)
(hd : Summable d)
:
If the distance between consecutive points of a sequence is estimated by a summable series, then the original sequence is a Cauchy sequence.
theorem
cauchySeq_of_summable_dist
{α : Type u_1}
[PseudoMetricSpace α]
{f : ℕ → α}
(h : Summable fun (n : ℕ) => dist (f n) (f (Nat.succ n)))
: