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

defaultDataset

definition
show as:
view math explainer →
module
IndisputableMonolith.PDG.Fits
domain
PDG
line
167 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.PDG.Fits on GitHub at line 167.

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

 164  baryons : List SpeciesEntry
 165  deriving Repr
 166
 167@[simp] def defaultDataset : Dataset :=
 168  { leptons := leptonsWitness
 169  , quarks  := quarksWitness
 170  , bosons  := bosonsWitness
 171  , baryons := baryonsWitness
 172  }
 173
 174/-- All-species acceptability at given thresholds. -/
 175def acceptable_all (D : Dataset) (T : Thresholds) : Prop :=
 176  acceptable D.leptons T.zMax T.chi2Max ∧
 177  acceptable D.quarks  T.zMax T.chi2Max ∧
 178  acceptable D.bosons  T.zMax T.chi2Max ∧
 179  acceptable D.baryons T.zMax T.chi2Max
 180
 181/-- Monotonicity of single-list acceptability in the thresholds. -/
 182lemma acceptable_mono {L : List SpeciesEntry}
 183  {z₁ z₂ χ₁ χ₂ : ℝ}
 184  (hz : z₁ ≤ z₂) (hχ : χ₁ ≤ χ₂) :
 185  acceptable L z₁ χ₁ → acceptable L z₂ χ₂ := by
 186  intro h
 187  rcases h with ⟨hzs, hchi⟩
 188  refine And.intro ?hzs' ?hchi'
 189  · intro e he; exact le_trans (hzs e he) hz
 190  · exact le_trans hchi hχ
 191
 192/-- Monotonicity of all-species acceptability in the thresholds. -/
 193lemma acceptable_all_mono (D : Dataset)
 194  {T₁ T₂ : Thresholds}
 195  (hZ : T₁.zMax ≤ T₂.zMax) (hC : T₁.chi2Max ≤ T₂.chi2Max) :
 196  acceptable_all D T₁ → acceptable_all D T₂ := by
 197  intro h; rcases h with ⟨hl, hq, hb, hB⟩