Encyclopedia Materials Materials Thermal Conductivity3 From Jcost

ARTICLE 4 claims 4 theorems

Materials Thermal Conductivity3 From Jcost

A machine-checked library proves only three general facts about a cost ratio, not the thermal physics its name suggests.

Thermal interface resistance

Thermal interface resistance is the temperature drop per unit heat flow at the boundary between two materials. At metallic interfaces, measured values sit near 10^-8 square meters kelvin per watt. The module materials thermal conductivity3 from jcost in the Recognition Science framework takes its name from a research note about this quantity, which proposed a formula for Kapitza resistance, the thermal resistance at a crystal boundary.

What the machine-checked library of formal theorems actually proves is narrower. It defines a cost function domainCost, a discrete record of mismatch, as Jcost(m/e), where m and e are real numbers. Three facts follow: the cost is zero when m equals e, the cost is nonnegative when both inputs are positive, and a threshold value phi minus 3/2 is positive. These are general properties of the ratio, not statements about any physical material.

The library itself says the module proves nothing specific to thermal conductivity. The research note is a plan, not a result. A theorem about Kapitza resistance would need a definition of m and e in terms of phonon properties and solid density. That definition does not appear in the module.

In Recognition Science, the framework models the cost of recognition as J(x) = (x + 1/x)/2 - 1. The golden ratio phi is the unique self-similar scaling that the framework derives from this cost. The threshold phi minus 3/2 is a positive number, roughly 0.118, which the note intended as a structural marker. The module certifies that this threshold is positive, along with the two cost properties, in a single structure named ThermalInterface3Cert.

The consequence for a reader is clear: the name of a module can promise more than its proof delivers. The framework's library is honest about the gap. The thermal formula remains a research note, and the three proved facts stand as pure mathematics about a ratio, waiting for a physical definition to give them meaning.

THEOREM domainCost_at_eq · IndisputableMonolith/Materials/Thermal_Conductivity3_FromJCost.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by
  unfold domainCost; rw [div_self h]; exact Jcost_unit0
THEOREM domainCost_nonneg · IndisputableMonolith/Materials/Thermal_Conductivity3_FromJCost.lean
theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by
  unfold domainCost; exact Jcost_nonneg (div_pos hm he)
THEOREM canonicalThreshold_pos · IndisputableMonolith/Materials/Thermal_Conductivity3_FromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
  unfold canonicalThreshold; linarith [phi_gt_onePointFive]
THEOREM cert · IndisputableMonolith/Materials/Thermal_Conductivity3_FromJCost.lean
noncomputable def cert : ThermalInterface3Cert where
  cost_at_eq := domainCost_at_eq
  cost_nonneg := domainCost_nonneg
  threshold_pos := canonicalThreshold_pos

What this page does not claim

The module does not prove any formula for thermal conductivity or Kapitza resistance. The research note's proposed formula R_K = J(phi) * tau_phonon / rho_solid is not a theorem. No measured thermal interface value is derived from the cost function in this module.

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/Thermal_Conductivity3_FromJCost.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:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND