Documentation

Mathlib.Probability.Distributions.Pareto

Pareto distributions over ℝ #

Define the Pareto measure over the reals.

Main definitions #

noncomputable def ProbabilityTheory.paretoPDFReal (t r x : ℝ) :

The pdf of the Pareto distribution depending on its scale t and rate r.

Equations
Instances For
    noncomputable def ProbabilityTheory.paretoPDF (t r x : ℝ) :

    The pdf of the Pareto distribution, as a function valued in ℝ≥0∞.

    Equations
    Instances For
      theorem ProbabilityTheory.paretoPDF_eq (t r x : ℝ) :
      paretoPDF t r x = ENNReal.ofReal (if t ≤ x then r * t ^ r * x ^ (-(r + 1)) else 0)
      theorem ProbabilityTheory.paretoPDF_of_lt {t r x : ℝ} (hx : x < t) :
      paretoPDF t r x = 0
      theorem ProbabilityTheory.paretoPDF_of_le {t r x : ℝ} (hx : t ≤ x) :
      paretoPDF t r x = ENNReal.ofReal (r * t ^ r * x ^ (-(r + 1)))
      theorem ProbabilityTheory.lintegral_paretoPDF_of_le {t r x : ℝ} (hx : x ≤ t) :
      ∫⁻ (y : ℝ) in Set.Iio x, paretoPDF t r y = 0

      The Lebesgue integral of the Pareto pdf over reals ≤ t equals 0.

      The Pareto pdf is measurable.

      theorem ProbabilityTheory.paretoPDFReal_pos {t r x : ℝ} (ht : 0 < t) (hr : 0 < r) (hx : t ≤ x) :

      The Pareto pdf is positive for all reals >= t.

      theorem ProbabilityTheory.paretoPDFReal_nonneg {t r : ℝ} (ht : 0 ≤ t) (hr : 0 ≤ r) (x : ℝ) :

      The Pareto pdf is nonnegative.

      @[simp]
      theorem ProbabilityTheory.lintegral_paretoPDF_eq_one {t r : ℝ} (ht : 0 < t) (hr : 0 < r) :
      ∫⁻ (x : ℝ), paretoPDF t r x = 1

      The pdf of the Pareto distribution integrates to 1.

      Measure defined by the Pareto distribution.

      Equations
      Instances For
        theorem ProbabilityTheory.cdf_paretoMeasure_eq_integral {t r : ℝ} (ht : 0 < t) (hr : 0 < r) (x : ℝ) :
        ↑(cdf (paretoMeasure t r)) x = ∫ (x : ℝ) in Set.Iic x, paretoPDFReal t r x

        CDF of the Pareto distribution equals the integral of the PDF.

        @[deprecated ProbabilityTheory.cdf_paretoMeasure_eq_integral (since := "2025-08-28")]
        theorem ProbabilityTheory.paretoCDFReal_eq_integral {t r : ℝ} (ht : 0 < t) (hr : 0 < r) (x : ℝ) :
        ↑(cdf (paretoMeasure t r)) x = ∫ (x : ℝ) in Set.Iic x, paretoPDFReal t r x

        Alias of ProbabilityTheory.cdf_paretoMeasure_eq_integral.


        CDF of the Pareto distribution equals the integral of the PDF.

        theorem ProbabilityTheory.cdf_paretoMeasure_eq_lintegral {t r : ℝ} (ht : 0 < t) (hr : 0 < r) (x : ℝ) :
        ↑(cdf (paretoMeasure t r)) x = (∫⁻ (x : ℝ) in Set.Iic x, paretoPDF t r x).toReal
        @[deprecated ProbabilityTheory.cdf_paretoMeasure_eq_lintegral (since := "2025-08-28")]
        theorem ProbabilityTheory.paretoCDFReal_eq_lintegral {t r : ℝ} (ht : 0 < t) (hr : 0 < r) (x : ℝ) :
        ↑(cdf (paretoMeasure t r)) x = (∫⁻ (x : ℝ) in Set.Iic x, paretoPDF t r x).toReal

        Alias of ProbabilityTheory.cdf_paretoMeasure_eq_lintegral.