Encyclopedia Physics Physics Gravitino Mass From Phi Ladder
ARTICLE 4 claims 3 theorems 1 model
Physics Gravitino Mass From Phi Ladder
In supersymmetry, the gravitino's mass is set by the scale of symmetry breaking; Recognition Science offers a structural formula for that scale, though the physical bridge remains unproved.
Gravitino mass in the framework
The gravitino is the hypothetical superpartner of the graviton, the particle that would carry the gravitational force in a supersymmetric theory. Its mass is not a free parameter: in standard supersymmetry, the gravitino mass m3/2 is set by the scale at which supersymmetry breaks, roughly m3/2 = F / (√3 MPl), where F is the supersymmetry-breaking scale and MPl is the Planck mass. The smaller the breaking scale, the lighter the gravitino; a gravitino near the Planck mass would imply breaking at the highest energies.
Recognition Science (RS) proposes to fix that breaking scale from its own structure. The framework's central object is a cost, a number that measures how expensive it is for reality to recognize one state as another. The cost function J(x) = (x + 1/x)/2 − 1 is forced by five plain conditions, and its unique self-similar point is the golden ratio φ ≈ 1.618. In RS, the supersymmetry-breaking scale F is modeled as φk times a coherence energy Ecoh, placing the gravitino mass on a ladder of φ-powers. The structural formula proposed is m3/2 = J(φ) · MPl / √3, where J(φ) = (φ + 1/φ)/2 − 1 ≈ 0.118.
The module Gravitino_MassFromPhiLadder.lean does not prove that formula. It proves three general facts about the cost function: the cost vanishes when the two masses are equal (domainCost_at_eq), the cost is never negative for positive masses (domainCost_nonneg), and the threshold φ − 3/2 is positive (canonicalThreshold_pos). These are properties of J applied to any ratio, not of gravitinos specifically. The module defines the cost as J(m/e) without connecting m and e to any physical quantity, so the gravitino paragraph is a research note, not a formal result.
What the module does establish is that the cost function behaves sensibly as a measure of mismatch: it is zero at perfect agreement, nonnegative everywhere, and its natural threshold sits above zero. Those are the properties any useful cost function should have. The step from those properties to a physical gravitino mass requires a definition of m and e in terms of supersymmetry-breaking physics, which the module does not supply. That physical bridge remains open.
THEOREM domainCost_at_eq · IndisputableMonolith/Physics/Gravitino_MassFromPhiLadder.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by
unfold domainCost; rw [div_self h]; exact Jcost_unit0
THEOREM domainCost_nonneg · IndisputableMonolith/Physics/Gravitino_MassFromPhiLadder.lean
theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by
unfold domainCost; exact Jcost_nonneg (div_pos hm he)
THEOREM canonicalThreshold_pos · IndisputableMonolith/Physics/Gravitino_MassFromPhiLadder.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
MODEL domainCost · IndisputableMonolith/Physics/Gravitino_MassFromPhiLadder.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
What this page does not claim
No physical gravitino mass value is derived or predicted by this module. The formula m_3/2 = J(φ) · M_Pl / √3 is not proved in the Lean library. No connection between the cost function and supersymmetry-breaking scale F is established beyond a research note.
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/Physics/Gravitino_MassFromPhiLadder.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 definition of m and e in supersymmetry-breaking terms would turn the cost function into a physical gravitino mass?
- How does the φ-ladder for the breaking scale F relate to the known particle mass spectrum?
- What experimental signature would distinguish an RS gravitino mass from the standard supersymmetric prediction?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · IndisputableMonolith/Physics/Gravitino_MassFromPhiLadder.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0The module proves the cost vanishes when the two masses are equal (domainCost_at_eq). domainCost_at_eq · IndisputableMonolith/Physics/Gravitino_MassFromPhiLadder.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Physics/Gravitino_MassFromPhiLadder.lean
theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by unfold domainCost; exact Jcost_nonneg (div_pos hm he)The module proves the cost is never negative for positive masses (domainCost_nonneg). domainCost_nonneg · IndisputableMonolith/Physics/Gravitino_MassFromPhiLadder.leanTHEOREM canonicalThreshold_pos · IndisputableMonolith/Physics/Gravitino_MassFromPhiLadder.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]The module proves the threshold φ − 3/2 is positive (canonicalThreshold_pos). canonicalThreshold_pos · IndisputableMonolith/Physics/Gravitino_MassFromPhiLadder.leanMODEL domainCost · IndisputableMonolith/Physics/Gravitino_MassFromPhiLadder.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The module defines the cost as J(m/e) without connecting m and e to any physical quantity, so the gravitino paragraph is a research note, not a formal result. domainCost · IndisputableMonolith/Physics/Gravitino_MassFromPhiLadder.lean