Encyclopedia Astrophysics Astrophysics Chandrasekhar Mass Structure Chandrasekhar Implies Ml Lower
ARTICLE 3 claims 2 theorems 1 model
Astrophysics Chandrasekhar Mass Structure Chandrasekhar Implies Ml Lower
A formal theorem ties the Chandrasekhar mass scale to a lower limit on a star's mass-to-light ratio, but only within the Recognition Science framework.
The lower bound
The Chandrasekhar limit is the maximum mass a white dwarf star can have before gravity overwhelms electron pressure, roughly 1.4 times the Sun's mass. In the Recognition Science framework, this physical scale is connected to a derived quantity called ml_derived, a mass-to-light ratio computed from the framework's own constants. The declaration chandrasekhar_implies_ml_lower is a machine-checked theorem stating that if the framework's Chandrasekhar mass structure holds, then ml_derived is greater than 0.5.
The theorem is a formal implication: it assumes a premise called chandrasekhar_mass_from_ledger, which asserts that ml_derived lies strictly between 0.5 and 5. From that single premise, the theorem extracts the lower half of the inequality as its conclusion. In plain terms, the framework proves that its own mass-to-light ratio cannot be arbitrarily small; it must exceed one half. The companion theorem chandrasekhar_implies_ml_upper draws the matching upper bound, that ml_derived is less than 5.
The proof is almost trivial in structure: the premise already contains both halves of the inequality, and the theorem simply projects out the first one. What matters is not the difficulty of the derivation but its role in the framework's architecture. The mass-to-light ratio is not a free parameter chosen to fit observations; it is a derived quantity, and the framework's library of formal theorems records that the Chandrasekhar structure forces it into a bounded range.
In Recognition Science, the framework models physical structure as emerging from a discrete record of recognition events, and its constants are fixed by the forcing chain rather than measured. Within that account, this theorem is a small but load-bearing piece: it shows that the framework's internal mass scale is consistent with a finite, positive mass-to-light ratio. The theorem does not say that real white dwarfs have a particular mass-to-light ratio, nor does it derive the Chandrasekhar limit itself from first principles. It only states a conditional relationship inside the framework's own definitions.
What the declaration does not claim is just as important as what it proves. It does not establish that ml_derived matches any observed astrophysical value; no empirical comparison is made in the theorem. It does not prove that the Chandrasekhar mass structure actually holds in nature; that premise is assumed, not derived. And it does not connect the framework's mass-to-light ratio to the classical Chandrasekhar limit as measured by astronomers. The theorem is a formal statement about the framework's internal consistency, not a prediction about white dwarfs.
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
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_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
What this page does not claim
The theorem does not compare ml_derived to any observed astrophysical mass-to-light ratio. The theorem does not prove that the Chandrasekhar mass structure holds in nature; it assumes it as a premise. The theorem does not connect the framework's mass-to-light ratio to the classical Chandrasekhar limit as measured by astronomers.
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:
- How does the framework derive ml_derived from its constants?
- What physical observations, if any, constrain the framework's mass-to-light ratio?
- Does the framework's Chandrasekhar mass structure correspond to the classical Chandrasekhar limit?
- What other astrophysical quantities does the framework derive from its forcing chain?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
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.1The theorem chandrasekhar_implies_ml_lower states that if the framework's Chandrasekhar mass structure holds, then ml_derived is greater than 0.5. chandrasekhar_implies_ml_lower · 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 premise chandrasekhar_mass_from_ledger asserts that ml_derived lies strictly between 0.5 and 5. chandrasekhar_mass_from_ledger · IndisputableMonolith/Astrophysics/ChandrasekharMassStructure.leanTHEOREM 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 companion theorem chandrasekhar_implies_ml_upper draws the matching upper bound, that ml_derived is less than 5. chandrasekhar_implies_ml_upper · IndisputableMonolith/Astrophysics/ChandrasekharMassStructure.lean