Encyclopedia Chemistry Chemistry Oxidation Reduction Potential From Jcost
ARTICLE 4 claims 3 theorems 1 model
Chemistry Oxidation Reduction Potential From Jcost
A machine-checked library shows that a single cost function, the same one that forces the golden ratio, also places a floor under every redox reaction.
Redox potential and the cost ledger
An oxidation-reduction (redox) potential measures how strongly a chemical species pulls electrons. Standard tables list these potentials in volts, from lithium, which gives up electrons at -3.04 V, to fluorine, which grabs them at +2.87 V. The gap between those extremes is about 6 volts, a span that chemists use to predict which reactions will run spontaneously.
In Recognition Science, a ledger, a discrete record of events, keeps track of every recognition event, and the cost, the forced price of recording that event, obeys a fixed mathematical form. The framework's library, a machine-checked collection of formal theorems, defines the cost of a redox pair as J(measured / expected), where J(x) = (x + 1/x)/2 - 1. This function vanishes when measured equals expected, stays nonnegative for positive inputs, and has a positive threshold at phi - 3/2, where phi is the golden ratio.
The library proves three facts about this cost. First, at equilibrium, when the measured potential equals the expected one, the cost is exactly zero. Second, the cost is never negative when both potentials are positive. Third, the threshold phi - 3/2 is strictly positive. These are general properties of the cost function, not specific electrochemical results, because the module defines the ratio m/e without tying m and e to any particular chemical species.
The research note attached to the module observes that the 6-volt span of standard reduction potentials approximates phi^5 times a reference voltage, with phi^5 about 11.09 half-steps times 0.543 V. This observation is a hypothesis, not a theorem. What the module actually establishes is narrower: the cost function that governs recognition events also constrains any redox comparison, placing a formal floor under the chemistry.
The consequence for a reader is a way to see redox tables as instances of a single cost law. The framework does not derive the voltage of lithium or fluorine; it shows that the same function which forces the golden ratio also forces a nonnegative, equilibrium-vanishing cost on every measured-to-expected ratio in electrochemistry.
MODEL domainCost · IndisputableMonolith/Chemistry/OxidationReductionPotentialFromJCost.lean
def domainCost (measured expected : ℝ) : ℝ := Jcost (measured / expected)
THEOREM domainCost_at_equilibrium · IndisputableMonolith/Chemistry/OxidationReductionPotentialFromJCost.lean
theorem domainCost_at_equilibrium (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by
unfold domainCost; rw [div_self h]; exact Jcost_unit0
THEOREM domainCost_nonneg · IndisputableMonolith/Chemistry/OxidationReductionPotentialFromJCost.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/OxidationReductionPotentialFromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
What this page does not claim
This module derives the standard reduction potential of any specific chemical species. The 6-volt span matching phi^5 times a reference is a proved theorem; it is a research note. The cost function is not claimed to be the only possible measure of redox favorability.
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/OxidationReductionPotentialFromJCost.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 electrochemical terms would turn this cost template into a theorem about specific redox couples?
- Does the phi^5 spacing between lithium and fluorine hold for other pairs of standard potentials, or is it a coincidence for the extremes?
- How does the cost function's threshold relate to the activation energy of an electron transfer reaction?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MODEL domainCost · IndisputableMonolith/Chemistry/OxidationReductionPotentialFromJCost.lean
def domainCost (measured expected : ℝ) : ℝ := Jcost (measured / expected)The framework's library defines the cost of a redox pair as J(measured / expected), where J(x) = (x + 1/x)/2 - 1. domainCost · IndisputableMonolith/Chemistry/OxidationReductionPotentialFromJCost.leanTHEOREM domainCost_at_equilibrium · IndisputableMonolith/Chemistry/OxidationReductionPotentialFromJCost.lean
theorem domainCost_at_equilibrium (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0The library proves that the cost is exactly zero when measured equals expected. domainCost_at_equilibrium · IndisputableMonolith/Chemistry/OxidationReductionPotentialFromJCost.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Chemistry/OxidationReductionPotentialFromJCost.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)The library proves that the cost is never negative when both potentials are positive. domainCost_nonneg · IndisputableMonolith/Chemistry/OxidationReductionPotentialFromJCost.leanTHEOREM canonicalThreshold_pos · IndisputableMonolith/Chemistry/OxidationReductionPotentialFromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]The library proves that the threshold phi - 3/2 is strictly positive. canonicalThreshold_pos · IndisputableMonolith/Chemistry/OxidationReductionPotentialFromJCost.lean