Encyclopedia Chemistry Chemistry Atomic Radii Helium Full Shell
ARTICLE 2 claims 2 theorems
Chemistry Atomic Radii Helium Full Shell
A machine-checked theorem confirms that helium's two electrons exactly fill its first shell, a bookkeeping fact with consequences for atomic radii.
Helium's closed shell
Helium is the second element on the periodic table, with two protons and two electrons. Its two electrons occupy the first electron shell, which is full. This closed-shell configuration makes helium chemically inert, the first of the noble gases. The shell holds exactly two electrons, a fact so familiar that it is easy to forget it is a fact at all.
In the Recognition Science framework, this familiar fact is not taken for granted. The framework models atomic structure through a ledger, a discrete record of electron states, and derives atomic radii from a scaling law based on the golden ratio. Within this model, the theorem helium_full_shell states that the number of valence electrons for helium (2) equals the period length for its shell (also 2). This is a formal, machine-checked proof, not an empirical observation or a numerical approximation.
The theorem is part of a larger pattern. Similar theorems confirm full shells for neon (10), argon (18), krypton (36), xenon (54), radon (86), and oganesson (118), all noble gases. The framework's library, a machine-checked collection of formal theorems, verifies each of these equalities by direct computation. The helium case is the simplest: it establishes the base case for the shell-filling pattern.
What the theorem does not claim is equally important. It does not assert that helium's measured atomic radius matches any particular experimental value. It does not derive the existence of electron shells from first principles; the shell structure is a definitional choice within the model. The theorem only verifies an arithmetic identity about the model's own bookkeeping. It says nothing about why shells close at 2, 10, 18, and so on, beyond the model's own period-length definitions.
In plain terms, the declaration confirms that the framework's internal counting of electrons agrees with the standard periodic table for helium. It is a consistency check, not a new physical prediction. The payoff is that the framework's radius formulas, which use shell number and screening factors, have a verified base case to build on.
THEOREM helium_full_shell · IndisputableMonolith/Chemistry/AtomicRadii.lean
/-- Noble gases have complete shells: valenceElectrons = periodLength. -/
theorem helium_full_shell : valenceElectrons 2 = periodLength 2 := by native_decide
THEOREM neon_full_shell · argon_full_shell · krypton_full_shell · xenon_full_shell · radon_full_shell · oganesson_full_shell · IndisputableMonolith/Chemistry/AtomicRadii.lean
theorem neon_full_shell : valenceElectrons 10 = periodLength 10 := by native_decide
theorem argon_full_shell : valenceElectrons 18 = periodLength 18 := by native_decide
theorem krypton_full_shell : valenceElectrons 36 = periodLength 36 := by native_decide
theorem xenon_full_shell : valenceElectrons 54 = periodLength 54 := by native_decide
theorem radon_full_shell : valenceElectrons 86 = periodLength 86 := by native_decide
theorem oganesson_full_shell : valenceElectrons 118 = periodLength 118 := by native_decide
What this page does not claim
The theorem does not assert any match between the model's radiusProxy and measured atomic radii. The theorem does not derive the existence of electron shells from the framework's foundational principles. The theorem does not explain why the first shell closes at two electrons rather than any other number.
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/AtomicRadii.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:
- How does the framework derive the period lengths for each shell from its underlying axioms?
- What experimental atomic radius data, if any, has been compared against the framework's radiusProxy values?
- Does the framework's screening factor formula reproduce the observed lanthanide contraction quantitatively?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM helium_full_shell · IndisputableMonolith/Chemistry/AtomicRadii.lean
/-- Noble gases have complete shells: valenceElectrons = periodLength. -/ theorem helium_full_shell : valenceElectrons 2 = periodLength 2 := by native_decidethe theorem helium_full_shell states that the number of valence electrons for helium (2) equals the period length for its shell (also 2) helium_full_shell · IndisputableMonolith/Chemistry/AtomicRadii.leanTHEOREM neon_full_shell · argon_full_shell · krypton_full_shell · xenon_full_shell · radon_full_shell · oganesson_full_shell · IndisputableMonolith/Chemistry/AtomicRadii.lean
theorem neon_full_shell : valenceElectrons 10 = periodLength 10 := by native_decidetheorem argon_full_shell : valenceElectrons 18 = periodLength 18 := by native_decidetheorem krypton_full_shell : valenceElectrons 36 = periodLength 36 := by native_decidetheorem xenon_full_shell : valenceElectrons 54 = periodLength 54 := by native_decidetheorem radon_full_shell : valenceElectrons 86 = periodLength 86 := by native_decidetheorem oganesson_full_shell : valenceElectrons 118 = periodLength 118 := by native_decideSimilar theorems confirm full shells for neon (10), argon (18), krypton (36), xenon (54), radon (86), and oganesson (118) neon_full_shell · argon_full_shell · krypton_full_shell · xenon_full_shell · radon_full_shell · oganesson_full_shell · IndisputableMonolith/Chemistry/AtomicRadii.lean