Encyclopedia Astrophysics Astrophysics Dark Matter Halo From Jcost Dmhalo Conc Cert

ARTICLE 4 claims 3 theorems 1 hypothesis

Astrophysics Dark Matter Halo From Jcost Dmhalo Conc Cert

A machine-checked certificate about a cost function says nothing about dark matter halos, despite its name.

A certificate with a narrow scope

In astrophysics, a dark matter halo is the roughly spherical region of unseen mass that surrounds a galaxy or a cluster of galaxies. A common way to describe a halo's shape is the concentration parameter, often written c, which compares the density in the inner region to the density farther out. Observed values of c for galaxy clusters typically fall between about 5 and 25, with many measurements landing in the range of 5 to 12.

The Recognition Science framework contains a declaration named DMHaloConcCert. The name suggests a certificate about dark matter halo concentration, but the declaration itself does not mention halos, concentration, or any astrophysical quantity. What it actually establishes is a small set of general facts about a mathematical function called Jcost. This function takes a ratio of two real numbers as input. The certificate proves three things: the function returns zero when its two inputs are equal, it never returns a negative value when both inputs are positive, and a certain constant defined as the golden ratio minus 1.5 is greater than zero.

The framework's own documentation is explicit about this gap. The Lean code proves these three general facts about Jcost applied to a ratio, but it proves nothing specific to dark matter halos, because the cost function is defined as Jcost of a ratio without linking that ratio to any physical quantity. The declaration is a template, shared verbatim with thousands of sibling modules, that records where an idea was meant to go, not a result about the subject named in the file.

To turn this certificate into a statement about halos, one would need a definition of the two inputs in terms of halo properties. The research note attached to the module sketches one possible path: it suggests that the concentration parameter c might equal the golden ratio raised to some power, with c around 6.85 or 11.09 for certain choices. That suggestion is not proved. It is an untested hypothesis about how to connect the framework's cost function to measured halo shapes.

What the certificate does provide is a clean example of a machine-checked mathematical object. It shows that a structure can be formally constructed and inhabited, meaning the three properties are consistent with each other. That is a real but limited achievement, and it does not advance the empirical study of dark matter halos.

THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/DarkMatterHaloFromJCost.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by
  unfold domainCost; rw [div_self h]; exact Jcost_unit0
theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by
  unfold domainCost; exact Jcost_nonneg (div_pos hm he)
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
  unfold canonicalThreshold; linarith [phi_gt_onePointFive]
THEOREM DMHaloConcCert · IndisputableMonolith/Astrophysics/DarkMatterHaloFromJCost.lean
structure DMHaloConcCert where
  cost_at_eq : ∀ r : ℝ, r ≠ 0 → domainCost r r = 0
  cost_nonneg : ∀ m e : ℝ, 0 < m → 0 < e → 0 ≤ domainCost m e
  threshold_pos : 0 < canonicalThreshold
THEOREM domainCost · IndisputableMonolith/Astrophysics/DarkMatterHaloFromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
HYPOTHESIS domainCost · IndisputableMonolith/Astrophysics/DarkMatterHaloFromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)

What this page does not claim

No claim that dark matter halos actually follow a phi-power concentration relation. No claim that the certificate provides any empirical constraint on halo shapes. No claim that the constant phi minus 1.5 has any established physical meaning in halo studies.

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/Astrophysics/DarkMatterHaloFromJCost.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:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND