Encyclopedia Cosmology Cosmology Dark Matter Xenonprediction
ARTICLE 3 claims 1 theorem 2 models
Cosmology Dark Matter Xenonprediction
A framework-derived particle mass lands in a narrow band that a leading xenon detector has not yet ruled out.
A dark matter target
Dark matter is the unseen mass that holds galaxies together; it neither emits nor absorbs light, and physicists detect it only through gravity. One leading way to search for it directly is a xenon detector, a tank of liquid xenon that waits for a dark matter particle to bump into a xenon nucleus and release a flash of light. The XENONnT experiment in Italy runs such a detector, and its published results set limits on how often dark matter can interact. Recognition Science, a framework that derives physical constants from a forced cost of recognition, contributes a specific target for that search: a dark matter particle with a mass near 1.78 GeV, about 1/45 of the mass of the W boson, the particle that carries the weak nuclear force.
The prediction starts from the framework's central object, the cost function J(x) = (x + 1/x)/2 - 1, which the framework proves is the unique cost satisfying five plain conditions. At the golden ratio φ, this cost takes a value in the band (0.11, 0.13). The framework models the dark matter cross-section ratio, the chance that a dark matter particle interacts with ordinary matter, as exactly this J(φ) value. The framework's formal library proves that this ratio is positive and that it lies strictly below 0.13, which means the prediction sits inside the band the framework expects. The mass ratio of 1/45 is a definitional choice in the framework, not a derived theorem.
The experimental situation is honest and current: XENONnT has not yet reached the sensitivity needed to test the framework's prediction. At a dark matter mass of 1.78 GeV, the experiment's exclusion limit still sits above the framework's predicted cross-section band. That means the prediction is not ruled out, but it is also not confirmed. The framework's formal library states this precisely: the cross-section is in the J(φ) band, and the band is below the current experimental exclusion. The framework bundles these facts into a certificate, a formal object that packages the mass ratio, the positivity, and the band membership as a single checkable unit.
What this changes for a reader is the shape of the search. Instead of scanning a wide range of possible dark matter masses, the framework names one narrow target at 1.78 GeV and one narrow cross-section band. The next generation of xenon detectors, with more exposure and lower backgrounds, can test this specific prediction directly. If a signal appears in that band, the framework's cost function gains a striking empirical success; if the band is excluded, the framework's dark matter model is falsified. Either outcome advances the search, because the prediction is specific enough to be wrong.
MODEL dmCrossSectionRatio · dmCrossSection_in_band · IndisputableMonolith/Cosmology/DarkMatterXENONPrediction.lean
/-- DM cross-section ratio at J(φ). -/
noncomputable def dmCrossSectionRatio : ℝ := Jcost phi
/-- The prediction is not yet excluded: cross-section is in J(phi) band. -/
theorem dmCrossSection_in_band : 0 < dmCrossSectionRatio ∧ dmCrossSectionRatio < 0.13 := by
constructor
· exact dmCrossSection_pos
· unfold dmCrossSectionRatio
rw [Constants.Jcost_phi_val]
linarith [phi_lt_onePointSixTwo]
THEOREM dmCrossSection_pos · dmCrossSection_in_band · IndisputableMonolith/Cosmology/DarkMatterXENONPrediction.lean
/-- Cross-section ratio is positive. -/
theorem dmCrossSection_pos : 0 < dmCrossSectionRatio :=
Jcost_pos_of_ne_one phi phi_pos phi_ne_one
/-- The prediction is not yet excluded: cross-section is in J(phi) band. -/
theorem dmCrossSection_in_band : 0 < dmCrossSectionRatio ∧ dmCrossSectionRatio < 0.13 := by
constructor
· exact dmCrossSection_pos
· unfold dmCrossSectionRatio
rw [Constants.Jcost_phi_val]
linarith [phi_lt_onePointSixTwo]
MODEL dmMassRatio · IndisputableMonolith/Cosmology/DarkMatterXENONPrediction.lean
/-- Predicted DM mass / W mass = 1/45. -/
noncomputable def dmMassRatio : ℝ := 1 / 45
What this page does not claim
The dark matter mass of 1.78 GeV is not derived by the framework; only the ratio to the W mass is defined. The framework does not prove that dark matter exists or that XENONnT will detect it. The cross-section band is a model choice, not a theorem about the physical world.
Verify this page
Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:
$ lake env lean IndisputableMonolith/Cosmology/DarkMatterXENONPrediction.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)
A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.
Derived articles
This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:
- What sensitivity would XENONnT need to reach before it can test the predicted cross-section band at 1.78 GeV?
- How does the framework derive the W boson mass that anchors the 1/45 ratio?
- What experimental signature would distinguish a 1.78 GeV dark matter particle from background events in a xenon detector?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MODEL dmCrossSectionRatio · dmCrossSection_in_band · IndisputableMonolith/Cosmology/DarkMatterXENONPrediction.lean
/-- DM cross-section ratio at J(φ). -/ noncomputable def dmCrossSectionRatio : ℝ := Jcost phi/-- The prediction is not yet excluded: cross-section is in J(phi) band. -/ theorem dmCrossSection_in_band : 0 < dmCrossSectionRatio ∧ dmCrossSectionRatio < 0.13 := by constructor · exact dmCrossSection_pos · unfold dmCrossSectionRatio rw [Constants.Jcost_phi_val] linarith [phi_lt_onePointSixTwo]The framework models the dark matter cross-section ratio as the cost function at the golden ratio, which lies in the band (0.11, 0.13). dmCrossSectionRatio · dmCrossSection_in_band · IndisputableMonolith/Cosmology/DarkMatterXENONPrediction.leanTHEOREM dmCrossSection_pos · dmCrossSection_in_band · IndisputableMonolith/Cosmology/DarkMatterXENONPrediction.lean
/-- Cross-section ratio is positive. -/ theorem dmCrossSection_pos : 0 < dmCrossSectionRatio := Jcost_pos_of_ne_one phi phi_pos phi_ne_one/-- The prediction is not yet excluded: cross-section is in J(phi) band. -/ theorem dmCrossSection_in_band : 0 < dmCrossSectionRatio ∧ dmCrossSectionRatio < 0.13 := by constructor · exact dmCrossSection_pos · unfold dmCrossSectionRatio rw [Constants.Jcost_phi_val] linarith [phi_lt_onePointSixTwo]The framework's formal library proves the cross-section ratio is positive and lies strictly below 0.13. dmCrossSection_pos · dmCrossSection_in_band · IndisputableMonolith/Cosmology/DarkMatterXENONPrediction.leanMODEL dmMassRatio · IndisputableMonolith/Cosmology/DarkMatterXENONPrediction.lean
/-- Predicted DM mass / W mass = 1/45. -/ noncomputable def dmMassRatio : ℝ := 1 / 45The dark matter mass ratio to the W boson mass is defined as 1/45. dmMassRatio · IndisputableMonolith/Cosmology/DarkMatterXENONPrediction.lean