Encyclopedia Chemistry Chemistry Sodium Ionization Rs
ARTICLE 5 claims 3 theorems 1 measured
Chemistry Sodium Ionization Rs
Sodium's first ionization energy is 5.139 eV; Recognition Science's framework offers a phi-based expression that lands at 5.14 eV.
Sodium's first ionization energy
Ionization energy is the minimum energy needed to remove one electron from a neutral atom in its ground state. For sodium, that energy is 5.139 electronvolts, a value measured in laboratories and listed in standard reference tables. The number matters because it sets the chemistry of sodium: how readily it gives up its outer electron, why it forms +1 ions, and why it reacts explosively with water.
The Recognition Science framework, a system that derives physical structure from a forced cost function, offers a compact expression for this value. It writes the ionization energy as phi^4 * 0.75 eV, where phi is the golden ratio, approximately 1.618. Computing phi^4 gives about 6.854; multiplying by 0.75 yields 5.14 eV. That lands within 0.001 eV of the measured 5.139 eV, a difference of about one part in five thousand.
In Recognition Science, the expression is not presented as a free fit. The framework's central theorem forces the golden ratio as the unique self-similar scaling, and the framework models physical constants on a phi-power ladder. Within that account, the sodium ionization energy is one rung on that ladder. The framework's machine-checked library of formal theorems proves general facts about its cost function: it vanishes when the two inputs are equal, it is nonnegative for positive inputs, and a threshold constant phi - 3/2 is positive.
What the library does not prove is anything specific to sodium. The module defines a general cost function of a ratio m/e, and the sodium docstring records where the idea was meant to go, not a result. The formal theorems apply to any positive m and e; they become a theorem about sodium only when m and e are defined in sodium's own terms, which the module does not do. The numerical agreement is a research note, not a proved derivation.
The plain-language takeaway: the framework offers a striking numerical coincidence for sodium's ionization energy, and its library proves the cost function's general properties. But the bridge from that general cost to a sodium-specific statement remains open.
MEASURED domainCost · IndisputableMonolith/Chemistry/Sodium_Ionization_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
MODEL domainCost · IndisputableMonolith/Chemistry/Sodium_Ionization_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
THEOREM domainCost_at_eq · IndisputableMonolith/Chemistry/Sodium_Ionization_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 · IndisputableMonolith/Chemistry/Sodium_Ionization_RS.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 cert_inhabited · IndisputableMonolith/Chemistry/Sodium_Ionization_RS.lean
theorem cert_inhabited : Nonempty NaIonizationRS := ⟨cert⟩
What this page does not claim
The phi^4 * 0.75 expression is a derived theorem; it is a research note with a numerical agreement. The framework's cost function is proven to be the ionization energy of sodium; it is defined as a general function of a ratio. The measured value 5.139 eV is derived from the framework; it is a laboratory measurement.
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/Chemistry/Sodium_Ionization_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 for sodium would turn the general cost function into a theorem about its ionization energy?
- Does the phi^4 * 0.75 expression hold for other alkali metals, or is it unique to sodium?
- How does the framework's phi-power ladder assign masses and energies to other elements?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MEASURED domainCost · IndisputableMonolith/Chemistry/Sodium_Ionization_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)Sodium's first ionization energy is 5.139 eV. domainCost · IndisputableMonolith/Chemistry/Sodium_Ionization_RS.leanMODEL domainCost · IndisputableMonolith/Chemistry/Sodium_Ionization_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The framework writes the ionization energy as phi^4 * 0.75 eV, which computes to 5.14 eV. domainCost · IndisputableMonolith/Chemistry/Sodium_Ionization_RS.leanTHEOREM domainCost_at_eq · IndisputableMonolith/Chemistry/Sodium_Ionization_RS.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0The framework's library proves the cost function vanishes when its two inputs are equal. domainCost_at_eq · IndisputableMonolith/Chemistry/Sodium_Ionization_RS.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Chemistry/Sodium_Ionization_RS.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 framework's library proves the cost function is nonnegative for positive inputs. domainCost_nonneg · IndisputableMonolith/Chemistry/Sodium_Ionization_RS.leanTHEOREM cert_inhabited · IndisputableMonolith/Chemistry/Sodium_Ionization_RS.lean
theorem cert_inhabited : Nonempty NaIonizationRS := ⟨cert⟩The module proves nothing specific to sodium. cert_inhabited · IndisputableMonolith/Chemistry/Sodium_Ionization_RS.lean