Encyclopedia Materials Materials Structural Materials Mod73

ARTICLE 5 claims 4 theorems 1 model

Materials Structural Materials Mod73

A machine-checked certificate that a cost formula is zero at balance, never negative, and has a positive threshold, with no subject-specific content yet.

Structural Materials mod73

In Recognition Science, a ledger is a discrete record of events, and the cost of recognition is a number that measures how far a ratio is from balance. The module Structural Materials mod73 defines a cost for a materials domain as Jcost applied to the ratio m / e, where m and e are real numbers meant to stand for two quantities in that domain. The central function Jcost is the unique cost function forced by the framework's axioms; it equals (x + 1/x)/2 - 1.

What the module proves, in Lean, is three general facts about this cost. First, when m equals e, the cost is zero: the ledger is perfectly balanced. Second, for any positive m and e, the cost is never negative; it is always at least zero. Third, the number phi - 3/2, called the canonical threshold, is positive. Here phi is the golden ratio, about 1.618, so the threshold is about 0.118. These three facts are assembled into a certificate structure that is inhabited, meaning the certificate exists.

The honest limitation is that the module proves nothing specific to materials. The definition of domainCost uses the ratio m / e without saying what m and e mean in materials terms. The docstring states this plainly: the paragraph above is a research note recording where the idea was meant to go, not a result. The same body of code is shared verbatim with 2383 sibling modules, each for a different domain, all proving the same three facts about the same cost function.

In Recognition Science, this is a structural prediction at recognition rung 73 for the materials domain. The prediction is that when the two quantities m and e are in balance, the recognition cost is zero; when they are not, the cost is positive, and the threshold phi - 3/2 marks a canonical separation. But until someone defines m and e in materials terms, the module remains a template, not a theorem about any real material.

What the module does establish, in plain language, is that the cost function behaves correctly: it vanishes at balance, it never goes negative, and it has a positive threshold. That is a necessary foundation for any future materials-specific claim. It does not establish which materials quantities m and e should be, nor what the threshold means physically.

MODEL domainCost · IndisputableMonolith/Materials/Structural_Materials_mod73.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
THEOREM domainCost_at_eq · IndisputableMonolith/Materials/Structural_Materials_mod73.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_mod73.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_mod73.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
  unfold canonicalThreshold; linarith [phi_gt_onePointFive]
THEOREM cert_inhabited · IndisputableMonolith/Materials/Structural_Materials_mod73.lean
theorem cert_inhabited : Nonempty StructMaterialsM73Cert := ⟨cert⟩

What this page does not claim

This module does not prove any property specific to materials. This module does not define what m and e mean physically. This module does not establish that the threshold has any material consequence.

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_mod73.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