Encyclopedia Chemistry Chemistry Solvation Shells From Config Dim Shell Radius Ratio
ARTICLE 3 claims 2 theorems 1 model
Chemistry Solvation Shells From Config Dim Shell Radius Ratio
In water around an ion, the framework's model places successive solvation shells at radii that grow by the golden ratio, a ratio that follows from a proved theorem.
The shell radius ratio
A solvation shell is the layer of water molecules that organizes around an ion dissolved in water. Chemists distinguish several such layers: the primary hydration shell directly touching the ion, then secondary and tertiary shells, then a boundary layer before the bulk water. The framework's model names these five shells explicitly and proves there are exactly five of them, a count that follows from an earlier structural result about the number of configurational dimensions.
What the model adds is a specific geometric rule for the shells' sizes. It defines the radius of the k-th shell as phi raised to the k-th power, where phi is the golden ratio, approximately 1.618. The key theorem, shellRadius_ratio, states that the ratio of any shell's radius to the previous shell's radius is exactly phi. In plain terms, each shell outward is about 1.618 times farther from the ion than the one before it. The proof is short and mechanical: it unfolds the definition and uses the fact that phi^k is positive, so the ratio simplifies to phi.
This is a definitional choice plus a proved consequence of that choice. The radius formula itself is a model, not a measurement. The theorem guarantees that, given the model, the ratio is exactly phi and every radius is positive. It does not claim that real water around a real ion follows this spacing. It does not derive the golden ratio from chemistry; it imports phi from the framework's earlier results and applies it to a chemical picture.
The practical upshot is a clean, testable prediction: if the framework's picture of solvation is right, then shell radii should fall on a phi-ladder. That is a concrete statement a chemist could compare against scattering or simulation data. The theorem itself only certifies the internal consistency of the model, not its 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 theorem does not claim that real water around a real ion follows the phi spacing. It does not derive phi from chemistry; the golden ratio is imported from the framework's earlier results.
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 experimental evidence, if any, supports a phi-spaced ladder of solvation shell radii?
- How does the five-shell count follow from the configurational dimension result?
- Does the phi ratio apply to non-ionic solutes or only to ionic solutes in water?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM solvationShell_count · IndisputableMonolith/Chemistry/SolvationShellsFromConfigDim.lean
theorem solvationShell_count : Fintype.card SolvationShell = 5 := by decidethe framework's model names these five shells explicitly and proves there are exactly five of them 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 of any shell's radius to the previous shell's radius is exactly phi shellRadius_ratio · IndisputableMonolith/Chemistry/SolvationShellsFromConfigDim.leanMODEL shellRadius · IndisputableMonolith/Chemistry/SolvationShellsFromConfigDim.lean
noncomputable def shellRadius (k : ℕ) : ℝ := phi ^ kThe radius formula itself is a model, not a measurement. shellRadius · IndisputableMonolith/Chemistry/SolvationShellsFromConfigDim.lean