Encyclopedia Physics Physics Superfluid Transition From Jcost
ARTICLE 3 claims 2 theorems 1 hypothesis
Physics Superfluid Transition From Jcost
Helium-4 becomes a superfluid at 2.17 K, a phase change that the Recognition Science framework models as the point where a recognition cost reaches its minimum.
The lambda transition and its cost
Helium-4, cooled below 2.17 kelvin at ordinary pressure, turns into a superfluid: it flows without viscosity, climbs container walls, and conducts heat with no temperature drop. This is the lambda transition, named for the Greek letter shape of its specific-heat curve. The transition temperature Tλ = 2.17 K is one of the most precisely measured phase boundaries in physics.
The framework's library contains a module that attempts to connect this temperature to the golden ratio φ ≈ 1.618. The research note inside the module proposes Tλ = φk × T_debye_He / configDim, where T_debye_He ≈ 20 K is helium's Debye temperature (the scale above which all lattice vibrations are excited). With configDim = 5, this gives 20/5 = 4 K, and multiplying by φ−1 ≈ 0.618 yields about 2.47 K, within 14% of the measured 2.17 K.
What the machine-checked code actually proves is more modest and entirely general. The module defines cost (a measure of mismatch between a measured and an expected value) as J(measured/expected), where J(x) = (x + 1/x)/2 − 1. Three theorems are proved: the cost vanishes when measured equals expected, the cost is nonnegative for positive inputs, and the number φ − 3/2 is positive. These facts hold for any positive inputs, not specifically for helium.
The module assembles these three theorems into a certificate structure called SuperfluidCert, which is inhabited. The certificate records that the cost function has a zero at equilibrium, never goes negative, and has a positive threshold. This is a template: it establishes the formal properties any recognition cost must satisfy, but it does not yet define what "measured" and "expected" mean for the lambda transition specifically.
In Recognition Science, the framework models physical phase transitions as points where a recognition cost reaches its minimum. The gap between the research note's 2.47 K estimate and the measured 2.17 K (a 14% discrepancy) marks where the derivation remains incomplete. The module proves the cost framework is consistent, but the specific identification of m and e in helium's own terms remains open.
THEOREM domainCost_at_equilibrium · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Physics/SuperfluidTransitionFromJCost.lean
theorem domainCost_at_equilibrium (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by
unfold domainCost; rw [div_self h]; exact Jcost_unit0
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 : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
HYPOTHESIS domainCost · IndisputableMonolith/Physics/SuperfluidTransitionFromJCost.lean
def domainCost (measured expected : ℝ) : ℝ := Jcost (measured / expected)
THEOREM cert_inhabited · IndisputableMonolith/Physics/SuperfluidTransitionFromJCost.lean
theorem cert_inhabited : Nonempty SuperfluidCert := ⟨cert⟩
What this page does not claim
The module does not prove that the lambda transition occurs at 2.17 K. The research note's 2.47 K estimate is not a derived theorem, only a proposed identification. The certificate structure does not establish any property specific to helium-4.
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/SuperfluidTransitionFromJCost.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 physical definition of measured and expected values for helium-4 would make the cost derivation specific to the lambda transition?
- Does the 14% gap between 2.47 K and 2.17 K close under a different choice of configDim or Debye temperature?
- How does the golden ratio appear in other condensed-matter phase transitions within the framework?
- What experimental precision would be needed to distinguish the framework's 2.47 K prediction from the measured 2.17 K?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_equilibrium · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Physics/SuperfluidTransitionFromJCost.lean
theorem domainCost_at_equilibrium (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0theorem 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 : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]The cost vanishes when measured equals expected, the cost is nonnegative for positive inputs, and the number φ − 3/2 is positive. domainCost_at_equilibrium · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Physics/SuperfluidTransitionFromJCost.leanHYPOTHESIS domainCost · IndisputableMonolith/Physics/SuperfluidTransitionFromJCost.lean
def domainCost (measured expected : ℝ) : ℝ := Jcost (measured / expected)The research note inside the module proposes T<sub>λ</sub> = φ<sup>k</sup> × T_debye_He / configDim, where T_debye_He ≈ 20 K is helium's Debye temperature. domainCost · IndisputableMonolith/Physics/SuperfluidTransitionFromJCost.leanTHEOREM cert_inhabited · IndisputableMonolith/Physics/SuperfluidTransitionFromJCost.lean
theorem cert_inhabited : Nonempty SuperfluidCert := ⟨cert⟩The module assembles these three theorems into a certificate structure called SuperfluidCert, which is inhabited. cert_inhabited · IndisputableMonolith/Physics/SuperfluidTransitionFromJCost.lean