Encyclopedia Astrophysics Astrophysics Intergalactic Voids From Jcost Cosmic Void Fraction Cert

ARTICLE 3 claims 2 theorems 1 hypothesis

Astrophysics Intergalactic Voids From Jcost Cosmic Void Fraction Cert

A formal certificate in the Recognition Science library proves three general facts about a cost function, yet says nothing specific about cosmic voids.

The certification boundary

Cosmic voids are the vast, nearly empty regions between galaxy filaments, occupying roughly 75 to 80 percent of the universe's volume. Astronomers map them by identifying underdense regions in galaxy surveys. The Recognition Science framework, a research program that derives physical structure from a forced cost function, includes a module named CosmicVoidFractionCert that appears to address this topic. The name suggests a certified statement about void fractions, but the actual content is narrower.

The module defines a cost function domainCost(m, e) = J(m / e), where J is the framework's central cost function. It then proves three general facts: the cost is zero when m equals e, the cost is nonnegative for positive inputs, and the quantity phi minus 3/2 is positive, where phi is the golden ratio. These are elementary properties of the cost function, universally quantified over real numbers. The module packages these three facts into a structure called CosmicVoidFractionCert, along with a proof that such a certificate exists. The machine-checked library of formal theorems confirms each statement holds.

What the certificate does not do is connect these facts to voids. The docstring is explicit: the module proves nothing specific to astrophysics, because domainCost is defined without any reference to void observations. The variables m and e are never defined in terms of void mass or energy. The research note attached to the module records an intended direction: a proposed formula for void fraction as 1 minus J(phi) times a density contrast term, yielding roughly 88 percent. That formula is a research aspiration, not a proved result. The certificate itself remains a template, shared verbatim across 2383 sibling modules in the library.

For a reader, the practical lesson is to read the certificate as a statement about the cost function's formal properties, not about cosmology. The void fraction claim of 88 percent is an unverified hypothesis that would require a definition of m and e in astrophysical terms before the certificate could support it. The three proved facts stand on their own as mathematical truths, but they carry no astronomical weight.

THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/IntergalacticVoids_FromJCost.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 domainCost · IndisputableMonolith/Astrophysics/IntergalacticVoids_FromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
HYPOTHESIS CosmicVoidFractionCert · IndisputableMonolith/Astrophysics/IntergalacticVoids_FromJCost.lean
structure CosmicVoidFractionCert 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

What this page does not claim

The certificate does not prove the 88 percent void fraction formula. The certificate does not establish any empirical claim about the universe's void volume. The certificate does not define what m and e mean in astrophysical terms.

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/IntergalacticVoids_FromJCost.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