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

canonicalMeasureCount

proved
show as:
view math explainer →
module
IndisputableMonolith.Mathematics.MeasureTheoryFromRS
domain
Mathematics
line
28 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Mathematics.MeasureTheoryFromRS on GitHub at line 28.

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

  25  | lebesgue | counting | dirac | hausdorff | borel
  26  deriving DecidableEq, Repr, BEq, Fintype
  27
  28theorem canonicalMeasureCount : Fintype.card CanonicalMeasure = 5 := by decide
  29
  30/-- J-cost is non-negative (measure-compatible). -/
  31theorem jcost_measurable {r : ℝ} (hr : 0 < r) : 0 ≤ Jcost r := by
  32  by_cases h : r = 1
  33  · rw [h, Jcost_unit0]
  34  · exact le_of_lt (Jcost_pos_of_ne_one r hr h)
  35
  36structure MeasureTheoryCert where
  37  five_measures : Fintype.card CanonicalMeasure = 5
  38  jcost_nonneg : ∀ {r : ℝ}, 0 < r → 0 ≤ Jcost r
  39
  40def measureTheoryCert : MeasureTheoryCert where
  41  five_measures := canonicalMeasureCount
  42  jcost_nonneg := jcost_measurable
  43
  44end IndisputableMonolith.Mathematics.MeasureTheoryFromRS