Pith. sign in

Explain the Lean def `transitionRadius` in module `IndisputableMonolith.Astrophysics.GalacticRotationCurveFromRS`. Write for an educated reader who knows science and programming but may not know Lean. Cover: (1) what the declaration says in plain English, (2) why it matters in Recognition Science, (3) how to read the formal statement, (4) visible dependencies or certificates in the supplied source, and (5) what this declaration does not prove. Cite only declarations present in the supplied Recognition source.

Big AI job. Grok 4.3 reads the canon and writes a Lean-grounded derivation; usually 20 seconds to 2 minutes. Your answer will appear below.
confidence: high in recognition cached

Explanation of transitionRadius in IndisputableMonolith.Astrophysics.GalacticRotationCurveFromRS

(1) In plain English, the declaration defines a function that maps each natural number k to the real number obtained by raising the golden ratio phi to the power k.

(2) In Recognition Science this supplies the radii at which galactic rotation curves change regime. The module states there are five canonical regimes (rigid-body inner, rising, flat, declining, truncation) and places each transition one rung higher on the phi-ladder, yielding a parameter-free structural prediction.

(3) The formal statement is written as noncomputable def transitionRadius (k : ℕ) : ℝ := phi ^ k. The noncomputable keyword indicates a pure mathematical definition over the reals rather than an executable program; the argument k is a natural number and the result is a real number. It relies on the constant phi imported from Constants.

(4) Visible supporting declarations in the same module are rotationRegime_count establishing exactly five regimes, transitionRadius_ratio proving consecutive radii scale by exactly phi, transitionRadius_pos proving every radius is positive, the structure GalacticRotationCert that packages these facts, and the concrete certificate galacticRotationCert that witnesses them. The module reports zero sorry and zero axioms.

(5) The declaration supplies only the mathematical definition and its immediate algebraic properties; it does not derive the five regimes from deeper RS axioms, does not prove any link to observed galactic data, and does not establish the physical mechanism that selects phi-powers as the transition locations.

cited recognition theorems

outside recognition

Aspects Recognition does not yet address:

  • Derivation of the five rotation regimes from RS first principles
  • Any comparison to observational galactic data
  • Physical mechanism selecting phi-powers as transition locations

recognition modules consulted

The Recognition library is at github.com/jonwashburn/shape-of-logic. The model is restricted to the supplied Lean source and instructed not to invent theorem names. Treat output as a starting point, not a verified proof.