Documentation

Atlas.RealAnalysis.code.FunctionSequences.Basic

def ConvergesPointwise (f : ) (g : ) (S : Set ) :

ConvergesPointwise f g S states that the sequence of functions f n converges pointwise to g on S: for every x ∈ S, the sequence f n x tends to g x as n → ∞.

Instances For
    theorem uniform_convergence_iff (f : ) (g : ) (S : Set ) :
    TendstoUniformlyOn f g Filter.atTop S ε > 0, ∃ (M : ), nM, xS, |f n x - g x| < ε

    Uniform convergence of f n to g on S is equivalent to the classical ε-M formulation: for every ε > 0, there exists M ∈ ℕ such that for all n ≥ M and all x ∈ S, |f n x - g x| < ε.

    theorem weierstrass_m_test (f : ) (M : ) (S : Set ) (hM : ∀ (j : ), xS, |f j x| M j) (hMsum : Summable M) :
    (∀ xS, Summable fun (j : ) => f j x) TendstoUniformlyOn (fun (n : ) (x : ) => jFinset.range n, f j x) (fun (x : ) => ∑' (j : ), f j x) Filter.atTop S

    Weierstrass M-test: if |f j x| ≤ M j for all j and all x ∈ S, and ∑ M j converges, then for every x ∈ S the series ∑ f j x converges (absolutely), and the partial sums ∑_{j < n} f j x converge uniformly on S to ∑' j, f j x.