Encyclopedia Astrophysics Astrophysics Tidal Locking From Phi Resonance Moon Resonance Eq
ARTICLE 3 claims 2 theorems 1 hypothesis
Astrophysics Tidal Locking From Phi Resonance Moon Resonance Eq
The Moon spins once per orbit, a fact the Recognition Science framework encodes as a single equation with a specific, limited meaning.
The Moon's locked spin
The Moon keeps one face toward Earth. This is tidal locking, or synchronous rotation: the Moon completes one rotation on its axis in the same 27.32 days it takes to complete one orbit. The spin-orbit resonance ratio is therefore 1 to 1. In the Recognition Science framework, the declaration moon_resonance_eq states this ratio as a formal equality: the defined value moon_resonance_pq equals 1. The proof is immediate, a definitional reflex, and it is machine-checked.
Within the framework, this 1:1 ratio is called the trivial resonance because it sits at the zero of the framework's cost function. The cost function, a measure of recognition effort, is defined so that its value at 1 is exactly 0. A second theorem, moon_J_cost_zero, proves this. The framework's larger claim about the inner Solar System is that the canonical spin-orbit ratios, the Moon's 1:1, Mercury's 3:2, and Venus's slow retrograde 4:1, all sit near powers of the golden ratio. The Moon's ratio is the exact starting point of that pattern.
The declaration itself is a narrow instrument. It does not model the tidal forces, the dissipation of energy in the Moon's rock, or the billions of years of orbital evolution that produced the lock. It does not predict that the Moon is locked; it takes the observed ratio as a given and states it in the framework's formal language. The framework's prediction, with a named falsifier, is broader: any confirmed Solar System spin-orbit resonance whose ratio deviates from a power of the golden ratio by more than about 0.118 would contradict the framework's resonance account. The Moon's 1:1 ratio is consistent with that prediction, but the equation itself only asserts the ratio's value.
What the equation changes is the status of the ratio inside the framework. It converts a measured astronomical fact into a formal object, a fixed point in the framework's cost structure, from which further theorems about the golden-ratio pattern can be stated and checked. For the general reader, the takeaway is simple: the Moon's locked spin is a fact, and the framework's formal record of that fact is a definitional equality, not an explanation of how the lock came to be.
THEOREM moon_resonance_eq · IndisputableMonolith/Astrophysics/TidalLockingFromPhiResonance.lean
/-- Moon-Earth ratio is exactly 1. -/
theorem moon_resonance_eq : moon_resonance_pq = 1 := rfl
THEOREM moon_J_cost_zero · IndisputableMonolith/Astrophysics/TidalLockingFromPhiResonance.lean
/-- Moon sits at J-cost zero (trivial resonance). -/
theorem moon_J_cost_zero : Cost.Jcost moon_resonance_pq = 0 := by
unfold moon_resonance_pq
exact Cost.Jcost_unit0
HYPOTHESIS tidal_locking_one_statement · IndisputableMonolith/Astrophysics/TidalLockingFromPhiResonance.lean
/-- **TIDAL LOCKING FROM φ-RESONANCE: ONE-STATEMENT THEOREM
(Track AS6).**
The three canonical inner-Solar-System spin-orbit resonance ratios
sit at φ-rational positions:
- Moon-Earth 1:1 ratio at J-cost zero (trivial 1:1 resonance).
- Mercury-Sun 3:2 within `J(φ) ∈ (0.11, 0.13)` of `φ`.
- Venus-Sun 4:1 (retrograde) within `1/φ² ∈ (0.22, 0.24)` of `φ³`.
All deviations sit at the canonical golden-section J-cost band,
forced by `Constants.phi` arithmetic. -/
theorem tidal_locking_one_statement :
-- (1) Moon-Earth 1:1.
moon_resonance_pq = 1 ∧
-- (2) Moon at J-cost zero.
Cost.Jcost moon_resonance_pq = 0 ∧
-- (3) Mercury deviation in J(φ) band.
(0.11 < phi - mercury_resonance_pq ∧
phi - mercury_resonance_pq < 0.13) ∧
-- (4) Venus deviation in 1/φ² band.
(0.22 < phi_cubed - venus_resonance_pq ∧
phi_cubed - venus_resonance_pq < 0.24) :=
⟨rfl,
moon_J_cost_zero,
mercury_deviation_in_J_phi_band,
venus_deviation_in_inverse_phi_sq_band⟩
What this page does not claim
The declaration does not explain the physical process of tidal locking. The declaration does not prove that the Moon's 1:1 ratio is a necessary consequence of the framework. The declaration does not validate the framework's broader golden-ratio prediction for all resonances.
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/TidalLockingFromPhiResonance.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 in the Recognition Science framework causes a spin-orbit ratio to settle at a golden-ratio power?
- How does the framework's cost function account for the energy dissipation that drives tidal locking?
- Does the framework's resonance prediction hold for exoplanetary systems with different formation histories?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM moon_resonance_eq · IndisputableMonolith/Astrophysics/TidalLockingFromPhiResonance.lean
/-- Moon-Earth ratio is exactly 1. -/ theorem moon_resonance_eq : moon_resonance_pq = 1 := rflIn the Recognition Science framework, the declaration moon_resonance_eq states this ratio as a formal equality: the defined value moon_resonance_pq equals 1. moon_resonance_eq · IndisputableMonolith/Astrophysics/TidalLockingFromPhiResonance.leanTHEOREM moon_J_cost_zero · IndisputableMonolith/Astrophysics/TidalLockingFromPhiResonance.lean
/-- Moon sits at J-cost zero (trivial resonance). -/ theorem moon_J_cost_zero : Cost.Jcost moon_resonance_pq = 0 := by unfold moon_resonance_pq exact Cost.Jcost_unit0The cost function, a measure of recognition effort, is defined so that its value at 1 is exactly 0. moon_J_cost_zero · IndisputableMonolith/Astrophysics/TidalLockingFromPhiResonance.leanHYPOTHESIS tidal_locking_one_statement · IndisputableMonolith/Astrophysics/TidalLockingFromPhiResonance.lean
/-- **TIDAL LOCKING FROM φ-RESONANCE: ONE-STATEMENT THEOREM (Track AS6).** The three canonical inner-Solar-System spin-orbit resonance ratios sit at φ-rational positions: - Moon-Earth 1:1 ratio at J-cost zero (trivial 1:1 resonance). - Mercury-Sun 3:2 within `J(φ) ∈ (0.11, 0.13)` of `φ`. - Venus-Sun 4:1 (retrograde) within `1/φ² ∈ (0.22, 0.24)` of `φ³`. All deviations sit at the canonical golden-section J-cost band, forced by `Constants.phi` arithmetic. -/ theorem tidal_locking_one_statement : -- (1) Moon-Earth 1:1. moon_resonance_pq = 1 ∧ -- (2) Moon at J-cost zero. Cost.Jcost moon_resonance_pq = 0 ∧ -- (3) Mercury deviation in J(φ) band. (0.11 < phi - mercury_resonance_pq ∧ phi - mercury_resonance_pq < 0.13) ∧ -- (4) Venus deviation in 1/φ² band. (0.22 < phi_cubed - venus_resonance_pq ∧ phi_cubed - venus_resonance_pq < 0.24) := ⟨rfl, moon_J_cost_zero, mercury_deviation_in_J_phi_band, venus_deviation_in_inverse_phi_sq_band⟩The framework's prediction, with a named falsifier, is broader: any confirmed Solar System spin-orbit resonance whose ratio deviates from a power of the golden ratio by more than about 0.118 would contradict the framework's resonance account. tidal_locking_one_statement · IndisputableMonolith/Astrophysics/TidalLockingFromPhiResonance.lean