Encyclopedia Materials Materials Surface Energy Rs
ARTICLE 2 claims 1 theorem 1 model
Materials Surface Energy Rs
Surface energy measures the work needed to create new material surface, and a machine-checked library explores one scaling model for it.
Surface energy and its RS model
Surface energy is the excess energy at the surface of a material compared to its bulk, and it is measured by the work required to create a unit area of new surface. For a solid like steel, this value is roughly 2 joules per square meter. The concept matters because it drives wetting, adhesion, and crack growth, and it is why liquids form droplets and why powders are hard to mix.
The classical picture goes back to the nineteenth century, when scientists like Thomas Young and Josiah Willard Gibbs formalized how interfaces behave. The standard definition is thermodynamic: surface energy is the reversible work per unit area, often written as γ. For liquids it is usually called surface tension, and for solids it is often anisotropic, meaning it depends on which crystal face you expose. Measuring it for solids is hard, because creating a surface by fracture involves plastic work and other losses, so the measured value is not a simple equilibrium number.
In Recognition Science, the framework models surface energy with a scaling law based on its cost function. The framework's ledger, a discrete record of recognition events, gives a cost function J(x) = (x + 1/x)/2 - 1 that is proved to be the unique function satisfying five plain conditions. The materials module defines a domain cost as J(m/e), where m and e are two positive real numbers, and it proves three general facts: the cost vanishes when m equals e, it is never negative for positive inputs, and the golden ratio φ is greater than 3/2. These are the only theorems the module proves; they are about the cost function itself, not about any specific material.
The research note in the module applies this to surface energy: it writes γ = φ^k · J(φ) J/m², and for k = 5 it gets about 1.31 J/m², which is close to the steel value. That note is explicitly not a result. The module proves nothing that connects J to a physical material, because the definition of domainCost does not say what m and e are. The note records where the idea was meant to go, not where it arrived.
What the module does establish is a template. The same three lemmas appear in 2383 sibling modules, stated once and universally in a shared library file. The library is a machine-checked collection of formal theorems, and the honest summary is this: the framework proves the cost function's basic properties, and the surface-energy application is a hypothesis about how those properties might scale with φ. The scaling law itself is a research direction, not a theorem.
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Materials/Surface_Energy_RS.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 (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]
MODEL domainCost · IndisputableMonolith/Materials/Surface_Energy_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
What this page does not claim
The module does not prove that steel or any material has surface energy 1.31 J/m². The module does not derive the φ-scaling law from the cost function's axioms. The module does not establish that m and e have any physical meaning.
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/Surface_Energy_RS.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 definitions of m and e would make the domain cost a theorem about a real material?
- How does the φ-power scaling law compare against measured surface energies across a range of solids?
- Does the shared template across 2383 modules indicate a general structural principle or a placeholder pattern?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Materials/Surface_Energy_RS.lean
theorem domainCost_at_eq (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 module defines a domain cost as J(m/e) and proves it vanishes when m equals e, is nonnegative for positive inputs, and that φ is greater than 3/2. domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Materials/Surface_Energy_RS.leanMODEL domainCost · IndisputableMonolith/Materials/Surface_Energy_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The research note in the module writes γ = φ^k · J(φ) J/m² and gets about 1.31 J/m² for k = 5, close to the steel value. domainCost · IndisputableMonolith/Materials/Surface_Energy_RS.lean