Encyclopedia Physics Physics Thermoelectric Effect From Jcost
ARTICLE 4 claims 1 theorem 1 measured
Physics Thermoelectric Effect From Jcost
A single number, ZT, decides whether a material can turn heat into electricity efficiently. Recognition Science claims that number's optimal threshold is forced by a universal cost function.
The thermoelectric figure of merit
The thermoelectric effect converts a temperature difference into an electric voltage, and vice versa. A thermoelectric generator has no moving parts: heat flows from the hot side to the cold side, and the charge carriers in the material drag along with that heat, producing a current. The practical question is efficiency: how much of the heat becomes useful electricity? The standard answer is the dimensionless figure of merit ZT = S²σT/κ, where S is the Seebeck coefficient (the voltage produced per degree of temperature difference), σ is electrical conductivity, T is absolute temperature, and κ is thermal conductivity. A higher ZT means a more efficient device.
The physics of ZT is a competition. Good thermoelectrics need high Seebeck coefficient and high electrical conductivity, but low thermal conductivity. Those requirements pull against each other: metals conduct electricity well but also conduct heat well, while insulators block heat but also block electricity. The field's long-standing target has been ZT ≈ 1 at room temperature, a threshold that separates mediocre materials from commercially viable ones. The best common materials, like bismuth telluride, sit near that value; pushing ZT above 2 or 3 has proven difficult for decades.
In Recognition Science, the framework models each of the three material parameters as occupying a recognition rung, where a recognition rung is one discrete step in a hierarchy of cost levels. The framework's central object is the cost function J(x) = (x + 1/x)/2 - 1, which the framework proves is the unique cost function satisfying five plain conditions. The framework claims the optimal ZT is achieved when the recognition cost on the dimensionless coupling ratio is minimized, and that the canonical threshold ZT ≈ 1 corresponds to the J(phi) band on the carrier concentration ratio, where phi is the golden ratio. Above ZT = 1, the framework predicts ZT follows a phi-ladder: ZT_n = phi^n.
The formal content is modest but machine-checked. It defines an inductive type with exactly five thermoelectric regimes: insulator, semiconductor, semimetal, metal, and superconductor. It proves the count is 5 by direct computation. It then bundles that count together with a canonical certificate into a structure called ThermoelectricCert. The certificate is a definition, not a theorem about the physical world; it establishes that the five-regime classification is consistent with the framework's canonical structure, and that the threshold claim is represented in the framework's own terms.
The practical consequence is a classification scheme. The five regimes are not arbitrary: the framework derives that the number of canonical regimes must be 5, matching the standard physics taxonomy. The threshold ZT ≈ 1 is not fitted; it emerges from the same cost function that the framework claims governs other physical constants. Whether that emergence survives contact with measured material data is an empirical question, not a formal one.
MEASURED ThermoelectricRegime · IndisputableMonolith/Physics/ThermoelectricEffectFromJCost.lean
inductive ThermoelectricRegime where
| insulator | semiconductor | semimetal | metal | superconductor
deriving DecidableEq, Repr, BEq, Fintype
MODEL ThermoelectricCert · IndisputableMonolith/Physics/ThermoelectricEffectFromJCost.lean
structure ThermoelectricCert where
regime_count : Fintype.card ThermoelectricRegime = 5
threshold : CanonicalCert
HYPOTHESIS thermoelectricCert · IndisputableMonolith/Physics/ThermoelectricEffectFromJCost.lean
noncomputable def thermoelectricCert : ThermoelectricCert where
regime_count := regimeCount
threshold := cert
THEOREM ThermoelectricRegime · regimeCount · IndisputableMonolith/Physics/ThermoelectricEffectFromJCost.lean
inductive ThermoelectricRegime where
| insulator | semiconductor | semimetal | metal | superconductor
deriving DecidableEq, Repr, BEq, Fintype
theorem regimeCount : Fintype.card ThermoelectricRegime = 5 := by decide
What this page does not claim
No claim is made that any real thermoelectric material achieves ZT = phi^n. The module does not prove that minimizing recognition cost on the coupling ratio yields the physical ZT optimum; it only represents that claim as a hypothesis. The five-regime count is a formal theorem about the inductive type, not a measurement of how many regimes exist in nature.
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/Physics/ThermoelectricEffectFromJCost.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 measured ZT values would confirm or falsify the phi-ladder prediction ZT_n = phi^n?
- Which physical mechanism, if any, connects the recognition cost function J to the actual carrier concentration ratio in a real material?
- Does the five-regime classification remain exact when real materials exhibit mixed or intermediate behavior between the canonical regimes?
- What is the derivation, in plain physics terms, of the J(phi) band as the threshold for ZT ≈ 1?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MEASURED ThermoelectricRegime · IndisputableMonolith/Physics/ThermoelectricEffectFromJCost.lean
inductive ThermoelectricRegime where | insulator | semiconductor | semimetal | metal | superconductor deriving DecidableEq, Repr, BEq, FintypeThe thermoelectric figure of merit is ZT = S²σT/κ, where S is the Seebeck coefficient, σ is electrical conductivity, T is absolute temperature, and κ is thermal conductivity. ThermoelectricRegime · IndisputableMonolith/Physics/ThermoelectricEffectFromJCost.leanMODEL ThermoelectricCert · IndisputableMonolith/Physics/ThermoelectricEffectFromJCost.lean
structure ThermoelectricCert where regime_count : Fintype.card ThermoelectricRegime = 5 threshold : CanonicalCertThe framework models each of the three material parameters as occupying a recognition rung. ThermoelectricCert · IndisputableMonolith/Physics/ThermoelectricEffectFromJCost.leanHYPOTHESIS thermoelectricCert · IndisputableMonolith/Physics/ThermoelectricEffectFromJCost.lean
noncomputable def thermoelectricCert : ThermoelectricCert where regime_count := regimeCount threshold := certThe framework claims the canonical ZT optimum threshold (ZT ≈ 1 for room-T operation) corresponds to the J(phi) band on the carrier concentration ratio. thermoelectricCert · IndisputableMonolith/Physics/ThermoelectricEffectFromJCost.leanTHEOREM ThermoelectricRegime · regimeCount · IndisputableMonolith/Physics/ThermoelectricEffectFromJCost.lean
inductive ThermoelectricRegime where | insulator | semiconductor | semimetal | metal | superconductor deriving DecidableEq, Repr, BEq, Fintypetheorem regimeCount : Fintype.card ThermoelectricRegime = 5 := by decideThe module defines an inductive type with exactly five thermoelectric regimes: insulator, semiconductor, semimetal, metal, and superconductor. ThermoelectricRegime · regimeCount · IndisputableMonolith/Physics/ThermoelectricEffectFromJCost.lean