Encyclopedia Chemistry Chemistry Solvation Shells From Config Dim Solvation Shell Cert
ARTICLE 3 claims 2 theorems 1 model
Chemistry Solvation Shells From Config Dim Solvation Shell Cert
A machine-checked certificate that names five concentric water layers around an ion and ties their radii to the golden ratio.
The certification structure
When an ion dissolves in water, solvent molecules arrange themselves in roughly concentric layers. Chemists call these layers solvation shells: a first ring of water tightly bound to the ion, a second looser ring beyond it, and so on outward until the water behaves like ordinary bulk liquid. The exact number of distinguishable shells is a modeling choice, not a fixed law of nature; different solutes and different definitions give different counts.
In Recognition Science, the framework's machine-checked library of formal theorems defines a structure called SolvationShellCert that fixes one particular choice: exactly five shells, named primary hydration, secondary hydration, tertiary hydration, bulk-boundary layer, and far bulk. The certificate proves three facts about this model. First, the count is exactly five. Second, the radius of each successive shell is the previous radius multiplied by phi, the golden ratio, approximately 1.618. Third, every shell radius is positive, so the layers are ordered outward with no shell collapsing to zero size.
The radius rule is the distinctive claim. The certificate states that shellRadius (k + 1) / shellRadius k = phi for every integer k, meaning the spacing between adjacent shells follows a constant geometric ratio. This is a theorem within the framework: given the framework's definition of shell radius as phi raised to the power k, the ratio follows by algebra. The definition of shellRadius itself, however, is a modeling assumption, not a derived physical law.
In Recognition Science, the framework models the number of solvation shells as the configurational dimension D = 5, connecting this chemistry structure to the framework's broader claim that physical structure follows from a discrete recognition ledger. The certificate bundles the five-shell count, the phi ratio, and the positivity condition into a single object that the library can check mechanically. The proof is complete in the formal sense: the source file reports zero unfinished proofs and zero axioms beyond the standard logical kernel.
What the certificate does not do is predict the shell count from first principles. It does not derive five shells from the properties of water or from ion size; it chooses five and then proves the consequences of that choice. The phi ratio is likewise imposed by the definition of shellRadius, not derived from intermolecular forces. A chemist measuring real solvation shells would find the golden ratio spacing only if the underlying model already assumed it. The certificate guarantees internal consistency, not agreement with experiment.
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
MODEL shellRadius · IndisputableMonolith/Chemistry/SolvationShellsFromConfigDim.lean
noncomputable def shellRadius (k : ℕ) : ℝ := phi ^ k
What this page does not claim
The certificate does not derive the five-shell count from water's physical properties. The certificate does not predict that real solvation shells obey golden-ratio spacing. The certificate does not claim that five shells is the only possible solvation model.
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:
- How does the framework derive the configurational dimension D = 5 from the recognition ledger?
- What experimental evidence, if any, supports a golden-ratio spacing between real solvation shells?
- How does the framework connect its shell count to the three spatial dimensions forced by its linking theorem?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM solvationShell_count · IndisputableMonolith/Chemistry/SolvationShellsFromConfigDim.lean
theorem solvationShell_count : Fintype.card SolvationShell = 5 := by decideThe certificate proves that the number of solvation shells is exactly five. 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 certificate proves that each successive shell radius is the previous one multiplied by phi, the golden ratio. shellRadius_ratio · IndisputableMonolith/Chemistry/SolvationShellsFromConfigDim.leanMODEL shellRadius · IndisputableMonolith/Chemistry/SolvationShellsFromConfigDim.lean
noncomputable def shellRadius (k : ℕ) : ℝ := phi ^ kThe definition of shell radius as phi raised to the power k is a modeling assumption, not a derived physical law. shellRadius · IndisputableMonolith/Chemistry/SolvationShellsFromConfigDim.lean