Encyclopedia Astrophysics Astrophysics White Dwarf Mass From Phi Ladder Wdmass Cert
ARTICLE 5 claims 4 theorems 1 model
Astrophysics White Dwarf Mass From Phi Ladder Wdmass Cert
A machine-checked certificate packages three general facts about a cost function, but says nothing specific about white dwarf masses.
The certification structure
A white dwarf is the dense, cooling remnant of a star like the Sun, left behind after it exhausts its nuclear fuel. Most known white dwarfs cluster around a narrow range of masses, roughly 0.59 to 0.62 times the Sun's mass, a peak that astrophysicists observe in survey data. In the Recognition Science framework, the declaration WDMassCert is a machine-checked structure that bundles three formal facts about a cost function, a measure of how far a recognized value sits from its reference.
The three facts are general properties of the cost function J(x) = (x + 1/x)/2 - 1, evaluated on a ratio m/e. First, when the two inputs are equal, the cost is zero: J(1) = 0. Second, for positive inputs, the cost never drops below zero. Third, a threshold constant defined as phi - 3/2, where phi is the golden ratio, is positive. These three statements are proved in the framework's machine-checked library of formal theorems, and the certificate simply packages them into one structure with a proof that the structure is inhabited.
The certificate proves nothing specific to white dwarfs. The cost function is defined as J(m/e) without any definition of what m and e mean in astrophysical terms. The research note attached to the module records an intention: that the white dwarf mass peak at about 0.618 solar masses, equal to phi^(-1) times the solar mass, might sit at a rung of a stellar mass ladder. That idea is a research note, not a result. The formal content is shared verbatim with 2383 sibling modules, each with the same three general facts and no subject-specific content.
What the certificate does establish is a template. It shows that the cost function behaves sensibly at the identity, stays nonnegative on positive inputs, and has a positive threshold tied to the golden ratio. These are prerequisites for any further claim. To turn the certificate into a theorem about white dwarfs, one would need a definition of m and e in the subject's own terms, for instance a definition of stellar mass in terms of the framework's ladder. That definition does not exist in the pack.
The practical upshot: the certificate is a foundation stone, not a building. It guarantees the cost function's basic hygiene, and it records where a white dwarf mass claim was meant to go. The astrophysical claim itself, that the observed mass peak equals phi^(-1) solar masses, remains an open target, not a proved result.
THEOREM domainCost_at_eq · IndisputableMonolith/Astrophysics/WhiteDwarfMassFromPhiLadder.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 · IndisputableMonolith/Astrophysics/WhiteDwarfMassFromPhiLadder.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/WhiteDwarfMassFromPhiLadder.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
THEOREM domainCost · IndisputableMonolith/Astrophysics/WhiteDwarfMassFromPhiLadder.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
MODEL WDMassCert · IndisputableMonolith/Astrophysics/WhiteDwarfMassFromPhiLadder.lean
structure WDMassCert 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 that white dwarf masses cluster at phi^(-1) solar masses. The certificate does not define what m and e mean in astrophysical terms. The certificate does not establish any empirical agreement with observed white dwarf masses.
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/WhiteDwarfMassFromPhiLadder.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 stellar mass in the framework's own terms would turn the certificate into a theorem about white dwarfs?
- Does the observed white dwarf mass peak at about 0.618 solar masses match the framework's phi^(-1) rung within measurement error?
- What distinguishes a rung on the stellar mass ladder from a merely fitted constant?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · IndisputableMonolith/Astrophysics/WhiteDwarfMassFromPhiLadder.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0First, when the two inputs are equal, the cost is zero: J(1) = 0. domainCost_at_eq · IndisputableMonolith/Astrophysics/WhiteDwarfMassFromPhiLadder.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Astrophysics/WhiteDwarfMassFromPhiLadder.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)Second, for positive inputs, the cost never drops below zero. domainCost_nonneg · IndisputableMonolith/Astrophysics/WhiteDwarfMassFromPhiLadder.leanTHEOREM canonicalThreshold_pos · IndisputableMonolith/Astrophysics/WhiteDwarfMassFromPhiLadder.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]Third, a threshold constant defined as phi - 3/2, where phi is the golden ratio, is positive. canonicalThreshold_pos · IndisputableMonolith/Astrophysics/WhiteDwarfMassFromPhiLadder.leanTHEOREM domainCost · IndisputableMonolith/Astrophysics/WhiteDwarfMassFromPhiLadder.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The certificate proves nothing specific to white dwarfs. domainCost · IndisputableMonolith/Astrophysics/WhiteDwarfMassFromPhiLadder.leanMODEL WDMassCert · IndisputableMonolith/Astrophysics/WhiteDwarfMassFromPhiLadder.lean
structure WDMassCert 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 < canonicalThresholdThe formal content is shared verbatim with 2383 sibling modules, each with the same three general facts and no subject-specific content. WDMassCert · IndisputableMonolith/Astrophysics/WhiteDwarfMassFromPhiLadder.lean