Encyclopedia Chemistry Chemistry Atomic Radii Argon Full Shell
ARTICLE 2 claims 2 theorems
Chemistry Atomic Radii Argon Full Shell
A machine-checked theorem confirms that argon's valence electron count equals its period length, a small but exact piece of the periodic table's structure.
The argon shell fact
Argon, element 18, sits at the end of the third period of the periodic table. Its chemical behavior is famously inert because its outermost electron shell is full: it has 8 valence electrons, the maximum that the third shell can hold. The Recognition Science framework's ledger, a discrete record of recognition events, models this closure in a formal way. The declaration argon_full_shell is a machine-checked theorem stating that the number of valence electrons for argon equals the length of its period. In plain terms, the framework's own arithmetic confirms that argon's outer shell is exactly full, with no electrons left over for chemical bonding.
The theorem is a small piece of a larger pattern in the framework's library. The same full_shell statement holds for helium (2), neon (10), krypton (36), xenon (54), radon (86), and oganesson (118), the other noble gases. Each one has valence electrons equal to the length of its period, which is the framework's way of saying the shell is closed. The proofs are computational: the framework's definitions of valence electrons and period length, when evaluated for argon, reduce to the same number. This is not a physical measurement or an empirical fit; it is a formal identity within the framework's own definitions.
What the theorem does not do is predict a numerical atomic radius for argon in angstroms or picometers. The framework defines a radiusProxy as a shell radius scaled by a screening factor, and it proves qualitative ordering results, such as a later shell being larger than an earlier one. But the argon theorem itself says nothing about the size of the atom; it only certifies that the shell is full according to the framework's counting. The physical claim that a full shell corresponds to a local maximum in atomic radius across a period is a separate prediction, not part of this declaration.
The distinction matters for reading the framework's output correctly. A theorem about shell closure is a statement about the framework's internal model of electron counting. Whether that model captures the real chemical fact of argon's inertness is an empirical question, not one the theorem settles. The framework's contribution here is precise bookkeeping: it has checked, with machine certainty, that its own definitions agree that argon's shell is full.
THEOREM argon_full_shell · IndisputableMonolith/Chemistry/AtomicRadii.lean
theorem argon_full_shell : valenceElectrons 18 = periodLength 18 := by native_decide
THEOREM helium_full_shell · neon_full_shell · krypton_full_shell · xenon_full_shell · radon_full_shell · oganesson_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 : valenceElectrons 10 = periodLength 10 := 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 assign a numerical radius to argon in physical units. The theorem does not prove that argon is chemically inert in the real world. The framework's full-shell statements are not empirical measurements of electron configurations.
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's radiusProxy relate to measured atomic radii in angstroms?
- What empirical evidence supports the framework's prediction that noble gases are local maxima in atomic radius across a period?
- Does the framework's screening factor reproduce the lanthanide contraction quantitatively?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM argon_full_shell · IndisputableMonolith/Chemistry/AtomicRadii.lean
theorem argon_full_shell : valenceElectrons 18 = periodLength 18 := by native_decideThe declaration argon_full_shell is a machine-checked theorem stating that the number of valence electrons for argon equals the length of its period. argon_full_shell · IndisputableMonolith/Chemistry/AtomicRadii.leanTHEOREM helium_full_shell · neon_full_shell · krypton_full_shell · xenon_full_shell · radon_full_shell · oganesson_full_shell · IndisputableMonolith/Chemistry/AtomicRadii.lean
/-- Noble gases have complete shells: valenceElectrons = periodLength. -/ theorem helium_full_shell : valenceElectrons 2 = periodLength 2 := by native_decidetheorem neon_full_shell : valenceElectrons 10 = periodLength 10 := 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_decideThe same full_shell statement holds for helium, neon, krypton, xenon, radon, and oganesson. helium_full_shell · neon_full_shell · krypton_full_shell · xenon_full_shell · radon_full_shell · oganesson_full_shell · IndisputableMonolith/Chemistry/AtomicRadii.lean