Encyclopedia Chemistry Chemistry Electrochemical Series From Phi Ladder Half Cell Category
ARTICLE 4 claims 3 theorems 1 model
Chemistry Electrochemical Series From Phi Ladder Half Cell Category
A five-rung ladder of oxidizing and reducing strength, with each step exactly 1.618 times the last, is the framework's model of the electrochemical series.
Half-cell categories
An electrochemical series ranks substances by their tendency to gain or lose electrons. In the Recognition Science framework, this ranking is modeled by a finite list of five half-cell categories, a discrete record of standard states: strong oxidizing, weak oxidizing, the neutral standard hydrogen electrode reference, weak reducing, and strong reducing. The framework's machine-checked library of formal theorems proves that this list has exactly five members, no more and no fewer.
The model assigns each category a standard reduction potential, a measure of how readily a species accepts electrons, through the formula phi^k, where phi is the golden ratio, about 1.618. The framework proves that the ratio of any potential to the one below it is exactly phi. So the five categories form a geometric ladder: each rung is 1.618 times the strength of the one beneath it, spanning five orders of magnitude in all. It also proves every potential is positive, so the ladder never crosses zero.
The structure bundles these three facts, five categories, the phi ratio, and positivity, into a single certificate. This certificate is a definitional choice, a way of packaging the model, not a claim about measured chemistry. The framework does not assert that real-world electrode potentials follow this ladder exactly. It offers a structural template, a clean five-step progression, that real measurements might be compared against.
What the declaration does not claim is just as important. It does not identify which specific chemical elements or compounds occupy each rung. It does not derive the actual numerical values of any standard reduction potential from first principles. And it does not prove that the electrochemical series must have five categories in nature; it defines a five-category model and proves the internal consistency of that definition.
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
THEOREM potential_pos · IndisputableMonolith/Chemistry/ElectrochemicalSeriesFromPhiLadder.lean
theorem potential_pos (k : ℕ) : 0 < reductionPotential k :=
pow_pos phi_pos k
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
No specific chemical species are assigned to the five rungs. No actual measured reduction potential values are derived. No natural necessity is claimed for the number five.
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:
- Which real electrode potentials, if any, fall on the phi-ladder rungs?
- What physical mechanism, if any, would force a five-category electrochemical series?
- How does the five-rung ladder extend to the full range of known reduction potentials?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM halfCellCategory_count · IndisputableMonolith/Chemistry/ElectrochemicalSeriesFromPhiLadder.lean
theorem halfCellCategory_count : Fintype.card HalfCellCategory = 5 := by decideThe framework's machine-checked library of formal theorems proves that this list has exactly five members, no more and no fewer. halfCellCategory_count · IndisputableMonolith/Chemistry/ElectrochemicalSeriesFromPhiLadder.leanTHEOREM 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] ringThe framework proves that the ratio of any potential to the one below it is exactly phi. potential_ratio · IndisputableMonolith/Chemistry/ElectrochemicalSeriesFromPhiLadder.leanTHEOREM potential_pos · IndisputableMonolith/Chemistry/ElectrochemicalSeriesFromPhiLadder.lean
theorem potential_pos (k : ℕ) : 0 < reductionPotential k := pow_pos phi_pos kIt also proves every potential is positive, so the ladder never crosses zero. potential_pos · IndisputableMonolith/Chemistry/ElectrochemicalSeriesFromPhiLadder.leanMODEL 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 kThis certificate is a definitional choice, a way of packaging the model, not a claim about measured chemistry. ElectrochemicalSeriesCert · IndisputableMonolith/Chemistry/ElectrochemicalSeriesFromPhiLadder.lean