Encyclopedia Astrophysics Astrophysics Dust Grain Size3 From Phi Ladder Dust Grain3 Cert
ARTICLE 3 claims 2 theorems 1 hypothesis
Astrophysics Dust Grain Size3 From Phi Ladder Dust Grain3 Cert
A formal certificate named for dust grain sizes proves only three general facts about a cost function, not the sizes themselves.
The certificate's actual scope
Interstellar dust grains in the Milky Way range roughly from 0.01 to 1 micrometer across, with the smallest particles, very small grains, near 0.01 micrometers and larger grains approaching a micrometer. The Recognition Science framework's ledger, a discrete record of recognition events, includes a phi-ladder idea: grain sizes might follow powers of the golden ratio phi, roughly 1.618, times a base size. The research note in the module suggests phi^0 times 0.01 micrometers gives 0.01 micrometers, phi^5 gives about 0.11 micrometers, and phi^9 gives about 0.76 micrometers, spanning the observed range.
The formal declaration DustGrain3Cert does not establish those sizes. It proves three general facts about domainCost, defined as Jcost(m/e), where Jcost is the framework's forced cost function and m and e are positive real numbers. First, the cost vanishes when m equals e. Second, the cost is never negative for positive inputs. Third, the quantity phi minus 3/2 is positive. These are universal statements about the cost function, stated once in a shared template module, and the dust grain module cites that template rather than proving anything specific to astrophysics.
The certificate's name is aspirational, not descriptive. It packages the three general facts into a structure and proves the structure is inhabited, meaning the facts are consistent. What would make this a theorem about dust grains is a definition of m and e in astrophysical terms, such as a grain's actual mass or size. That definition does not appear in the module. The paragraph above the Lean code is a research note recording where the idea was meant to go, not a result. The framework's own honesty rules require this distinction: the certificate proves the cost function's properties, not the grain size ladder.
The practical consequence is clear: the phi-ladder for dust grain sizes remains a hypothesis, not a derived result. A reader can use the certificate to verify the cost function behaves as expected, but cannot cite it as evidence that grains cluster at phi powers. The framework's library, a machine-checked collection of formal theorems, keeps the general cost facts and the astrophysical speculation cleanly separated. Anyone wanting to test the grain size idea must supply the missing physical definition and then check the prediction against measured size distributions.
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/DustGrainSize3FromPhiLadder.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/DustGrainSize3FromPhiLadder.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
HYPOTHESIS cert_inhabited · IndisputableMonolith/Astrophysics/DustGrainSize3FromPhiLadder.lean
theorem cert_inhabited : Nonempty DustGrain3Cert := ⟨cert⟩
What this page does not claim
The certificate does not prove that dust grain sizes follow a phi-power ladder. The module does not define m and e in astrophysical terms. The phi-ladder range from 0.01 to 0.76 micrometers is a research note, not a measured 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/DustGrainSize3FromPhiLadder.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 physical definition of m and e would turn the cost function into a genuine dust grain size theorem?
- Do observed interstellar dust size distributions actually cluster at phi powers of a base size?
- How does the shared template module state the three general cost facts once for all 2383 sibling modules?
- What empirical data would falsify the phi-ladder hypothesis for dust grain sizes?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/DustGrainSize3FromPhiLadder.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0theorem 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]The certificate proves three general facts about domainCost, defined as Jcost(m/e): the cost vanishes when m equals e, the cost is never negative for positive inputs, and phi minus 3/2 is positive. domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/DustGrainSize3FromPhiLadder.leanTHEOREM domainCost · IndisputableMonolith/Astrophysics/DustGrainSize3FromPhiLadder.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The certificate's name is aspirational, not descriptive, and the module proves nothing specific to dust grains because domainCost is defined without reference to one. domainCost · IndisputableMonolith/Astrophysics/DustGrainSize3FromPhiLadder.leanHYPOTHESIS cert_inhabited · IndisputableMonolith/Astrophysics/DustGrainSize3FromPhiLadder.lean
theorem cert_inhabited : Nonempty DustGrain3Cert := ⟨cert⟩The dust grain size ladder from phi powers remains a hypothesis, not a derived result. cert_inhabited · IndisputableMonolith/Astrophysics/DustGrainSize3FromPhiLadder.lean