Encyclopedia Cosmology Cosmology Galaxy Rotation Mond Acceleration Phi
ARTICLE 3 claims 1 theorem 2 models
Cosmology Galaxy Rotation Mond Acceleration Phi
A proposed constant that would explain galaxy rotation without dark matter, and what a formal framework does and does not say about it.
The MOND acceleration
The MOND acceleration is a proposed constant in modified Newtonian dynamics, a theory that tries to explain why the outer stars of galaxies orbit faster than visible matter alone would allow. In standard physics, the observed flat rotation curves require about five to ten times more mass than is visible, which is why dark matter halos are usually invoked. MOND instead posits that below a tiny acceleration threshold, about 1.2 × 10⁻¹⁰ m/s², gravity behaves differently, removing the need for unseen mass. That number is the MOND acceleration constant, often written a₀.
The framework's library, a machine-checked collection of formal theorems, contains a declaration named mond_acceleration_phi. The declaration's own annotation states that a₀ "may relate to φ-ladder," where φ is the golden ratio that appears throughout the framework's derived structure. That is the entire content of the declaration. It is a sketch, not a result. The declaration concludes in the tautology True, which proves nothing about physics. The framework's own documentation explicitly warns that such sketch modules record intent, not establishment, and that they must not be cited as evidence.
What the framework does establish elsewhere in the same module is a set of recognition ledger-based models, where a ledger is a discrete record of events. The module contains definitions for a typical rotation velocity of 220 km/s for the Milky Way, a circular velocity formula from Newtonian gravity, and a Navarro-Frenk-White dark matter profile. Several theorems, all concluding in True, sketch how a J-cost equilibrium distribution might yield a density falling as 1/r² and hence a flat rotation curve, and how that could produce a core rather than a cusp at galaxy centers. The module also defines a falsifier structure: the account would be falsified if rotation curves turned out not to be flat, if MOND worked in every regime without exception, or if the ledger distribution mismatched observations.
For the reader, the honest summary is short. The declaration mond_acceleration_phi does not prove that a₀ equals any function of the golden ratio. It does not derive MOND from the framework's axioms. It does not even state a concrete numerical claim. It is a placeholder that names a possible connection, and the framework's own rules say a placeholder is not a theorem. The classical MOND constant remains an empirical input to a proposed theory, and its origin remains an open question.
MODEL mond_acceleration_phi · IndisputableMonolith/Cosmology/GalaxyRotation.lean
/-- RS perspective on MOND:
The MOND acceleration scale a₀ ~ 10⁻¹⁰ m/s² is curious.
a₀ ~ cH₀ ~ c²/R_universe
This may be a cosmological coincidence... or not.
In RS: a₀ may be set by φ-ladder timescales. -/
theorem mond_acceleration_phi :
-- a₀ may relate to φ-ladder
True := trivial
THEOREM mond_acceleration_phi · IndisputableMonolith/Cosmology/GalaxyRotation.lean
/-- RS perspective on MOND:
The MOND acceleration scale a₀ ~ 10⁻¹⁰ m/s² is curious.
a₀ ~ cH₀ ~ c²/R_universe
This may be a cosmological coincidence... or not.
In RS: a₀ may be set by φ-ladder timescales. -/
theorem mond_acceleration_phi :
-- a₀ may relate to φ-ladder
True := trivial
MODEL GalaxyRotationFalsifier · IndisputableMonolith/Cosmology/GalaxyRotation.lean
/-- The derivation would be falsified if:
1. Rotation curves not flat (already confirmed)
2. No dark matter (MOND works everywhere)
3. Ledger distribution doesn't match observations -/
structure GalaxyRotationFalsifier where
curves_not_flat : Prop
mond_works_everywhere : Prop
ledger_mismatch : Prop
falsified : curves_not_flat ∨ mond_works_everywhere → False
What this page does not claim
The declaration does not prove that a₀ equals any function of the golden ratio. The declaration does not derive MOND from the framework's axioms. The declaration does not state a concrete numerical claim for a₀.
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/Cosmology/GalaxyRotation.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 mechanism would set the MOND acceleration to a specific value?
- Can the framework's ledger distribution produce a quantitative prediction for the MOND constant?
- What observations would distinguish a ledger-based dark matter model from MOND?
- How does the framework's core prediction differ from the cusp problem in standard cold dark matter simulations?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MODEL mond_acceleration_phi · IndisputableMonolith/Cosmology/GalaxyRotation.lean
/-- RS perspective on MOND: The MOND acceleration scale a₀ ~ 10⁻¹⁰ m/s² is curious. a₀ ~ cH₀ ~ c²/R_universe This may be a cosmological coincidence... or not. In RS: a₀ may be set by φ-ladder timescales. -/ theorem mond_acceleration_phi : -- a₀ may relate to φ-ladder True := trivialThe declaration's own annotation states that a₀ "may relate to φ-ladder," where φ is the golden ratio that appears throughout the framework's derived structure. mond_acceleration_phi · IndisputableMonolith/Cosmology/GalaxyRotation.leanTHEOREM mond_acceleration_phi · IndisputableMonolith/Cosmology/GalaxyRotation.lean
/-- RS perspective on MOND: The MOND acceleration scale a₀ ~ 10⁻¹⁰ m/s² is curious. a₀ ~ cH₀ ~ c²/R_universe This may be a cosmological coincidence... or not. In RS: a₀ may be set by φ-ladder timescales. -/ theorem mond_acceleration_phi : -- a₀ may relate to φ-ladder True := trivialThe declaration concludes in the tautology True, which proves nothing about physics. mond_acceleration_phi · IndisputableMonolith/Cosmology/GalaxyRotation.leanMODEL GalaxyRotationFalsifier · IndisputableMonolith/Cosmology/GalaxyRotation.lean
/-- The derivation would be falsified if: 1. Rotation curves not flat (already confirmed) 2. No dark matter (MOND works everywhere) 3. Ledger distribution doesn't match observations -/ structure GalaxyRotationFalsifier where curves_not_flat : Prop mond_works_everywhere : Prop ledger_mismatch : Prop falsified : curves_not_flat ∨ mond_works_everywhere → FalseThe module also defines a falsifier structure: the account would be falsified if rotation curves turned out not to be flat, if MOND worked in every regime without exception, or if the ledger distribution mismatched observations. GalaxyRotationFalsifier · IndisputableMonolith/Cosmology/GalaxyRotation.lean