Documentation

Analysis.MeasureTheory.Notation

@[reducible, inline]
noncomputable abbrev Set.indicator' {X : Type u_1} (E : Set X) (x : X) :

A version of Set.indicator suitable for this text.

Equations
Instances For
    theorem Set.indicator'_apply {X : Type u_1} (E : Set X) (x : X) [Decidable (x ∈ E)] :
    E.indicator' x = if x ∈ E then 1 else 0
    theorem Set.indicator'_of_mem {X : Type u_1} {E : Set X} {x : X} (h : x ∈ E) :
    theorem Set.indicator'_of_notMem {X : Type u_1} {E : Set X} {x : X} (h : x ∉ E) :
    @[reducible, inline]
    noncomputable abbrev EuclideanSpace' (n : ℕ) :

    A version of EuclideanSpace suitable for this text.

    Equations
    Instances For
      @[reducible, inline]
      Equations
      • One or more equations did not get rendered due to their size.
      Instances For
        @[reducible, inline]
        Equations
        Instances For
          @[reducible, inline]
          Equations
          Instances For
            theorem EuclideanSpace'.norm_eq {n : ℕ} (x : EuclideanSpace' n) :
            ‖x‖ = √(∑ i : Fin n, x.ofLp i ^ 2)

            Each coordinate of a Euclidean vector is bounded by its norm.

            theorem EuclideanSpace'.dot_apply {n : ℕ} (x y : EuclideanSpace' n) :
            inner ℝ x y = ∑ i : Fin n, x.ofLp i * y.ofLp i
            Equations
            • One or more equations did not get rendered due to their size.
            Instances For
              def EuclideanSpace'.prod {d₁ d₂ : ℕ} (E₁ : Set (EuclideanSpace' d₁)) (E₂ : Set (EuclideanSpace' d₂)) :
              Set (EuclideanSpace' (d₁ + d₂))
              Equations
              Instances For
                theorem ENNReal.upward_continuous {x y : ℕ → ENNReal} (hx : Monotone x) (hy : Monotone y) {x₀ y₀ : ENNReal} (hx_lim : Filter.Tendsto x Filter.atTop (nhds x₀)) (hy_lim : Filter.Tendsto y Filter.atTop (nhds y₀)) :
                Filter.Tendsto (fun (n : ℕ) => x n * y n) Filter.atTop (nhds (x₀ * y₀))
                theorem ENNReal.tsum_of_tsum (x : ℕ → ℕ → ENNReal) :
                ∑' (p : ℕ × ℕ), x p.1 p.2 = ∑' (n : ℕ) (m : ℕ), x n m

                Theorem 0.0.2 (Tonelli's theorem for series)

                theorem ENNReal.tsum_of_tsum' (x : ℕ → ℕ → ENNReal) :
                ∑' (p : ℕ × ℕ), x p.1 p.2 = ∑' (m : ℕ) (n : ℕ), x n m

                Theorem 0.0.2

                @[implicit_reducible]
                noncomputable instance EReal.inst_posPart :
                Equations
                @[implicit_reducible]
                noncomputable instance EReal.inst_negPart :
                Equations
                noncomputable def Set.choose {A : Type u_1} {E : A → Type u_2} (hE : ∀ (n : A), Nonempty (E n)) (n : A) :
                E n

                Axiom 0.0.4 (Axiom of choice).

                Equations
                Instances For
                  noncomputable def Countable.choose {E : ℕ → Type u_1} (hE : ∀ (n : ℕ), Nonempty (E n)) (n : ℕ) :
                  E n

                  Corollary 0.0.5 (Axiom of countable choice)

                  Equations
                  Instances For