Encyclopedia Materials Materials Battery Chemistry From Phi Ladder Density Pos
ARTICLE 4 claims 3 theorems 1 model
Materials Battery Chemistry From Phi Ladder Density Pos
A machine-checked theorem says that in one formal model of battery chemistry, energy density is always positive; it does not say real batteries work that way.
What density_pos proves
In mathematics and physics, a density is an amount of something per unit of volume, mass, or length. For a battery, energy density is how much electrical energy a cell can store per unit of mass or volume. The declaration density_pos is a formal statement inside a machine-checked library of theorems. It proves that a particular function, called energyDensity, always returns a positive real number for every natural number input. That function is defined as phi raised to the power k, where phi is the golden ratio, about 1.618. So the theorem says: for every whole number k, phi^k is greater than zero.
The proof is short and relies on a standard fact: a positive number raised to any power is still positive. Since phi is positive, phi^k is positive for all k. The library checks this argument with a computer, so the theorem carries no unproved assumptions beyond the usual logical axioms. The declaration also appears inside a larger structure called BatteryChemistryCert, which bundles three facts: there are five battery chemistries, adjacent energy densities have ratio phi, and all densities are positive. The positivity theorem is one of those three certified facts.
In Recognition Science, the framework models battery chemistry as five canonical families: lead-acid, nickel-cadmium, nickel-metal-hydride, lithium-ion, and solid-state. The framework defines energy density as phi^k and proves that adjacent families differ by a factor of phi. That ratio is a formal consequence of the framework's forcing chain, not a measured property of real cells. The positivity theorem is a technical guarantee that the model's density values never go negative, which keeps the formal arithmetic consistent.
What the theorem does not claim is any empirical content. It says nothing about actual battery measurements, real energy densities in watt-hours per kilogram, or whether the five named chemistries really follow a golden-ratio ladder. The theorem only holds within the formal model where energy density is defined as phi^k. It does not predict the performance of a lithium-ion cell or compare it with a lead-acid cell. The five chemistries are a definitional choice in the framework, not a measured classification.
The practical consequence is modest but real: within the framework's model, the density ladder is mathematically safe. No division by zero or negative density can arise in the formal reasoning. That lets later theorems rely on positivity without adding extra conditions. For a reader outside the framework, the declaration is a small example of how a formal proof can certify a simple inequality, and a reminder that a proof about a model is not a measurement of the world.
THEOREM density_pos · IndisputableMonolith/Materials/BatteryChemistryFromPhiLadder.lean
theorem density_pos (k : ℕ) : 0 < energyDensity k := pow_pos phi_pos k
THEOREM density_pos · IndisputableMonolith/Materials/BatteryChemistryFromPhiLadder.lean
theorem density_pos (k : ℕ) : 0 < energyDensity k := pow_pos phi_pos k
MODEL BatteryChemistry · IndisputableMonolith/Materials/BatteryChemistryFromPhiLadder.lean
inductive BatteryChemistry where
| leadAcid
| nickelCadmium
| nickelMetalHydride
| lithiumIon
| solidState
deriving DecidableEq, Repr, BEq, Fintype
THEOREM density_ratio · IndisputableMonolith/Materials/BatteryChemistryFromPhiLadder.lean
theorem density_ratio (k : ℕ) :
energyDensity (k + 1) / energyDensity k = phi := by
unfold energyDensity
have hpos : (0 : ℝ) < phi ^ k := pow_pos phi_pos k
rw [div_eq_iff hpos.ne', pow_succ]
ring
What this page does not claim
No real battery has been measured to follow the phi-ladder. The five chemistries are a definitional choice, not an empirical classification. The theorem says nothing about actual energy density values in watt-hours per kilogram.
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/Materials/BatteryChemistryFromPhiLadder.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:
- How does the framework derive the five battery chemistries from the forcing chain?
- What measured evidence, if any, supports the golden-ratio ladder for real battery energy densities?
- What does the framework's energy density function mean physically, if anything?
- How does the positivity theorem interact with other theorems in the materials library?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM density_pos · IndisputableMonolith/Materials/BatteryChemistryFromPhiLadder.lean
theorem density_pos (k : ℕ) : 0 < energyDensity k := pow_pos phi_pos kThe declaration density_pos proves that for every natural number k, phi^k is greater than zero. density_pos · IndisputableMonolith/Materials/BatteryChemistryFromPhiLadder.leanTHEOREM density_pos · IndisputableMonolith/Materials/BatteryChemistryFromPhiLadder.lean
theorem density_pos (k : ℕ) : 0 < energyDensity k := pow_pos phi_pos kThe proof relies on the fact that a positive number raised to any power is still positive. density_pos · IndisputableMonolith/Materials/BatteryChemistryFromPhiLadder.leanMODEL BatteryChemistry · IndisputableMonolith/Materials/BatteryChemistryFromPhiLadder.lean
inductive BatteryChemistry where | leadAcid | nickelCadmium | nickelMetalHydride | lithiumIon | solidState deriving DecidableEq, Repr, BEq, FintypeThe framework models battery chemistry as five canonical families. BatteryChemistry · IndisputableMonolith/Materials/BatteryChemistryFromPhiLadder.leanTHEOREM density_ratio · IndisputableMonolith/Materials/BatteryChemistryFromPhiLadder.lean
theorem density_ratio (k : ℕ) : energyDensity (k + 1) / energyDensity k = phi := by unfold energyDensity have hpos : (0 : ℝ) < phi ^ k := pow_pos phi_pos k rw [div_eq_iff hpos.ne', pow_succ] ringAdjacent energy densities in the model differ by a factor of phi. density_ratio · IndisputableMonolith/Materials/BatteryChemistryFromPhiLadder.lean