Qualitative probability orders #
A qualitative probability order on a Boolean algebra α — de Finetti's
axioms for "at most as likely as": total, transitive, monotone, non-trivial,
and qualitatively additive (a ≼ b ↔ a \\ b ≼ b \\ a). The relation is stored as
le and stated in ≤-vocabulary; the literature's ≿ is the derived ge,
mathlib's GE.ge pattern, with scoped notation a ≼[sys] b / a ≿[sys] b.
Main definitions #
[UPSTREAM] candidate for Mathlib/Order/Probability/: order theory with a
probabilistic reading — no measures occur; the representation theory lives in
the sibling files (Content.lean, Scott.lean, Representability.lean,
Completeness.lean).
References #
[kraft-pratt-seidenberg-1959]
The order #
A qualitative probability order on a Boolean algebra α: total,
transitive, monotone, non-trivial, and qualitatively additive — the standard
base system for comparative probability since de Finetti. Every such order on a
finite carrier is represented by a qualitatively additive measure
(exists_qualAddMeasure_repr), but by a finitely additive one only below five
atoms ([kraft-pratt-seidenberg-1959]; Completeness.lean). Reflexivity and
⊥ ≼ a are consequences of monotonicity (refl, bot_le), not fields.
- le : α → α → Prop
The "at most as likely as" relation.
Monotonicity:
a ≤ b → a ≼ b. Use the lemmamono.Non-triviality:
⊤is not at most as likely as⊥.Totality: any two elements are comparable.
Transitivity. Use the lemma
trans.Qualitative additivity:
a ≼ b ↔ a \ b ≼ b \ a.
Instances For
sys.ge a b (a ≿ b): a is at least as likely as b — the converse of
le, mathlib's GE.ge pattern. This is the relation the logic layer
(Logic/ComparativeProbability/) and the literature read.
Instances For
The "at most as likely as" relation.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Monotonicity.
Transitivity.
Reflexivity, from monotonicity.