Encyclopedia Nuclear Nuclear Nuclear Shell Gap Rs
ARTICLE 3 claims 3 theorems
Nuclear Nuclear Shell Gap Rs
A gap in nuclear energy levels, measured around 4 MeV, is where Recognition Science's cost function finds a familiar number.
The shell gap and its ledger
A nuclear shell gap is the energy jump between filled and empty nucleon orbits in a nucleus, a quantum effect that makes certain proton or neutron counts, the magic numbers, unusually stable. In the standard picture, the gap at the magic number 50 is roughly 3 to 5 MeV. Recognition Science enters here with a specific, testable identification: the framework's cost function, evaluated at the golden ratio cubed, gives about 4.236 MeV, which falls inside that measured window.
The framework's central object is a cost, a number that measures the price of recognizing one thing as another. The cost function J(x) = (x + 1/x)/2 - 1 is forced by five plain conditions, and it vanishes when the two things are identical. The shell gap module applies this cost to a ratio of masses, m/e, and asks when the cost is zero or positive. The machine-checked library of formal theorems proves three general facts: the cost is zero when m equals e, it is never negative for positive inputs, and the golden ratio minus 3/2 is positive.
What the module does not do is define what m and e mean for a nucleus. The docstring records the intended physical identification, phi^3 MeV as the shell gap, but the formal code never connects the cost to nuclear physics. The theorems are universally quantified statements about the cost function itself, shared verbatim across 2383 sibling modules. A true theorem about the shell gap would require a definition of m and e in nuclear terms, which the module does not provide.
In plain language: the framework's cost function, when fed the golden ratio cubed, produces a number that sits inside the measured shell gap range. That is a numerical coincidence with a possible physical meaning, not a derivation. The formal part of the module is a template, not a nuclear theory. The research note says where the idea was meant to go; the Lean code proves only that the cost function behaves as it must.
THEOREM domainCost_at_eq · IndisputableMonolith/Nuclear/Nuclear_Shell_Gap_RS.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_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Nuclear/Nuclear_Shell_Gap_RS.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]
THEOREM domainCost · IndisputableMonolith/Nuclear/Nuclear_Shell_Gap_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
What this page does not claim
The module does not prove that phi^3 MeV is the nuclear shell gap. The module does not provide a nuclear definition of m and e. The 3-5 MeV range is a measured window, not a framework derivation.
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/Nuclear/Nuclear_Shell_Gap_RS.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 definition of m and e would make the shell gap module a theorem about nuclei?
- Does the 4.236 MeV value match the measured gap at other magic numbers?
- How does the cost function's zero at m = e relate to nuclear stability?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · IndisputableMonolith/Nuclear/Nuclear_Shell_Gap_RS.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0The cost function J(x) = (x + 1/x)/2 - 1 is forced by five plain conditions, and it vanishes when the two things are identical. domainCost_at_eq · IndisputableMonolith/Nuclear/Nuclear_Shell_Gap_RS.leanTHEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Nuclear/Nuclear_Shell_Gap_RS.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 machine-checked library of formal theorems proves three general facts: the cost is zero when m equals e, it is never negative for positive inputs, and the golden ratio minus 3/2 is positive. domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Nuclear/Nuclear_Shell_Gap_RS.leanTHEOREM domainCost · IndisputableMonolith/Nuclear/Nuclear_Shell_Gap_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The theorems are universally quantified statements about the cost function itself, shared verbatim across 2383 sibling modules. domainCost · IndisputableMonolith/Nuclear/Nuclear_Shell_Gap_RS.lean