Encyclopedia Astrophysics Astrophysics Galactic Rotation Curve From Rs Transition Radius Pos
ARTICLE 3 claims 2 theorems 1 model
Astrophysics Galactic Rotation Curve From Rs Transition Radius Pos
A galaxy's rotation curve changes shape at radii that follow a fixed ratio; the declaration proves those radii are always positive.
The positive transition radius
Galactic rotation curves plot how fast stars and gas orbit a galaxy's center against their distance from it. Observations show a common sequence of shapes: a rigid-body rise near the center, a rising segment, a flat stretch (the part that motivates dark matter or modified gravity), a decline, and a truncation. In the Recognition Science framework, these five regimes are modeled as five discrete states, and the radius where the curve moves from one regime to the next is called a transition radius, a boundary between two adjacent rotation behaviors.
The framework defines each transition radius as phi^k, where phi is the golden ratio (about 1.618) and k is a whole number. The declaration transitionRadius_pos proves that for every whole number k, this radius is strictly greater than zero. That is a small but necessary fact: a radius must be a positive distance, and the proof guarantees the definition never produces a zero or negative boundary. The companion theorem transitionRadius_ratio shows that the ratio of consecutive transition radii is exactly phi, so the boundaries are spaced by a constant multiplicative step.
In Recognition Science, the golden ratio arises from the framework's central cost function, and the five regimes here match the framework's five-dimensional configuration space. The machine-checked library of formal theorems records these results with no unproved assumptions. But the declaration does not claim that real galaxies actually show this exact spacing, nor that the five regimes are the only possible ones, nor that the golden ratio is measured in any rotation curve. It only establishes a formal property of a defined quantity.
THEOREM transitionRadius_pos · IndisputableMonolith/Astrophysics/GalacticRotationCurveFromRS.lean
theorem transitionRadius_pos (k : ℕ) : 0 < transitionRadius k :=
pow_pos phi_pos k
MODEL transitionRadius · IndisputableMonolith/Astrophysics/GalacticRotationCurveFromRS.lean
noncomputable def transitionRadius (k : ℕ) : ℝ := phi ^ k
THEOREM transitionRadius_ratio · IndisputableMonolith/Astrophysics/GalacticRotationCurveFromRS.lean
theorem transitionRadius_ratio (k : ℕ) :
transitionRadius (k + 1) / transitionRadius k = phi := by
unfold transitionRadius
have hpos : (0 : ℝ) < phi ^ k := pow_pos phi_pos k
rw [div_eq_iff hpos.ne', pow_succ]
ring
What this page does not claim
No claim that observed galaxies exhibit golden-ratio transition radii. No claim that the five regimes are the only possible rotation-curve shapes. No claim about the physical mechanism that sets the transition radii.
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/GalacticRotationCurveFromRS.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 evidence would confirm or falsify the golden-ratio spacing of transition radii in real galaxies?
- How does the five-regime model relate to observed rotation curves that show fewer or more distinct segments?
- What does the framework's cost function imply about the stability of the flat rotation regime?
- Can the transition radius definition be extended to non-integer k without breaking the ratio theorem?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM transitionRadius_pos · IndisputableMonolith/Astrophysics/GalacticRotationCurveFromRS.lean
theorem transitionRadius_pos (k : ℕ) : 0 < transitionRadius k := pow_pos phi_pos kThe declaration transitionRadius_pos proves that for every whole number k, this radius is strictly greater than zero. transitionRadius_pos · IndisputableMonolith/Astrophysics/GalacticRotationCurveFromRS.leanMODEL transitionRadius · IndisputableMonolith/Astrophysics/GalacticRotationCurveFromRS.lean
noncomputable def transitionRadius (k : ℕ) : ℝ := phi ^ kThe framework defines each transition radius as phi^k, where phi is the golden ratio (about 1.618) and k is a whole number. transitionRadius · IndisputableMonolith/Astrophysics/GalacticRotationCurveFromRS.leanTHEOREM transitionRadius_ratio · IndisputableMonolith/Astrophysics/GalacticRotationCurveFromRS.lean
theorem transitionRadius_ratio (k : ℕ) : transitionRadius (k + 1) / transitionRadius k = phi := by unfold transitionRadius have hpos : (0 : ℝ) < phi ^ k := pow_pos phi_pos k rw [div_eq_iff hpos.ne', pow_succ] ringThe companion theorem transitionRadius_ratio shows that the ratio of consecutive transition radii is exactly phi. transitionRadius_ratio · IndisputableMonolith/Astrophysics/GalacticRotationCurveFromRS.lean