Encyclopedia Chemistry Chemistry Periodic Table Cumulative Closure Eq Noble

ARTICLE 3 claims 2 theorems 1 model

Chemistry Periodic Table Cumulative Closure Eq Noble

A machine-checked theorem ties the noble gas atomic numbers to a running sum that returns to zero, but it does not derive the periodic table's structure from first principles.

The closure list

The noble gases are helium, neon, argon, krypton, xenon, and radon, with atomic numbers 2, 10, 18, 36, 54, and 86. Chemists know them for their filled valence shells, which make them reluctant to bond. The Recognition Science framework's library contains a theorem, cumulative_closure_eq_noble, that restates this list as the output of a simple running sum. The sum starts at 2, then adds the lengths of successive periods: 2, then 8, then 8, then 18, then 18, then 32. The theorem proves that this cumulative total equals the noble gas list, exactly and for all six entries.

The framework's library is a machine-checked collection of formal theorems, and this one is a definitional identity rather than a physical discovery. The period lengths [2, 8, 8, 18, 18, 32] are hard-coded into the file as a list, not derived from any deeper principle. The theorem's proof is by direct computation: it checks each of the six cases and finds them equal. In plain terms, the theorem certifies that the arithmetic of adding period lengths reproduces the known noble gas positions. It does not explain why those period lengths exist, nor does it predict any element beyond radon.

Within the framework, the claim is that noble gases are exactly the points where a cumulative valence cost reaches eight-window neutrality. The idea is that each element contributes a valence imbalance to a ledger, and a noble gas is a closure point where the running sum modulo 8 returns to zero. This is presented as a chemical manifestation of the framework's eight-tick cycle. The theorem itself, however, only establishes the arithmetic identity; the interpretive claim about valence cost and neutrality is a separate, unformalized hypothesis.

What the theorem does not claim matters as much as what it proves. It does not derive the periodic table's structure from the framework's foundational axioms. The period lengths are inputs, not outputs. It does not prove that the noble gas list is unique, or that no other element could satisfy the neutrality condition. The theorem's scope is narrow: given the hard-coded period lengths, the cumulative sum matches the hard-coded noble gas list. That is a useful consistency check, but it is not an explanation of chemical periodicity.

THEOREM cumulative_closure_eq_noble · IndisputableMonolith/Chemistry/PeriodicTable.lean
cumulative_closure_eq_noble · IndisputableMonolith/Chemistry/PeriodicTable.lean:207
/-- The cumulative closures match the noble gas sequence exactly. -/
theorem cumulative_closure_eq_noble (n : Fin 6) :
    cumulativeShellClosure n.val = nobleGasZ.get ⟨n.val, by simp [nobleGasZ]⟩ := by
  fin_cases n <;> rfl
MODEL periodLengths · IndisputableMonolith/Chemistry/PeriodicTable.lean
/-- Period lengths are forced by the ledger packing constraints.
    The sequence {2, 8, 8, 18, 18, 32, 32} emerges from 2n² with doubling. -/
def periodLengths : List ℕ := [2, 8, 8, 18, 18, 32, 32]
THEOREM cumulative_closure_eq_noble · IndisputableMonolith/Chemistry/PeriodicTable.lean
cumulative_closure_eq_noble · IndisputableMonolith/Chemistry/PeriodicTable.lean:207
/-- The cumulative closures match the noble gas sequence exactly. -/
theorem cumulative_closure_eq_noble (n : Fin 6) :
    cumulativeShellClosure n.val = nobleGasZ.get ⟨n.val, by simp [nobleGasZ]⟩ := by
  fin_cases n <;> rfl

What this page does not claim

The theorem does not derive the periodic table's structure from the framework's foundational axioms. The theorem does not prove that the noble gas list is unique or that no other element satisfies the neutrality condition. The theorem does not predict the existence or properties of any element beyond radon.

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/PeriodicTable.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