structure
definition
Thresholds
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.PDG.Fits on GitHub at line 155.
browse module
All declarations in this module, on Recognition.
explainer page
used by
formal source
152
153/-! Parameterized PDG fits: thresholds and dataset wrappers. -/
154
155structure Thresholds where
156 zMax : ℝ
157 chi2Max : ℝ
158 deriving Repr
159
160structure Dataset where
161 leptons : List SpeciesEntry
162 quarks : List SpeciesEntry
163 bosons : List SpeciesEntry
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