Encyclopedia Materials Materials Thermal Conductivity Regimes From Phi Ladder Thermal Conductivity Regi
ARTICLE 2 claims 2 theorems
Materials Thermal Conductivity Regimes From Phi Ladder Thermal Conductivity Regi
Thermal conductivity in materials is usually a story of many regimes; the framework's machine-checked library counts exactly five canonical ones.
The five regimes
Thermal conductivity, the rate at which heat flows through a material under a temperature gradient, is not a single phenomenon. In different materials and conditions, heat is carried by different mechanisms: atomic vibrations, free electrons, or the boundaries between crystals. Engineers and physicists sort these into regimes, each with its own governing physics and its own practical rules of thumb.
The Recognition Science framework's machine-checked library of formal theorems contains a declaration, thermalConductivityRegime_count, that establishes a precise count: there are exactly five canonical thermal-conductivity regimes. The five are ballistic, diffusive, phonon-dominated, electron-dominated, and interface-limited. The declaration is a theorem, proved by direct computation in the framework's formal system, with zero unproved assumptions. It states that the number of these regimes is five, no more and no less.
The framework also defines a scale for conductivity values, kappa, which assigns to each natural number k a conductivity value phi^k, where phi is the golden ratio. A companion theorem proves that the ratio of adjacent conductivity values is always phi: kappa(k+1)/kappa(k) = phi. This means the five regimes sit on a ladder where each step up multiplies conductivity by the golden ratio, a self-similar scaling that the framework derives elsewhere from its cost function.
What the declaration does not claim is important. It does not claim that real materials exhibit exactly five regimes, nor that measured thermal conductivities in laboratories follow a golden-ratio ladder. It establishes a classification within the framework's own model, a definitional choice about how to organize the physics. The theorem proves the internal consistency of that choice: given the five named regimes, their count is five. The connection between this formal ladder and actual measured thermal conductivities of copper, silicon, or diamond is not established by this declaration; it remains a question for empirical physics, not a theorem of the framework.
THEOREM thermalConductivityRegime_count · IndisputableMonolith/Materials/ThermalConductivityRegimesFromPhiLadder.lean
theorem thermalConductivityRegime_count :
Fintype.card ThermalConductivityRegime = 5 := by decide
THEOREM kappa_ratio · IndisputableMonolith/Materials/ThermalConductivityRegimesFromPhiLadder.lean
theorem kappa_ratio (k : ℕ) : kappa (k + 1) / kappa k = phi := by
unfold kappa
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
The declaration does not claim that real materials exhibit exactly five thermal-conductivity regimes. The declaration does not claim that measured thermal conductivities in laboratories follow a golden-ratio ladder. The declaration does not claim that the five named regimes are the only possible classification of thermal transport.
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/ThermalConductivityRegimesFromPhiLadder.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 physical mechanisms actually dominate thermal conduction in real materials, and how are they measured?
- What experimental evidence, if any, connects measured thermal conductivity ratios to the golden ratio?
- How does the framework derive the golden ratio as a scaling constant from its cost function?
- What distinguishes ballistic from diffusive thermal transport in plain physical terms?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM thermalConductivityRegime_count · IndisputableMonolith/Materials/ThermalConductivityRegimesFromPhiLadder.lean
theorem thermalConductivityRegime_count : Fintype.card ThermalConductivityRegime = 5 := by decideThe declaration establishes that there are exactly five canonical thermal-conductivity regimes: ballistic, diffusive, phonon-dominated, electron-dominated, and interface-limited. thermalConductivityRegime_count · IndisputableMonolith/Materials/ThermalConductivityRegimesFromPhiLadder.leanTHEOREM kappa_ratio · IndisputableMonolith/Materials/ThermalConductivityRegimesFromPhiLadder.lean
theorem kappa_ratio (k : ℕ) : kappa (k + 1) / kappa k = phi := by unfold kappa have hpos : (0 : ℝ) < phi ^ k := pow_pos phi_pos k rw [div_eq_iff hpos.ne', pow_succ] ringA companion theorem proves that the ratio of adjacent conductivity values is always phi: kappa(k+1)/kappa(k) = phi. kappa_ratio · IndisputableMonolith/Materials/ThermalConductivityRegimesFromPhiLadder.lean