Encyclopedia Chemistry Chemistry Catalysis Kinetics From Jcost
ARTICLE 2 claims 2 theorems
Chemistry Catalysis Kinetics From Jcost
A machine-checked library proves three basic facts about a cost ratio, but the link to enzyme kinetics remains a research note, not a theorem.
The formal core
Enzyme kinetics describes how fast a reaction proceeds when a catalyst is present. The classic Michaelis-Menten equation, v = V_max × [S]/(K_m + [S]), gives the reaction velocity v as a function of substrate concentration [S], with V_max the maximum velocity and K_m the substrate concentration at half-maximum. At the special point where [S] equals K_m × φ (with φ the golden ratio, about 1.618), the equation simplifies to v = V_max × (1 - 1/φ²), a value that also equals V_max times the square root of the framework's cost function J evaluated at φ.
In Recognition Science, the framework models a ledger, a discrete record of recognition events, with a forced cost function J(x) = (x + 1/x)/2 - 1. The module under discussion defines a domain cost as J applied to the ratio m/e, where m and e are 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 the threshold φ - 3/2 is positive. These facts hold for any positive inputs whatsoever; they do not reference enzymes, substrates, or catalysis.
What the formal proof establishes is therefore purely arithmetic. The cost is zero at equality, nonnegative everywhere, and has a positive threshold constant. The Michaelis-Menten connection appears only in a research note attached to the module, recording where the idea was meant to go. The note states that a definition of m and e in the subject's own terms would turn the module into a theorem about enzyme kinetics, but that definition is absent. The module as written proves nothing specific to chemistry.
In Recognition Science, the framework proves the uniqueness of J from five plain conditions, and derives the golden ratio as a self-similar scaling. The chemistry module applies that cost to a ratio and checks basic properties. The honest summary: the formal content is a small, correct exercise in the cost function, and the enzyme kinetics reading is an aspiration, not an achievement.
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Chemistry/CatalysisKineticsFromJCost.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/CatalysisKineticsFromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
What this page does not claim
The Michaelis-Menten equation is not derived from J in this module. No claim that enzyme kinetics follows from the cost function is proved. The golden-ratio simplification at [S] = K_m × φ is a research note, 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/CatalysisKineticsFromJCost.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 definition of m and e in enzyme kinetics would make the domain cost a theorem about Michaelis-Menten saturation?
- Does the cost J applied to a substrate-enzyme ratio have any operational meaning for reaction rates beyond the algebraic identities?
- How does the threshold φ - 3/2 relate to a measurable kinetic parameter such as K_m?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Chemistry/CatalysisKineticsFromJCost.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 the threshold φ - 3/2 is positive. domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Chemistry/CatalysisKineticsFromJCost.leanTHEOREM domainCost · IndisputableMonolith/Chemistry/CatalysisKineticsFromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The module as written proves nothing specific to chemistry. domainCost · IndisputableMonolith/Chemistry/CatalysisKineticsFromJCost.lean