Encyclopedia Physics Physics Kaon Mass3 From Phi Ladder
ARTICLE 3 claims 1 theorem 1 measured
Physics Kaon Mass3 From Phi Ladder
A kaon's mass sits between two powers of the golden ratio, but the machine-checked proof stops short of the physics.
The kaon ladder
The kaon is a subatomic particle with a measured charged mass of about 494 MeV (million electron volts). In the Recognition Science framework, particle masses are modeled as a power of the golden ratio φ ≈ 1.618 times a common energy scale. For the kaon, the framework's research note places it at φ^17.5 times a coherence energy E_coh, which brackets it between φ^17 × 0.121 = 432 MeV and φ^18 × 0.121 = 699 MeV. The measured 494 MeV falls inside that bracket, consistent with the ladder idea but not a sharp prediction.
The module Kaon_Mass3_FromPhiLadder.lean does not prove the kaon's mass. Its machine-checked theorems are about a generic cost function Jcost(m/e), where m is a mass and e is an energy scale. The formal results show three general facts: the cost vanishes when m equals e, the cost is nonnegative for positive inputs, and the threshold φ − 3/2 is positive. These are properties of the cost function itself, true for any positive masses and energies, with no kaon-specific content. The definition of domainCost as Jcost(m/e) never mentions kaons or the phi ladder.
In Recognition Science, the cost (a forced penalty for mismatch between two quantities) is the framework's central object, and the golden ratio emerges from its uniqueness theorem. The kaon module was intended to apply that structure to a specific particle, but the research note admits the intended physics is not formalized. The Lean file proves only the universal cost properties, which are shared verbatim with 2383 sibling modules. To make this a theorem about kaons, one would need a definition of m and e in kaon-specific terms, which the module does not provide.
What the module does establish is a certificate structure: a packaged collection of the three general theorems, assembled into a single object named KaonMass3v2Cert. This certificate is inhabited, meaning the theorems are consistent and available for reuse. The plain-language takeaway is that the framework's cost function has the right formal hygiene (zero at equality, nonnegative, positive threshold), but the kaon mass itself remains a research aspiration, not a proved result. The bracket [432, 699] MeV containing 494 MeV is a numerical observation from the research note, not a theorem.
MEASURED KaonMass3v2Cert · IndisputableMonolith/Physics/Kaon_Mass3_FromPhiLadder.lean
structure KaonMass3v2Cert where
cost_at_eq : ∀ r : ℝ, r ≠ 0 → domainCost r r = 0
cost_nonneg : ∀ m e : ℝ, 0 < m → 0 < e → 0 ≤ domainCost m e
threshold_pos : 0 < canonicalThreshold
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Physics/Kaon_Mass3_FromPhiLadder.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 (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 : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
HYPOTHESIS KaonMass3v2Cert · IndisputableMonolith/Physics/Kaon_Mass3_FromPhiLadder.lean
structure KaonMass3v2Cert where
cost_at_eq : ∀ r : ℝ, r ≠ 0 → domainCost r r = 0
cost_nonneg : ∀ m e : ℝ, 0 < m → 0 < e → 0 ≤ domainCost m e
threshold_pos : 0 < canonicalThreshold
What this page does not claim
The module does not prove the kaon's mass is 494 MeV or any specific value. The bracket [432, 699] MeV is a research note observation, not a formal theorem. The cost function's general properties do not by themselves identify the kaon or any particle.
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/Kaon_Mass3_FromPhiLadder.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 kaon-specific terms would turn the generic cost theorems into a kaon mass theorem?
- How is the coherence energy E_coh determined for a specific particle like the kaon?
- What experimental precision would distinguish the φ^17.5 prediction from the measured 494 MeV?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MEASURED KaonMass3v2Cert · IndisputableMonolith/Physics/Kaon_Mass3_FromPhiLadder.lean
structure KaonMass3v2Cert where cost_at_eq : ∀ r : ℝ, r ≠ 0 → domainCost r r = 0 cost_nonneg : ∀ m e : ℝ, 0 < m → 0 < e → 0 ≤ domainCost m e threshold_pos : 0 < canonicalThresholdThe kaon has a measured charged mass of about 494 MeV. KaonMass3v2Cert · IndisputableMonolith/Physics/Kaon_Mass3_FromPhiLadder.leanTHEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Physics/Kaon_Mass3_FromPhiLadder.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0theorem 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 : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]The module's machine-checked theorems prove three general facts about the cost function: it vanishes when m equals e, it is nonnegative for positive inputs, and the threshold φ − 3/2 is positive. domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Physics/Kaon_Mass3_FromPhiLadder.leanHYPOTHESIS KaonMass3v2Cert · IndisputableMonolith/Physics/Kaon_Mass3_FromPhiLadder.lean
structure KaonMass3v2Cert where cost_at_eq : ∀ r : ℝ, r ≠ 0 → domainCost r r = 0 cost_nonneg : ∀ m e : ℝ, 0 < m → 0 < e → 0 ≤ domainCost m e threshold_pos : 0 < canonicalThresholdThe research note places the kaon mass at φ^17.5 times a coherence energy, bracketing it between 432 MeV and 699 MeV. KaonMass3v2Cert · IndisputableMonolith/Physics/Kaon_Mass3_FromPhiLadder.lean