pith. machine review for the scientific record. sign in
structure

SolvationShellCert

definition
show as:
view math explainer →
module
IndisputableMonolith.Chemistry.SolvationShellsFromConfigDim
domain
Chemistry
line
40 · github
papers citing
none yet

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

A cached Ask Recognition explainer exists for this declaration.

open explainer

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