Encyclopedia Chemistry Chemistry Ionization Energy Predicted I1 E V

ARTICLE 4 claims 4 theorems

Chemistry Ionization Energy Predicted I1 E V

Ionization energy is the cost to pull one electron off an atom; a framework predicts the pattern of that cost across the periodic table without fitting any data.

The predicted ionization energy

Ionization energy is the energy needed to remove one electron from a neutral atom. The first ionization energy, I₁, is the cost for the first electron. In the periodic table, this value is not random: it is low for alkali metals like sodium, high for noble gases like argon, and rises generally across each row. The Recognition Science framework, a set of formal theorems derived from a single cost function, offers a model for this pattern. Its declaration predictedI1_eV is a definition, not a theorem, that assigns a predicted value in electronvolts to each atomic number Z.

The prediction is built from three pieces. First, a base energy scale, called E_coh, is multiplied by a factor that depends on the element's period, or row, in the table. The factor grows as φ^(2n), where φ is the golden ratio and n is the period number. Second, a position factor measures where the element sits within its period: it is the ratio of the element's valence electrons to the period length. An alkali metal with one valence electron in a period of length eight gets a position factor of 1/8, while a noble gas with a full shell gets 1. Third, the whole product is scaled by 1000 to bring it into the electronvolt range. The formula is predictedI1_eV Z = E_coh * φ^(2·period) * (valence / periodLength) * 1000.

The framework proves, in its machine-checked library of formal theorems, that this construction produces the correct ordering within a period. The theorem ionization_monotone_within_period shows that if two elements are in the same period, the one with the higher atomic number has a strictly higher ionization proxy. The theorem alkali_min_ionization proves that any element with one valence electron, except hydrogen, has the minimum proxy value of 1. The theorem noble_max_ionization proves that a noble gas, with a full shell, has a proxy equal to the period length, the maximum. The theorem sawtooth_reset proves that the proxy drops sharply from a noble gas to the next element, an alkali metal, creating the sawtooth shape of the ionization energy graph.

These theorems are about the ordering, not the absolute numbers. The docstring for the file states plainly that the numerical values are not predicted without an anchor; only the ordering is fit-free. The constant E_coh is a model choice, not a derived quantity, and the factor of 1000 is a display seam to reach the electronvolt range. The declaration predictedI1_eV itself is a definition that combines these choices; it does not prove that its output matches any measured value.

The framework's contribution is a structural claim: the sawtooth pattern of ionization energy, with minima at alkali metals and maxima at noble gases, follows from a single scaling law based on the golden ratio. This is a prediction that can be tested against data. The falsification criteria are explicit: if any element within a period has a measured I₁ that breaks the monotone increase, or if an alkali metal is not the minimum, or a noble gas is not the maximum, the model is falsified. The pattern is the claim; the exact electronvolts are not.

THEOREM ionization_monotone_within_period · IndisputableMonolith/Chemistry/IonizationEnergy.lean
ionization_monotone_within_period · IndisputableMonolith/Chemistry/IonizationEnergy.lean:78
/-- Ionization proxy is monotone increasing within a period.
    If Z₁ < Z₂ are in the same period, then proxy(Z₁) < proxy(Z₂). -/
theorem ionization_monotone_within_period (Z1 Z2 : ℕ)
    (hZ1ge : Z1 ≥ prevClosure Z1)
    (hLt : Z1 < Z2) (hNotCross : prevClosure Z1 = prevClosure Z2) :
    ionizationProxy Z1 < ionizationProxy Z2 := by
  simp only [ionizationProxy, valenceElectrons]
  -- Z1 - prevClosure Z1 < Z2 - prevClosure Z2
  -- Since prevClosure Z1 = prevClosure Z2, this reduces to Z1 < Z2
  have hZ2ge : Z2 ≥ prevClosure Z2 := by omega
  omega
THEOREM alkali_min_ionization · IndisputableMonolith/Chemistry/IonizationEnergy.lean
/-- Within any period, alkali metals have minimum ionization proxy. -/
theorem alkali_min_ionization (Z : ℕ) (hZ : valenceElectrons Z = 1) (hZ2 : Z > 2) :
    ionizationProxy Z = 1 := by
  simp only [ionizationProxy]
  exact hZ
THEOREM noble_max_ionization · IndisputableMonolith/Chemistry/IonizationEnergy.lean
/-- Noble gases have maximum ionization proxy (equal to period length). -/
theorem noble_max_ionization (Z : ℕ) (h : isNobleGas Z) :
    ionizationProxy Z = periodLength Z := by
  simp only [ionizationProxy]
  exact noble_gas_complete_shell Z h
THEOREM sawtooth_reset · IndisputableMonolith/Chemistry/IonizationEnergy.lean
/-- The sawtooth pattern: ionization resets at each period boundary.
    After a noble gas, the next element (alkali) has minimal ionization. -/
theorem sawtooth_reset (Znoble Zalkali : ℕ)
    (hNoble : isNobleGas Znoble)
    (hNext : Zalkali = Znoble + 1)
    (hValid : Zalkali ≤ 118) :
    ionizationProxy Zalkali < ionizationProxy Znoble := by
  -- Noble gas has maximum (= period length), alkali has 1
  -- Case by case on which noble gas
  unfold isNobleGas nobleGasZ at hNoble
  simp only [List.mem_cons, List.mem_nil_iff, or_false] at hNoble
  obtain rfl | rfl | rfl | rfl | rfl | rfl := hNoble <;>
    subst hNext <;>
    native_decide

What this page does not claim

This does not claim that the numerical values of predictedI1_eV match measured ionization energies. This does not claim that the constant E_coh is derived from the framework's core theorems. This does not claim that the factor of 1000 has any physical meaning beyond a unit conversion.

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/IonizationEnergy.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:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND