Documentation

Atlas.RealAnalysis.code.ContinuousFunctions.Limits

x is a cluster point of S if every punctured neighborhood (x - δ, x + δ) \ {x} of x meets S, i.e. for all δ > 0 there exists y ∈ S with y ≠ x and |y - x| < δ.

Instances For

    The elementary ε-δ notion IsClusterPoint S x agrees with Mathlib's topological accumulation point AccPt x (𝓟 S).

    f converges to L at c along S, written informally f(x) → L as x → c, if for every ε > 0 there exists δ > 0 such that for all x ∈ S with 0 < |x - c| < δ one has |f x - L| < ε.

    Instances For

      The elementary ε-δ definition FunctionConvergesAt f S c L is equivalent to the Mathlib filter statement that f tends to L along the neighborhood filter of c restricted to S \ {c}.

      def ContinuousFunctions.RightLimit (f : ) (S : Set ) (c L : ) :

      The right-hand limit f(x) → L as x → c⁺ along S: for every ε > 0 there exists δ > 0 such that for all x ∈ S with c < x < c + δ one has |f x - L| < ε.

      Instances For
        theorem ContinuousFunctions.function_limit_unique (f : ) (S : Set ) (c L₁ L₂ : ) (hc : IsClusterPoint S c) (hL₁ : FunctionConvergesAt f S c L₁) (hL₂ : FunctionConvergesAt f S c L₂) :
        L₁ = L₂

        Uniqueness of the function limit: if c is a cluster point of S and f converges both to L₁ and to L₂ at c along S, then L₁ = L₂.