Encyclopedia Chemistry Chemistry Electrochemical Series From Phi Ladder Half Cell Category Count

ARTICLE 3 claims 2 theorems 1 model

Chemistry Electrochemical Series From Phi Ladder Half Cell Category Count

A machine-checked theorem counts five standard half-cell categories, from strong oxidizing to strong reducing, as the basis for an electrochemical series.

The five half-cell categories

An electrochemical series ranks chemical species by their standard reduction potential, the voltage at which a half-cell gains electrons under standard conditions. The familiar reference point is the standard hydrogen electrode (SHE), set at zero volts. Around that reference, chemists commonly group half-cells into five practical categories: strong oxidizing agents, weak oxidizing agents, the neutral SHE reference itself, weak reducing agents, and strong reducing agents.

In the Recognition Science framework, these five categories are formalized as an inductive type named HalfCellCategory, with exactly one constructor for each category. The theorem halfCellCategory_count proves, by direct computation, that the number of distinct categories is five. The proof is a simple case check: the machine evaluates all possible constructors and confirms the count. This is a formal statement about the definition chosen, not a discovery about chemistry in the world.

The framework also defines a reduction potential function that assigns to each natural number k the value phi^k, where phi is the golden ratio, approximately 1.618. A companion theorem proves that the ratio of successive potentials is exactly phi: reductionPotential (k+1) / reductionPotential k = phi. This means the potentials form a geometric ladder with the golden ratio as the step multiplier. The framework models the five categories as occupying five rungs on this ladder, spanning five orders of magnitude under its canonical rescaling.

In Recognition Science, the golden ratio emerges from a proved forcing chain: any cost function satisfying five plain conditions must equal J(x) = (x + 1/x)/2 - 1, and from that function the framework derives phi as the unique self-similar scaling. The electrochemical series is presented as one application of this structure. The formal library contains a certificate structure, ElectrochemicalSeriesCert, that bundles the five-category count, the phi ratio, and the positivity of potentials into a single object, all checked with zero axioms beyond the standard three.

What the declaration does not claim is important. It does not assert that real measured electrode potentials in a chemistry laboratory follow this exact phi ladder. The measured values are an empirical check, not a theorem. The framework's claim is about its own model: given the five-category definition and the phi-based potential function, the count and the ratio follow by computation. Whether that model captures actual electrochemical behavior is a separate question, one the formal proof does not address.

THEOREM halfCellCategory_count · IndisputableMonolith/Chemistry/ElectrochemicalSeriesFromPhiLadder.lean
theorem halfCellCategory_count :
    Fintype.card HalfCellCategory = 5 := by decide
THEOREM potential_ratio · IndisputableMonolith/Chemistry/ElectrochemicalSeriesFromPhiLadder.lean
theorem potential_ratio (k : ℕ) :
    reductionPotential (k + 1) / reductionPotential k = phi := by
  unfold reductionPotential
  have hpos : (0 : ℝ) < phi ^ k := pow_pos phi_pos k
  rw [div_eq_iff hpos.ne', pow_succ]
  ring
MODEL ElectrochemicalSeriesCert · IndisputableMonolith/Chemistry/ElectrochemicalSeriesFromPhiLadder.lean
structure ElectrochemicalSeriesCert where
  five_categories : Fintype.card HalfCellCategory = 5
  phi_ratio : ∀ k, reductionPotential (k + 1) / reductionPotential k = phi
  potential_always_pos : ∀ k, 0 < reductionPotential k

What this page does not claim

The theorem does not assert that real measured electrode potentials follow the phi ladder exactly. The five categories are a definitional choice, not a derivation from first principles of chemistry. The framework does not claim to predict new electrochemical behavior beyond its own model.

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/ElectrochemicalSeriesFromPhiLadder.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:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND