Encyclopedia Chemistry Chemistry Bioinorganic From Jcost Bioinorganic3 Cert
ARTICLE 4 claims 4 theorems
Chemistry Bioinorganic From Jcost Bioinorganic3 Cert
A machine-checked certificate about a cost formula proves three general facts about ratios, but says nothing specific about metals or enzymes.
What the certificate proves
Bioinorganic chemistry studies metal ions in living systems, often tucked inside enzymes where they carry out reactions that carbon-based molecules cannot. A metalloenzyme active site typically holds one or a few metal atoms, such as iron, manganese, copper, zinc, or molybdenum. The Recognition Science framework approaches such systems through a cost function, a measure of how expensive it is for the ledger, its discrete record of recognition events, to register a ratio between two quantities.
The declaration Bioinorganic3Cert is a small machine-checked certificate. It packages three proved facts about the cost function J applied to a ratio m/e. First, when m equals e, the cost is zero. Second, for positive m and e, the cost is never negative. Third, the golden ratio phi minus 3/2 is a positive number, roughly 0.118. These are general properties of the cost function, true for any positive real numbers, not special to chemistry.
The framework's machine-checked library of formal theorems proves each of these three facts from the definition of J. The certificate simply bundles them into one structure and shows that this structure exists. It is a way of saying: these three properties hold, and here is the formal proof that they do.
What the certificate does not do is connect those facts to any particular metal or enzyme. The cost function is defined as J(m/e) without saying what m and e mean in bioinorganic terms. A research note in the source file records an intention: that five canonical redox-active metals correspond to five oxidation state recognition axes. That note is a plan, not a result. The formal theorems prove nothing about iron, copper, or any active site.
In Recognition Science, the gap matters. A theorem about a subject requires defining m and e in that subject's own terms. Until someone supplies those definitions, the certificate remains a general statement about ratios, waiting for a chemical interpretation that the formal proofs do not yet supply.
THEOREM domainCost_at_eq · IndisputableMonolith/Chemistry/BioinorganicFromJCost.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 · IndisputableMonolith/Chemistry/BioinorganicFromJCost.lean
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 · IndisputableMonolith/Chemistry/BioinorganicFromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
THEOREM cert_inhabited · IndisputableMonolith/Chemistry/BioinorganicFromJCost.lean
theorem cert_inhabited : Nonempty Bioinorganic3Cert := ⟨cert⟩
What this page does not claim
The certificate does not prove any fact about a specific metal, enzyme, or active site. The research note about five canonical metals is a plan, not a proved result. No claim is made that the cost function has any chemical meaning without a definition of m and e in chemical terms.
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/BioinorganicFromJCost.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 bioinorganic terms would make the cost function a theorem about metalloenzymes?
- Does the proposed mapping from five canonical metals to five oxidation state axes survive a concrete chemical test?
- What would a falsifiable prediction about a specific metalloenzyme look like in this framework?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · IndisputableMonolith/Chemistry/BioinorganicFromJCost.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0When m equals e, the cost is zero. domainCost_at_eq · IndisputableMonolith/Chemistry/BioinorganicFromJCost.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Chemistry/BioinorganicFromJCost.lean
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)For positive m and e, the cost is never negative. domainCost_nonneg · IndisputableMonolith/Chemistry/BioinorganicFromJCost.leanTHEOREM canonicalThreshold_pos · IndisputableMonolith/Chemistry/BioinorganicFromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]The golden ratio phi minus 3/2 is a positive number. canonicalThreshold_pos · IndisputableMonolith/Chemistry/BioinorganicFromJCost.leanTHEOREM cert_inhabited · IndisputableMonolith/Chemistry/BioinorganicFromJCost.lean
theorem cert_inhabited : Nonempty Bioinorganic3Cert := ⟨cert⟩The certificate simply bundles them into one structure and shows that this structure exists. cert_inhabited · IndisputableMonolith/Chemistry/BioinorganicFromJCost.lean