Documentation

Atlas.RealAnalysis.code.Sequences.Basic

A real sequence is a function from the natural numbers to the reals, i.e. ℕ → ℝ.

Instances For

    A real sequence x is bounded if there exists a non-negative real B such that |x n| ≤ B for every n : ℕ.

    Instances For
      theorem Sequences.seq_converges_iff (x : ) (L : ) :
      Filter.Tendsto x Filter.atTop (nhds L) ε > 0, ∃ (M : ), nM, |x n - L| < ε

      ε–N characterization of convergence: x n → L if and only if for every ε > 0 there exists M : ℕ such that |x n - L| < ε for all n ≥ M.

      theorem Sequences.squeeze_theorem (a x b : ) (L : ) (hab : ∀ (n : ), a n x n) (hxb : ∀ (n : ), x n b n) (ha : Filter.Tendsto a Filter.atTop (nhds L)) (hb : Filter.Tendsto b Filter.atTop (nhds L)) :

      Squeeze (sandwich) theorem for real sequences: if a n ≤ x n ≤ b n for all n and both a and b converge to the same limit L, then x also converges to L.