Encyclopedia Astrophysics Astrophysics Chandrasekhar Mass Structure Chandrasekhar Implies Ml Upper
ARTICLE 3 claims 2 theorems 1 model
Astrophysics Chandrasekhar Mass Structure Chandrasekhar Implies Ml Upper
A machine-checked theorem ties the Chandrasekhar mass to an upper limit on a star's mass-to-light ratio, and the limit is a number between 0.5 and 5.
The upper bound
The Chandrasekhar mass is the largest mass a white dwarf can hold against gravity before electron degeneracy pressure gives way. In the Recognition Science framework, that mass scale is represented by a quantity called ml_derived, a ledger-derived mass-to-light ratio. The framework's library, a machine-checked collection of formal theorems, proves that if the Chandrasekhar mass structure holds, then ml_derived is less than 5.
The theorem chandrasekhar_implies_ml_upper states: assuming the Chandrasekhar mass structure, ml_derived < 5. The structure itself is defined as the conjunction of two inequalities: 0.5 < ml_derived and ml_derived < 5. The upper-bound theorem extracts the second conjunct directly. It is a formal consequence of the structure definition, proved in the framework's library with no additional assumptions.
The lower bound, 0.5 < ml_derived, is proved separately as chandrasekhar_implies_ml_lower. Together the two theorems bracket ml_derived between 0.5 and 5. The upper bound is the one named in the question, and it is the sharper of the two in the sense that it caps the ratio rather than merely flooring it.
What the theorem does not claim: it does not say that ml_derived is the actual measured mass-to-light ratio of any observed star. It does not assert that the Chandrasekhar mass structure itself is true; the structure is a hypothesis in the framework. The theorem only says that if the structure holds, then the upper bound follows. It also does not specify the physical units of ml_derived; the framework leaves that calibration open.
THEOREM chandrasekhar_implies_ml_upper · IndisputableMonolith/Astrophysics/ChandrasekharMassStructure.lean
/-- Chandrasekhar-mass structure implies upper mass-to-light bound. -/
theorem chandrasekhar_implies_ml_upper (h : chandrasekhar_mass_from_ledger) :
ml_derived < 5 :=
h.2
MODEL chandrasekhar_mass_from_ledger · IndisputableMonolith/Astrophysics/ChandrasekharMassStructure.lean
/-- Structural content: mass-scale anchors are positive and finite in RS ladder range. -/
def chandrasekhar_mass_from_ledger : Prop := 0.5 < ml_derived ∧ ml_derived < 5
THEOREM chandrasekhar_implies_ml_lower · IndisputableMonolith/Astrophysics/ChandrasekharMassStructure.lean
/-- Chandrasekhar-mass structure implies lower mass-to-light bound. -/
theorem chandrasekhar_implies_ml_lower (h : chandrasekhar_mass_from_ledger) :
0.5 < ml_derived :=
h.1
What this page does not claim
The theorem does not assert that ml_derived matches any observed star's mass-to-light ratio. The theorem does not prove the Chandrasekhar mass structure; it only derives a consequence from it. The theorem does not fix the physical units of ml_derived.
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/ChandrasekharMassStructure.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 units does ml_derived carry, if any?
- How does the framework derive the Chandrasekhar mass scale from its ledger?
- What observed mass-to-light ratios fall inside the 0.5 to 5 bracket?
- Does the framework prove the Chandrasekhar mass structure itself, or is it assumed?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM chandrasekhar_implies_ml_upper · IndisputableMonolith/Astrophysics/ChandrasekharMassStructure.lean
/-- Chandrasekhar-mass structure implies upper mass-to-light bound. -/ theorem chandrasekhar_implies_ml_upper (h : chandrasekhar_mass_from_ledger) : ml_derived < 5 := h.2The theorem chandrasekhar_implies_ml_upper states: assuming the Chandrasekhar mass structure, ml_derived < 5. chandrasekhar_implies_ml_upper · IndisputableMonolith/Astrophysics/ChandrasekharMassStructure.leanMODEL chandrasekhar_mass_from_ledger · IndisputableMonolith/Astrophysics/ChandrasekharMassStructure.lean
/-- Structural content: mass-scale anchors are positive and finite in RS ladder range. -/ def chandrasekhar_mass_from_ledger : Prop := 0.5 < ml_derived ∧ ml_derived < 5The structure itself is defined as the conjunction of two inequalities: 0.5 < ml_derived and ml_derived < 5. chandrasekhar_mass_from_ledger · IndisputableMonolith/Astrophysics/ChandrasekharMassStructure.leanTHEOREM chandrasekhar_implies_ml_lower · IndisputableMonolith/Astrophysics/ChandrasekharMassStructure.lean
/-- Chandrasekhar-mass structure implies lower mass-to-light bound. -/ theorem chandrasekhar_implies_ml_lower (h : chandrasekhar_mass_from_ledger) : 0.5 < ml_derived := h.1The lower bound, 0.5 < ml_derived, is proved separately as chandrasekhar_implies_ml_lower. chandrasekhar_implies_ml_lower · IndisputableMonolith/Astrophysics/ChandrasekharMassStructure.lean