pith. machine review for the scientific record. sign in
structure

ProbabilityCert

definition
show as:
view math explainer →
module
IndisputableMonolith.Mathematics.ProbabilityTheoryFromRS
domain
Mathematics
line
38 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Mathematics.ProbabilityTheoryFromRS on GitHub at line 38.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

  35theorem uncertain_event_positive_cost {r : ℝ} (hr : 0 < r) (hne : r ≠ 1) :
  36    0 < Jcost r := Jcost_pos_of_ne_one r hr hne
  37
  38structure ProbabilityCert where
  39  five_axioms : Fintype.card KolmogorovAxiom = 5
  40  certain_zero : Jcost 1 = 0
  41  uncertain_positive : ∀ {r : ℝ}, 0 < r → r ≠ 1 → 0 < Jcost r
  42
  43def probabilityCert : ProbabilityCert where
  44  five_axioms := kolmogorovAxiomCount
  45  certain_zero := certain_event_zero_cost
  46  uncertain_positive := uncertain_event_positive_cost
  47
  48end IndisputableMonolith.Mathematics.ProbabilityTheoryFromRS