Encyclopedia Materials Materials Radiation Hardening From Jcost
ARTICLE 4 claims 4 theorems
Materials Radiation Hardening From Jcost
A formal library proves only that a certain cost function is zero at equilibrium and nonnegative elsewhere; the material-science claim it was built for remains a research note.
Radiation hardening as a cost
Radiation hardening is the increase in a material's yield stress after it is bombarded by neutrons or ions. The classic empirical picture is that this increase scales with the square root of the defect density: more displaced atoms mean a stiffer, more brittle material. The Recognition Science framework's ledger, a discrete record of recognition events, enters this picture through a proposed formula: the hardening increment Δσ equals the yield stress σ_yield times the square root of J(φ), where J is the framework's cost function and φ is the golden ratio. Numerically that factor is about 0.344, which would put the predicted hardening at roughly 10 to 50 percent of yield stress, matching the observed range.
The machine-checked library of formal theorems, however, proves something much narrower. Its module defines a domain cost as J(m/e), the cost of recognizing a ratio of two real numbers. Three facts are proved: this cost is zero when the two numbers are equal, it is never negative for positive inputs, and the constant φ − 3/2 is positive. These are general properties of the cost function, not results about materials. The library's own docstring says so explicitly: it proves nothing specific to radiation hardening, because the definition of the domain cost does not reference defect density, lattice sites, or yield stress.
In Recognition Science, the framework models the hardening claim as a hypothesis. The formula J(φ) × lattice_sites is a proposed identification, not a derived theorem. What would turn the module into a theorem about its subject is a definition of m and e in the material's own terms, for instance m as a measure of displaced atoms and e as a measure of original lattice sites. Without that definition, the formal content is a template shared verbatim with 2383 sibling modules, each one a placeholder for a subject-specific argument.
The practical consequence for a reader is a clean separation: the formal library certifies the cost function's basic shape, and the radiation-hardening formula is a research note recording where the idea was meant to go. The square-root scaling and the 0.344 factor are a prediction with a named falsifier: a measurement of hardening that does not track the square root of defect density would falsify it. The formal theorems stand independently of that prediction, and the prediction stands independently of the formal theorems.
THEOREM domainCost_at_eq · IndisputableMonolith/Materials/RadiationHardeningFromJCost.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/RadiationHardeningFromJCost.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/RadiationHardeningFromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
THEOREM domainCost · IndisputableMonolith/Materials/RadiationHardeningFromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
What this page does not claim
The radiation-hardening formula Δσ = σ_yield × √J(φ) is a proved theorem. The module establishes any connection between the cost function and actual defect densities. The 10 to 50 percent hardening range is a formal result.
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/RadiationHardeningFromJCost.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 material terms would make the domain cost a theorem about radiation hardening?
- Does the square-root scaling of hardening with defect density hold across different material classes and irradiation conditions?
- How does the 0.344 factor from J(φ) compare with measured hardening coefficients in specific alloys?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · IndisputableMonolith/Materials/RadiationHardeningFromJCost.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0The module's domain cost is zero when the two numbers are equal. domainCost_at_eq · IndisputableMonolith/Materials/RadiationHardeningFromJCost.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Materials/RadiationHardeningFromJCost.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)The domain cost is never negative for positive inputs. domainCost_nonneg · IndisputableMonolith/Materials/RadiationHardeningFromJCost.leanTHEOREM canonicalThreshold_pos · IndisputableMonolith/Materials/RadiationHardeningFromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]The constant φ − 3/2 is positive. canonicalThreshold_pos · IndisputableMonolith/Materials/RadiationHardeningFromJCost.leanTHEOREM domainCost · IndisputableMonolith/Materials/RadiationHardeningFromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The module proves nothing specific to radiation hardening because the definition of the domain cost does not reference defect density, lattice sites, or yield stress. domainCost · IndisputableMonolith/Materials/RadiationHardeningFromJCost.lean