structure
definition
SolvationShellCert
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Chemistry.SolvationShellsFromConfigDim on GitHub at line 40.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
37
38theorem shellRadius_pos (k : ℕ) : 0 < shellRadius k := pow_pos phi_pos k
39
40structure SolvationShellCert where
41 five_shells : Fintype.card SolvationShell = 5
42 phi_ratio : ∀ k, shellRadius (k + 1) / shellRadius k = phi
43 radius_always_pos : ∀ k, 0 < shellRadius k
44
45noncomputable def solvationShellCert : SolvationShellCert where
46 five_shells := solvationShell_count
47 phi_ratio := shellRadius_ratio
48 radius_always_pos := shellRadius_pos
49
50end IndisputableMonolith.Chemistry.SolvationShellsFromConfigDim