Encyclopedia Materials Materials Structural Materials Mod83
ARTICLE 4 claims 4 theorems
Materials Structural Materials Mod83
A machine-checked file that proves three general facts about a cost function, and honestly says it proves nothing specific to materials.
Structural certificate 83
Structural Materials mod83 is a small, machine-checked file in the Recognition Science library. Its name suggests a result about materials, but its own documentation is explicit: the file proves three general facts about the function cost, a measure of recognition effort, and nothing specific to any physical subject. The file defines domainCost (m e) = Jcost (m / e), where Jcost is the framework's forced cost function and m and e are real numbers left unspecified. Because those numbers are never tied to material properties, the file cannot establish anything about steel, concrete, or any structural material.
What the file does prove are three elementary facts, each verified by the machine-checked library of formal theorems. First, when the two inputs are equal and nonzero, the cost is zero: domainCost r r = 0. Second, for positive inputs, the cost is never negative: 0 ≤ domainCost m e. Third, the constant phi - 3/2, called the canonical threshold, is positive. Here phi is the golden ratio, roughly 1.618, so the threshold is about 0.118. These facts follow directly from the general properties of Jcost; they hold for any positive real numbers, not for any particular material.
The file also packages these three facts into a certificate structure, a formal object that bundles them together, and proves that such a certificate exists. The certificate is inhabited, meaning the three properties are consistent and provable. But the certificate's content is generic: it would apply equally to any domain where a cost is defined as Jcost (m / e). The file's own note states that what would make this file a theorem about materials is a definition of m and e in materials' own terms. That definition is absent.
In plain language: this file is a placeholder. It records where a materials-specific result was intended to go, and it proves the general scaffolding that any such result would use. The three proved facts are real but trivial, and they carry no material content. The file's honesty is its main virtue: it says clearly that it proves nothing about materials, and it points to the missing step that would make it meaningful.
THEOREM cert_inhabited · IndisputableMonolith/Materials/Structural_Materials_mod83.lean
theorem cert_inhabited : Nonempty StructMaterialsM83Cert := ⟨cert⟩
THEOREM domainCost_at_eq · IndisputableMonolith/Materials/Structural_Materials_mod83.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/Structural_Materials_mod83.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/Structural_Materials_mod83.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
What this page does not claim
This file does not prove any property of any actual material. The canonical threshold has no demonstrated physical meaning in materials science. The file's three facts are not specific to materials; they hold for any positive real inputs.
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/Structural_Materials_mod83.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 definition of m and e in materials terms would turn this file into a real theorem about structural materials?
- How does the framework's cost function Jcost relate to physical properties like stiffness or strength?
- What distinguishes a genuine domain-specific certificate from a generic template like this one?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM cert_inhabited · IndisputableMonolith/Materials/Structural_Materials_mod83.lean
theorem cert_inhabited : Nonempty StructMaterialsM83Cert := ⟨cert⟩the file proves three general facts about the function cost, a measure of recognition effort, and nothing specific to any physical subject cert_inhabited · IndisputableMonolith/Materials/Structural_Materials_mod83.leanTHEOREM domainCost_at_eq · IndisputableMonolith/Materials/Structural_Materials_mod83.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0when the two inputs are equal and nonzero, the cost is zero domainCost_at_eq · IndisputableMonolith/Materials/Structural_Materials_mod83.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Materials/Structural_Materials_mod83.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)for positive inputs, the cost is never negative domainCost_nonneg · IndisputableMonolith/Materials/Structural_Materials_mod83.leanTHEOREM canonicalThreshold_pos · IndisputableMonolith/Materials/Structural_Materials_mod83.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]the constant phi - 3/2, called the canonical threshold, is positive canonicalThreshold_pos · IndisputableMonolith/Materials/Structural_Materials_mod83.lean