lemma
proved
acceptable_baryons
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.PDG.Fits on GitHub at line 139.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
-
and -
acceptable -
baryonsWitness -
chi2_baryons_zero -
Delta_0_entry -
Delta_m_entry -
Delta_p_entry -
Delta_pp_entry -
n_entry -
p_entry -
z_D0_zero -
z_Dm_zero -
z_Dpp_zero -
z_Dp_zero -
z_n_zero -
z_p_zero
used by
formal source
136@[simp] lemma chi2_baryons_zero : chi2 baryonsWitness = 0 := by
137 simp [chi2, baryonsWitness, z_p_zero, z_n_zero, z_Dpp_zero, z_Dp_zero, z_D0_zero, z_Dm_zero]
138
139@[simp] lemma acceptable_baryons : acceptable baryonsWitness 0 0 := by
140 refine And.intro ?hzs ?hchi
141 · intro e he
142 have hcases : e = p_entry ∨ e = n_entry ∨ e = Delta_pp_entry ∨ e = Delta_p_entry ∨ e = Delta_0_entry ∨ e = Delta_m_entry := by
143 simpa [baryonsWitness] using he
144 rcases hcases with h | h | h | h | h | h
145 · subst h; simp [z_p_zero]
146 · subst h; simp [z_n_zero]
147 · subst h; simp [z_Dpp_zero]
148 · subst h; simp [z_Dp_zero]
149 · subst h; simp [z_D0_zero]
150 · subst h; simp [z_Dm_zero]
151 · simpa using chi2_baryons_zero
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