Documentation

Atlas.RealAnalysis.code.Integration.Basic

def Integration.C_ab (a b : ) :
Set ()

The set C([a,b]) of continuous real-valued functions on the closed interval [a,b].

Instances For
    structure Integration.Partition (a b : ) :

    A partition of the closed interval [a,b]: a strictly increasing finite sequence a = x_0 < x_1 < ⋯ < x_n = b of points. The field n is the number of subintervals, and points enumerates the n + 1 endpoints.

    Instances For

      A tagged partition of [a,b]: a partition together with a choice of a tag ξ_k ∈ [x_{k-1}, x_k] in each subinterval.

      Instances For
        noncomputable def Integration.Partition.mesh {a b : } (P : Partition a b) :

        The mesh (or norm) ‖x‖ of a partition: the maximum length max_k (x_k - x_{k-1}) of its subintervals. Defined to be 0 for the trivial partition with n = 0.

        Instances For

          The underlying set {x_0, x_1, …, x_n} of points of a partition.

          Instances For

            Q is a refinement of P if every point of P appears in Q, i.e. the underlying point set of P is contained in that of Q.

            Instances For
              noncomputable def Integration.riemannSum {a b : } (f : ) (T : TaggedPartition a b) :

              The Riemann sum S_f(x, ξ) = ∑_k f(ξ_k) (x_k - x_{k-1}) of a function f with respect to a tagged partition T.

              Instances For
                theorem Integration.Partition.n_pos_of_lt {a b : } (hab : a < b) (P : Partition a b) :
                0 < P.n

                If a < b, then any partition of [a,b] has at least one subinterval, i.e. 0 < P.n.

                theorem Integration.Partition.mesh_pos_of_lt {a b : } (hab : a < b) (P : Partition a b) :
                0 < P.mesh

                If a < b, then the mesh of any partition of [a,b] is strictly positive.

                theorem Integration.riemannSum_eq_zero_of_n_eq_zero {a b : } (f : ) (T : TaggedPartition a b) (h : T.n = 0) :

                The Riemann sum over a trivial tagged partition (with n = 0 subintervals) is 0, since it is an empty sum.