Encyclopedia Materials Materials Thermal Conductivity Regimes From Phi Ladder
ARTICLE 4 claims 3 theorems 1 model
Materials Thermal Conductivity Regimes From Phi Ladder
Materials move heat in five distinct ways; Recognition Science orders them on a ladder where each step multiplies conductivity by the golden ratio.
Conductivity regimes and the golden ratio
Thermal conductivity measures how readily heat flows through a material. Engineers distinguish five canonical regimes: ballistic, where heat carriers travel without scattering; diffusive, where they scatter randomly; phonon-dominated, where lattice vibrations carry the heat; electron-dominated, where free electrons do the work; and interface-limited, where boundaries between materials control the flow. Each regime has its own physics, and real materials often sit in one regime or another depending on temperature, purity, and structure.
The classical picture treats these five regimes as separate phenomena with different equations. Recognition Science offers a unifying order. The framework defines a ladder of conductivity values, one rung per regime, where each rung is a power of the golden ratio φ ≈ 1.618. The key relation: the conductivity at rung k+1 divided by the conductivity at rung k equals φ exactly. So the five regimes are not arbitrary; they are equally spaced on a logarithmic scale with ratio φ between neighbors.
In Recognition Science, the ledger (a discrete record of recognition events) forces a specific cost function, and from that cost function the golden ratio emerges as the unique self-similar scaling. The thermal conductivity module applies this scaling to materials science. It defines the five regimes as a finite set, proves there are exactly five, and proves the ratio law between adjacent rungs. The module also certifies that all conductivity values are positive, which matches the physical requirement that conductivity is always a positive quantity.
The machine-checked library of formal theorems establishes these facts with zero unproved assumptions. The five-regime count, the φ ratio, and the positivity are all verified by the kernel. This means the ordering of thermal regimes on a φ-ladder is not a hand-wave or a numerical coincidence; it is a derived consequence of the framework's foundational structure. The payoff: a single number, φ, organizes the spacing of five distinct physical regimes, turning a list of separate phenomena into one coherent ladder.
MODEL ThermalConductivityRegime · IndisputableMonolith/Materials/ThermalConductivityRegimesFromPhiLadder.lean
inductive ThermalConductivityRegime where
| ballistic
| diffusive
| phononDominated
| electronDominated
| interfaceLimited
deriving DecidableEq, Repr, BEq, Fintype
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
THEOREM thermalConductivityRegime_count · IndisputableMonolith/Materials/ThermalConductivityRegimesFromPhiLadder.lean
theorem thermalConductivityRegime_count :
Fintype.card ThermalConductivityRegime = 5 := by decide
THEOREM kappa_pos · IndisputableMonolith/Materials/ThermalConductivityRegimesFromPhiLadder.lean
theorem kappa_pos (k : ℕ) : 0 < kappa k := pow_pos phi_pos k
What this page does not claim
No claim that any real material's measured conductivity ratio equals φ exactly. No claim that the five regimes are the only possible thermal transport regimes in conventional physics. No derivation of the absolute conductivity value for any specific material.
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 materials actually realize each of the five conductivity regimes?
- How does the φ-ladder spacing compare with measured conductivity ratios between regimes in real materials?
- What temperature or purity conditions move a material from one regime to the next?
- Does the same φ-ladder ordering apply to other transport properties, such as electrical conductivity?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MODEL ThermalConductivityRegime · IndisputableMonolith/Materials/ThermalConductivityRegimesFromPhiLadder.lean
inductive ThermalConductivityRegime where | ballistic | diffusive | phononDominated | electronDominated | interfaceLimited deriving DecidableEq, Repr, BEq, FintypeThe framework defines five canonical thermal-conductivity regimes: ballistic, diffusive, phonon-dominated, electron-dominated, and interface-limited. ThermalConductivityRegime · 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] ringThe conductivity at rung k+1 divided by the conductivity at rung k equals φ exactly. kappa_ratio · IndisputableMonolith/Materials/ThermalConductivityRegimesFromPhiLadder.leanTHEOREM thermalConductivityRegime_count · IndisputableMonolith/Materials/ThermalConductivityRegimesFromPhiLadder.lean
theorem thermalConductivityRegime_count : Fintype.card ThermalConductivityRegime = 5 := by decideThe module proves there are exactly five thermal-conductivity regimes. thermalConductivityRegime_count · IndisputableMonolith/Materials/ThermalConductivityRegimesFromPhiLadder.leanTHEOREM kappa_pos · IndisputableMonolith/Materials/ThermalConductivityRegimesFromPhiLadder.lean
theorem kappa_pos (k : ℕ) : 0 < kappa k := pow_pos phi_pos kThe module certifies that all conductivity values are positive. kappa_pos · IndisputableMonolith/Materials/ThermalConductivityRegimesFromPhiLadder.lean