Encyclopedia Astrophysics Astrophysics Galactic Rotation Curve From Rs Transition Radius Ratio

ARTICLE 3 claims 2 theorems 1 model

Astrophysics Galactic Rotation Curve From Rs Transition Radius Ratio

A machine-checked theorem says that in one framework the radii where a galaxy's rotation changes form a ladder with a fixed ratio, but it does not by itself identify those radii in any real galaxy.

The transition ladder

Astronomers who plot a galaxy's rotation speed against distance from its center see a sequence of regimes: a rigid-body rise near the core, a rising segment, a long flat stretch, a decline, and finally a truncation. In the Recognition Science framework, this sequence is not an accident. The framework's library, a machine-checked collection of formal theorems, defines a recognition event as a discrete record of the universe tracking a change, and it models these five regimes as exactly the five stages such a record passes through.

Within that model, the framework defines a transitionRadius for each stage: a number, in arbitrary units, marking where one regime gives way to the next. The theorem transitionRadius_ratio proves that the ratio of any transition radius to the one before it equals the golden ratio φ, the number satisfying r² = r + 1, approximately 1.618. In symbols: transitionRadius(k+1) / transitionRadius(k) = φ for every stage k. The proof is a short algebraic check using the definition of the radii as powers of φ, and the library records it with no unproved assumptions.

The classical context makes the claim vivid. The golden ratio already appears in spiral galaxies through their arm pitch angles, and here the framework derives it as the fixed spacing of rotation-curve transitions. The theorem also guarantees every transition radius is positive, so the ladder never crosses zero. The framework's larger chain of results, which forces the golden ratio from the structure of recognition itself, supplies the reason this particular ratio appears rather than any other.

What the theorem does not do is identify which observed galaxy, at which measured radius, exhibits a particular transition. The declaration establishes a ratio between abstract radii in the model; it does not assign those radii to any real object. Matching the ladder to actual galactic data remains a separate empirical step, and the framework does not claim to have performed it.

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
MODEL RotationRegime · rotationRegime_count · IndisputableMonolith/Astrophysics/GalacticRotationCurveFromRS.lean
inductive RotationRegime where
  | rigidBodyInner
  | rising
  | flat
  | declining
  | truncation
  deriving DecidableEq, Repr, BEq, Fintype
theorem rotationRegime_count : Fintype.card RotationRegime = 5 := by decide
THEOREM transitionRadius_pos · IndisputableMonolith/Astrophysics/GalacticRotationCurveFromRS.lean
theorem transitionRadius_pos (k : ℕ) : 0 < transitionRadius k :=
  pow_pos phi_pos k

What this page does not claim

No observed galaxy's transition radii are identified or measured by this theorem. The theorem does not prove that real galactic rotation curves must follow the golden ratio; it only states a ratio within the framework's model. The framework's physical bridge from recognition events to actual galactic dynamics is not established by this declaration.

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:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND