Encyclopedia Astrophysics Astrophysics Dust Grain Size3 From Phi Ladder
ARTICLE 4 claims 1 theorem 1 measured
Astrophysics Dust Grain Size3 From Phi Ladder
Astrophysicists measure interstellar dust grains from about 0.01 to 1 micrometer, and one framework's scale ladder maps neatly onto that range.
Dust grain sizes and the phi ladder
Interstellar dust grains, the tiny solid particles that dim and redden starlight, span a well-known size range. Observations put them roughly between 0.01 and 1 micrometer, with very small grains (VSGs) near the bottom and larger grains approaching the top. The phi ladder in Recognition Science starts with 0.01 micrometers and multiplies by the golden ratio φ ≈ 1.618 at each step. At step 5 the ladder gives 0.11 micrometers, and at step 9 it gives 0.76 micrometers, so the full range φ^0 to φ^9 lands at 0.01 to 0.76 micrometers, consistent with the observed span.
The module DustGrainSize3FromPhiLadder in the framework's machine-checked library of formal theorems does not prove that dust grains actually follow this ladder. Its cost function, a measure of recognition effort, is defined as J(m/e), where J(x) = (x + 1/x)/2 - 1. The formal proofs establish three general facts about this cost: it vanishes when m equals e, it is nonnegative for positive inputs, and the threshold φ - 3/2 is positive. These are properties of the cost function itself, not of dust.
In plain language, the module certifies that the cost function behaves sensibly: equal values cost nothing, costs never go negative, and the golden-ratio threshold is a real positive number. What would make this a theorem about dust grains is a definition of m and e in the subject's own terms, for instance m as a grain size and e as a reference size. Without that link, the module remains a general statement about J, shared verbatim with 2383 sibling modules in the library.
The practical takeaway is that the phi ladder offers a compact parametrization of the dust size range, but the framework's formal proofs currently stop at the cost function's general properties. The astrophysical connection is a research note, not a derived result. A reader should treat the size mapping as a suggestive model awaiting a subject-specific definition.
MEASURED domainCost · IndisputableMonolith/Astrophysics/DustGrainSize3FromPhiLadder.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
MODEL domainCost · IndisputableMonolith/Astrophysics/DustGrainSize3FromPhiLadder.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
MODEL domainCost · IndisputableMonolith/Astrophysics/DustGrainSize3FromPhiLadder.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
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]
What this page does not claim
The module does not prove that dust grains follow the phi ladder. The size mapping is not a derived result, only a research note. The cost function's properties are general and not specific to dust.
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 make the dust grain size claim a theorem?
- How does the phi ladder compare with observed dust size distributions beyond the range endpoints?
- Which other astrophysical quantities might the phi ladder parametrize?
- What distinguishes the 2383 sibling modules that share this same cost template?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MEASURED domainCost · IndisputableMonolith/Astrophysics/DustGrainSize3FromPhiLadder.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)Observations put interstellar dust grains roughly between 0.01 and 1 micrometer. domainCost · IndisputableMonolith/Astrophysics/DustGrainSize3FromPhiLadder.leanMODEL domainCost · IndisputableMonolith/Astrophysics/DustGrainSize3FromPhiLadder.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The phi ladder in Recognition Science starts with 0.01 micrometers and multiplies by the golden ratio φ ≈ 1.618 at each step. domainCost · IndisputableMonolith/Astrophysics/DustGrainSize3FromPhiLadder.leanMODEL domainCost · IndisputableMonolith/Astrophysics/DustGrainSize3FromPhiLadder.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)At step 5 the ladder gives 0.11 micrometers, and at step 9 it gives 0.76 micrometers. domainCost · IndisputableMonolith/Astrophysics/DustGrainSize3FromPhiLadder.leanTHEOREM 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 formal proofs establish three general facts about this cost: it vanishes when m equals e, it is nonnegative for positive inputs, and the threshold φ - 3/2 is positive. domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/DustGrainSize3FromPhiLadder.lean