Encyclopedia Chemistry Chemistry Water P Kw Rs
ARTICLE 3 claims 2 theorems 1 model
Chemistry Water P Kw Rs
Pure water splits into ions so weakly that the balance is measured on a logarithmic scale, and its value at room temperature is a round 14.
Water's dissociation constant
Pure water conducts electricity only slightly, because a tiny fraction of its molecules split into hydrogen ions (H+) and hydroxide ions (OH-). The equilibrium constant for this self-ionization is written Kw. At 25 degrees Celsius, Kw equals 1.0 x 10^-14. Chemists usually take the negative base-10 logarithm of that number, so pKw = 14. The value is not a law of nature but a measured property of liquid water at a given temperature; it changes with temperature and pressure.
The number 14 has invited numerology. It is close to 2 times phi^5, where phi is the golden ratio (about 1.618), since 2 x 11.09 = 22.18, which is not 14. It is also near a structural guess involving phi and small integers, but none of these patterns is a derivation. The history of the measurement goes back to Friedrich Kohlrausch in the 1870s, who measured the conductivity of very pure water and inferred the ion concentrations. Later work refined the value, and the modern standard comes from careful conductance measurements.
In Recognition Science, the framework models a ledger, a discrete record of recognition events, and assigns a cost to each event. The cost function J is forced by five plain conditions and equals J(x) = (x + 1/x)/2 - 1. The module for water defines a domain cost as J applied to the ratio m/e, where m and e are two positive real numbers. The machine-checked library of formal theorems proves three general facts about this cost: it vanishes when m equals e, it is never negative for positive inputs, and a threshold constant phi - 3/2 is positive.
What the module does not do is connect those numbers to water. The definition of domainCost uses Jcost (m / e) without saying what m and e mean for water. The docstring itself states this plainly: the Lean code proves nothing specific to this subject. A theorem about water would require defining m and e in water's own terms, for instance as concentrations or as the ratio of two rate constants. The paragraph in the source that mentions pKw = 14 and phi is a research note recording where the idea was meant to go, not a result.
The practical lesson for a reader is to separate the proved from the hoped. The general cost facts are proved. The application to water is open. If someone wants to claim that Recognition Science derives pKw = 14, they need a definition of m and e that comes from water chemistry, not a generic ratio. Until then, the module is a template instantiated for water, sharing its body with 2383 sibling modules, and the chemistry content is a placeholder.
MODEL domainCost · IndisputableMonolith/Chemistry/Water_pKw_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Chemistry/Water_pKw_RS.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by
unfold domainCost; rw [div_self h]; exact Jcost_unit0
theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by
unfold domainCost; exact Jcost_nonneg (div_pos hm he)
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
THEOREM domainCost · IndisputableMonolith/Chemistry/Water_pKw_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
What this page does not claim
Recognition Science derives pKw = 14. The golden ratio or phi appears in a derived water property. The module establishes any chemical fact about water.
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/Water_pKw_RS.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 quantities in water chemistry could serve as the m and e of the cost function?
- Does any measured property of water, such as pKw, match a value forced by the cost function?
- How does the temperature dependence of pKw relate to the framework's constants?
- What distinguishes a module that is a theorem about its subject from one that is a template?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MODEL domainCost · IndisputableMonolith/Chemistry/Water_pKw_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The module for water defines a domain cost as J applied to the ratio m/e, where m and e are two positive real numbers. domainCost · IndisputableMonolith/Chemistry/Water_pKw_RS.leanTHEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Chemistry/Water_pKw_RS.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by unfold domainCost; exact Jcost_nonneg (div_pos hm he)theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]The machine-checked library of formal theorems proves three general facts about this cost: it vanishes when m equals e, it is never negative for positive inputs, and a threshold constant phi - 3/2 is positive. domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Chemistry/Water_pKw_RS.leanTHEOREM domainCost · IndisputableMonolith/Chemistry/Water_pKw_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The module proves nothing specific to this subject, because domainCost is defined as Jcost (m / e) without reference to one. domainCost · IndisputableMonolith/Chemistry/Water_pKw_RS.lean