Documentation

Mathlib.Probability.Notation

Notations for probability theory #

This file defines the following notations, for functions X,Y, measures P, Q defined on a measurable space m0, and another measurable space structure m with hm : m ≤ m0,

To use these notations, you need to use open scoped ProbabilityTheory or open ProbabilityTheory.

𝔼[f|m] is the conditional expectation of f with respect to m.

Equations
  • One or more equations did not get rendered due to their size.

P[X] is the expectation of X under the measure P.

Note that this notation can conflict with the GetElem notation for lists. Usually if you see an error about ambiguous notation when trying to write l[i] for a list, it means that Lean could not find i < l.length, and so fell back to trying this notation as well.

Equations
  • One or more equations did not get rendered due to their size.

𝔼[X] is the expectation of X, defined as its Lebesgue integral.

Equations
  • One or more equations did not get rendered due to their size.

P⟦s|m⟧ is the conditional expectation of s with respect to m under measure P.

Equations
  • One or more equations did not get rendered due to their size.

X =ₐₛ Y if X = Y almost surely.

Equations
  • One or more equations did not get rendered due to their size.

X ≤ₐₛ Y if X ≤ Y almost surely.

Equations
  • One or more equations did not get rendered due to their size.

∂P/∂Q is the Radon–Nikodym derivative of P with respect to Q.

Equations
  • One or more equations did not get rendered due to their size.

is a notation for volume on a measured space.

Equations