Encyclopedia Chemistry Chemistry Electronegativity Group 17 En Order

ARTICLE 3 claims 2 theorems 1 model

Chemistry Electronegativity Group 17 En Order

A machine-checked theorem about shell numbers, not a measurement of electronegativity.

The halogen order

Electronegativity is a chemical property describing how strongly an atom attracts electrons in a bond. The most familiar scale is the Pauling scale, where fluorine is the most electronegative element. Chemists also use the Mulliken scale, which defines electronegativity as proportional to the average of ionization energy and electron affinity, roughly √(IE × EA). Across the halogen group, fluorine, chlorine, bromine, and iodine, electronegativity decreases as atomic number increases.

The declaration group_17_en_order is a theorem in the framework's machine-checked library of formal theorems. It states that the shell number of fluorine (element 9) is less than the shell number of chlorine (element 17), which is less than the shell number of bromine (element 35). In plain language, it establishes that these three halogens occupy successively larger electron shells. The proof is a simple computation: the shell numbers are 2, 3, and 4, and the theorem verifies the ordering 2 < 3 < 4.

In Recognition Science, the framework models electronegativity with a proxy based on distance to closure of an electron shell. The proxy is defined as EN ~ 1 / (distToNextClosure + 1) × (1 / shellNumber). Elements close to completing a small shell score high; fluorine, with seven valence electrons in a shell of length eight, scores 7/8. The theorem group_17_en_order does not compute these scores. It only establishes the shell-number ordering that the proxy relies on.

The theorem does not claim that fluorine is more electronegative than chlorine, or that bromine is less electronegative than chlorine. Those comparisons require additional theorems about the proxy itself, such as fluorine_gt_o which proves fluorine scores above oxygen. The shell-order theorem is a prerequisite, not a conclusion. It also does not measure any experimental value; it is a formal statement about the framework's own definitions of shell numbers.

What the theorem does establish is a structural fact: the halogen trend of decreasing electronegativity down the group is consistent with the framework's shell-based model. Larger shells mean smaller values of 1/shellNumber, which pushes the proxy down. The machine-checked proof confirms the ordering that the chemistry requires, without asserting anything about actual measured electronegativity values.

THEOREM group_17_en_order · IndisputableMonolith/Chemistry/Electronegativity.lean
/-- EN generally decreases down a group (larger shells reduce EN).
    Example: F > Cl in absolute EN (but ranking might be similar). -/
theorem group_17_en_order :
    shellNumber 9 < shellNumber 17 ∧ shellNumber 17 < shellNumber 35 := by
  native_decide
MODEL enProxy · IndisputableMonolith/Chemistry/Electronegativity.lean
/-- Electronegativity proxy based on distance to closure.
    EN ~ 1 / (distToNextClosure + 1) * (1 / shellNumber)
    Elements close to closure in small shells have high EN. -/
def enProxy (Z : ℕ) : ℝ :=
  if Z = 0 then 0
  else if distToNextClosure Z = 0 then 0  -- Noble gases undefined
  else (1 : ℝ) / ((distToNextClosure Z : ℝ) + 1) * (1 / (shellNumber Z : ℝ))
THEOREM group_17_en_order · IndisputableMonolith/Chemistry/Electronegativity.lean
/-- EN generally decreases down a group (larger shells reduce EN).
    Example: F > Cl in absolute EN (but ranking might be similar). -/
theorem group_17_en_order :
    shellNumber 9 < shellNumber 17 ∧ shellNumber 17 < shellNumber 35 := by
  native_decide

What this page does not claim

The theorem does not prove any ordering of electronegativity values among the halogens. The theorem does not measure or cite any experimental electronegativity data. The proxy's definition is a modeling choice, not a derived consequence of the framework's core theorems.

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