Encyclopedia Astrophysics Astrophysics Cosmic Void Size From Phi Ladder Void Size Cert
ARTICLE 5 claims 4 theorems 1 model
Astrophysics Cosmic Void Size From Phi Ladder Void Size Cert
A formal certificate in the Recognition Science library proves three general facts about a cost function, but says nothing specific about cosmic voids.
What the certificate proves
A cosmic void is a large, roughly spherical region of space that contains far fewer galaxies than its surroundings, typically tens of millions of parsecs across. The Recognition Science framework's machine-checked library of formal theorems includes a declaration called VoidSizeCert, which packages three proved facts about a mathematical cost function. The cost function, a measure of mismatch between an expected and an observed value, is defined as J(m/e), where J is the framework's forced cost function and m and e are positive real numbers.
The three facts are general properties of this cost function, not properties of voids. First, when the measured value equals the expected value, the cost is exactly zero. Second, for any positive measured and expected values, the cost is never negative. Third, a threshold value defined as phi minus 3/2 is positive, where phi is the golden ratio, approximately 1.618. The certificate simply bundles these three theorems into a single structure, and the library proves that such a certificate exists.
The declaration's name and its location in an astrophysics module suggest a connection to cosmic voids, and a research note in the source file records an intended application: estimating void radius as phi to the fifth power times cluster radius, giving roughly 20 to 30 megaparsecs for clusters of 2 to 4 megaparsecs. That note is explicitly not a result. The Lean code proves nothing specific to voids, because the cost function is defined without any reference to void physics. A theorem about voids would require a definition of m and e in terms of void observables, which the module does not provide.
In plain terms, the certificate establishes a small, correct piece of mathematics about a cost function's behavior at equilibrium and its nonnegativity. It does not establish that cosmic voids have any particular size, that the golden ratio governs void radii, or that the framework's cost function applies to astrophysical structures. The gap between the general theorem and the intended subject is precisely the missing definition of measured and expected quantities for voids.
MODEL domainCost · IndisputableMonolith/Astrophysics/CosmicVoidSizeFromPhiLadder.lean
def domainCost (measured expected : ℝ) : ℝ := Jcost (measured / expected)
THEOREM domainCost_at_equilibrium · IndisputableMonolith/Astrophysics/CosmicVoidSizeFromPhiLadder.lean
theorem domainCost_at_equilibrium (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by
unfold domainCost; rw [div_self h]; exact Jcost_unit0
THEOREM domainCost_nonneg · IndisputableMonolith/Astrophysics/CosmicVoidSizeFromPhiLadder.lean
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 · IndisputableMonolith/Astrophysics/CosmicVoidSizeFromPhiLadder.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
THEOREM domainCost · IndisputableMonolith/Astrophysics/CosmicVoidSizeFromPhiLadder.lean
def domainCost (measured expected : ℝ) : ℝ := Jcost (measured / expected)
What this page does not claim
The certificate does not claim that cosmic voids have any particular size or that the golden ratio governs void radii. The certificate does not claim that the framework's cost function applies to astrophysical structures. The research note's void radius estimate is not a proved result.
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/CosmicVoidSizeFromPhiLadder.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 definition of measured and expected values for cosmic voids would make the cost function applicable to them?
- Does the framework provide any other theorem that connects the golden ratio to astrophysical length scales?
- What observational data would test the research note's estimate of void radius as phi to the fifth power times cluster radius?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MODEL domainCost · IndisputableMonolith/Astrophysics/CosmicVoidSizeFromPhiLadder.lean
def domainCost (measured expected : ℝ) : ℝ := Jcost (measured / expected)The cost function is defined as J(m/e), where J is the framework's forced cost function and m and e are positive real numbers. domainCost · IndisputableMonolith/Astrophysics/CosmicVoidSizeFromPhiLadder.leanTHEOREM domainCost_at_equilibrium · IndisputableMonolith/Astrophysics/CosmicVoidSizeFromPhiLadder.lean
theorem domainCost_at_equilibrium (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0When the measured value equals the expected value, the cost is exactly zero. domainCost_at_equilibrium · IndisputableMonolith/Astrophysics/CosmicVoidSizeFromPhiLadder.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Astrophysics/CosmicVoidSizeFromPhiLadder.lean
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)For any positive measured and expected values, the cost is never negative. domainCost_nonneg · IndisputableMonolith/Astrophysics/CosmicVoidSizeFromPhiLadder.leanTHEOREM canonicalThreshold_pos · IndisputableMonolith/Astrophysics/CosmicVoidSizeFromPhiLadder.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]A threshold value defined as phi minus 3/2 is positive, where phi is the golden ratio, approximately 1.618. canonicalThreshold_pos · IndisputableMonolith/Astrophysics/CosmicVoidSizeFromPhiLadder.leanTHEOREM domainCost · IndisputableMonolith/Astrophysics/CosmicVoidSizeFromPhiLadder.lean
def domainCost (measured expected : ℝ) : ℝ := Jcost (measured / expected)The Lean code proves nothing specific to voids, because the cost function is defined without any reference to void physics. domainCost · IndisputableMonolith/Astrophysics/CosmicVoidSizeFromPhiLadder.lean