Encyclopedia Chemistry Chemistry Solvation Shells From Config Dim Solvation Shell
ARTICLE 3 claims 2 theorems 1 model
Chemistry Solvation Shells From Config Dim Solvation Shell
In chemistry, a solvation shell is the layer of solvent molecules that surrounds a dissolved ion; this framework's model fixes that layering at five distinct shells.
The five-shell model
A solvation shell is the layer of solvent molecules that surrounds a dissolved ion in solution. In water, an ion typically gathers several such layers: a primary hydration shell of water molecules bound directly to the ion, a secondary shell beyond that, and progressively weaker outer layers until the solvent returns to its ordinary bulk structure. Chemists have long described these layers qualitatively; the Recognition Science declaration SolvationShell (a discrete record of five named shells) formalizes the count.
The declaration defines exactly five shells: primary hydration, secondary hydration, tertiary hydration, a bulk-boundary layer, and far bulk. A theorem in the same file proves the count is five by direct computation. The model assigns each shell a radius on a ladder where each step multiplies the previous radius by the golden ratio φ ≈ 1.618, so the shells grow in a fixed geometric progression. The radius is always positive, and the ratio between consecutive radii is exactly φ.
In Recognition Science, this five-shell structure is not an arbitrary choice. The framework derives the number five from its configDim (a configuration dimension that counts the degrees of freedom in a recognition event) and derives the golden ratio from its forcing chain of theorems. The declaration packages these results as a certificate: a machine-checked collection of formal theorems that records the five-shell count, the φ ratio, and the positivity of radii as a single object.
What the declaration does not claim is more important than what it asserts. It does not claim that real water has exactly five measurable shells, nor that the φ ratio matches any laboratory measurement of hydration radii. It establishes a formal model, not an empirical law. The physical question of whether actual ionic solutions exhibit this exact structure remains open, and the declaration makes no prediction about it.
MODEL SolvationShell · IndisputableMonolith/Chemistry/SolvationShellsFromConfigDim.lean
inductive SolvationShell where
| primaryHydration
| secondaryHydration
| tertiaryHydration
| bulkBoundary
| farBulk
deriving DecidableEq, Repr, BEq, Fintype
THEOREM solvationShell_count · IndisputableMonolith/Chemistry/SolvationShellsFromConfigDim.lean
theorem solvationShell_count : Fintype.card SolvationShell = 5 := by decide
THEOREM shellRadius_ratio · IndisputableMonolith/Chemistry/SolvationShellsFromConfigDim.lean
theorem shellRadius_ratio (k : ℕ) : shellRadius (k + 1) / shellRadius k = phi := by
unfold shellRadius
have hpos : (0 : ℝ) < phi ^ k := pow_pos phi_pos k
rw [div_eq_iff hpos.ne', pow_succ]
ring
What this page does not claim
No claim that real water exhibits exactly five measurable solvation shells. No claim that the φ ratio matches any laboratory measurement of hydration radii. No claim that the physical recognition-to-linking bridge that motivates configDim is closed.
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/SolvationShellsFromConfigDim.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:
- What physical evidence, if any, connects the φ-ladder of shell radii to measured hydration distances?
- Does the five-shell count arise uniquely from configDim = 5, or could other configuration dimensions yield the same structure?
- How does the bulk-boundary layer differ operationally from far bulk in a real solution?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MODEL SolvationShell · IndisputableMonolith/Chemistry/SolvationShellsFromConfigDim.lean
inductive SolvationShell where | primaryHydration | secondaryHydration | tertiaryHydration | bulkBoundary | farBulk deriving DecidableEq, Repr, BEq, FintypeThe declaration defines exactly five shells: primary hydration, secondary hydration, tertiary hydration, a bulk-boundary layer, and far bulk. SolvationShell · IndisputableMonolith/Chemistry/SolvationShellsFromConfigDim.leanTHEOREM solvationShell_count · IndisputableMonolith/Chemistry/SolvationShellsFromConfigDim.lean
theorem solvationShell_count : Fintype.card SolvationShell = 5 := by decideA theorem in the same file proves the count is five by direct computation. solvationShell_count · IndisputableMonolith/Chemistry/SolvationShellsFromConfigDim.leanTHEOREM shellRadius_ratio · IndisputableMonolith/Chemistry/SolvationShellsFromConfigDim.lean
theorem shellRadius_ratio (k : ℕ) : shellRadius (k + 1) / shellRadius k = phi := by unfold shellRadius have hpos : (0 : ℝ) < phi ^ k := pow_pos phi_pos k rw [div_eq_iff hpos.ne', pow_succ] ringThe ratio between consecutive radii is exactly φ. shellRadius_ratio · IndisputableMonolith/Chemistry/SolvationShellsFromConfigDim.lean