Encyclopedia Chemistry Chemistry Acetic Acid P Ka Rs Acetic Acid Pka Rs
ARTICLE 3 claims 2 theorems 1 model
Chemistry Acetic Acid P Ka Rs Acetic Acid Pka Rs
Acetic acid's pKa is 4.76; a formal library proves only general properties of a cost function, not the chemistry.
The formal core
Acetic acid, the sour component of vinegar, has a pKa of about 4.76 at 25 degrees Celsius. This number measures how readily the molecule donates a proton in water: lower values mean stronger acids. The value 4.76 places acetic acid as a weak acid, between strong mineral acids and the nearly neutral behavior of pure water. Chemists use this constant constantly in buffer calculations, biochemistry, and industrial synthesis.
The Recognition Science framework includes a file named AceticAcidPKaRS. Its formal content, however, does not derive the pKa. The file defines a function called domainCost that takes two real numbers, m and e, and returns Jcost of their ratio. The framework's library proves three general facts about this function: it equals zero when the two inputs are equal, it is never negative for positive inputs, and a certain threshold involving the golden ratio is positive. These are properties of the cost function itself, not of acetic acid.
In Recognition Science, the framework models a ledger, a discrete record of events, where recognition events carry a forced cost. The function Jcost is the unique cost function satisfying five plain conditions, a theorem proved in the library. The acetic acid file applies this general cost to a ratio m over e, but it never defines what m and e mean for acetic acid. The docstring records a research note: phi cubed times 1.12 approximately equals 4.76, matching the pKa to about 12 percent. That note is an observation, not a result.
The structure AceticAcidPKaRS bundles the three proved facts into a single object, and the library shows this object exists. This establishes that the general cost framework is consistent with the three properties, nothing more. The file proves no theorem that connects the cost function to any measured chemical property. The pKa itself remains a measured quantity, not a derived one.
What the declaration does establish is a template. The same three facts appear verbatim in 2383 sibling modules, each applying the cost function to a different subject. The acetic acid file is one instance of a universal pattern, stated once in a central template. To turn this into a theorem about acetic acid, the file would need a definition of m and e in terms of molecular properties, such as proton dissociation energy or solvent interactions. That definition does not exist here.
MODEL domainCost · IndisputableMonolith/Chemistry/Acetic_Acid_pKa_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Chemistry/Acetic_Acid_pKa_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 cert_inhabited · IndisputableMonolith/Chemistry/Acetic_Acid_pKa_RS.lean
theorem cert_inhabited : Nonempty AceticAcidPKaRS := ⟨cert⟩
What this page does not claim
The pKa of acetic acid is not derived from the framework's theorems. The file does not define m and e in terms of any molecular property. The research note's 12 percent match is not a formal result.
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/Acetic_Acid_pKa_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 would a definition of m and e in molecular terms look like for acetic acid?
- Can the cost function Jcost be connected to any measured thermodynamic quantity?
- How many of the 2383 sibling modules define their subject's own m and e?
- Does the 12 percent match between phi cubed and the pKa survive a more precise measurement?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MODEL domainCost · IndisputableMonolith/Chemistry/Acetic_Acid_pKa_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The file defines a function called domainCost that takes two real numbers, m and e, and returns Jcost of their ratio. domainCost · IndisputableMonolith/Chemistry/Acetic_Acid_pKa_RS.leanTHEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Chemistry/Acetic_Acid_pKa_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 framework's library proves three general facts about this function: it equals zero when the two inputs are equal, it is never negative for positive inputs, and a certain threshold involving the golden ratio is positive. domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Chemistry/Acetic_Acid_pKa_RS.leanTHEOREM cert_inhabited · IndisputableMonolith/Chemistry/Acetic_Acid_pKa_RS.lean
theorem cert_inhabited : Nonempty AceticAcidPKaRS := ⟨cert⟩The structure AceticAcidPKaRS bundles the three proved facts into a single object, and the library shows this object exists. cert_inhabited · IndisputableMonolith/Chemistry/Acetic_Acid_pKa_RS.lean