Encyclopedia Materials Materials Fuse Filament3 From Jcost
ARTICLE 3 claims 1 theorem 1 model
Materials Fuse Filament3 From Jcost
A machine-checked library proves three general facts about a cost function, but the module itself contains no physics of 3D printing.
FDM Print Strength from J-Cost
Fused deposition modeling (FDM) is the common 3D printing process where a thermoplastic filament is melted and laid down in layers. A known weakness is that the bond between layers is weaker than the material itself; interlayer strength typically reaches only 50 to 80 percent of the bulk material's strength. The module materials fuse filament3 from jcost in the Recognition Science framework attempts to model this bond fraction using a cost function.
The framework's central object is the cost, a measure of the price of recognition, defined as J(x) = (x + 1/x)/2 - 1. The module defines a domain cost as J(m/e), where m and e are real numbers. The machine-checked library of formal theorems proves three general facts about this cost: it vanishes when m equals e, it is nonnegative for positive inputs, and the threshold phi - 3/2 is positive, where phi is the golden ratio. These are properties of the cost function itself, not of any printing process.
In plain language, the module proves that the cost is zero when the two quantities are equal, never negative when both are positive, and that a certain threshold involving the golden ratio is positive. The research note attached to the module goes further, suggesting that the ideal layer bond fraction equals 1 - J(phi) = 88.2 percent, and that a poor print with void fraction J(phi)^2 = 1.4 percent leads to 80 to 85 percent strength. But the formal proofs do not establish these claims, because the module never defines what m and e mean in terms of filament, layer, or bond.
In Recognition Science, the framework models physical structure from the forced cost of recognition. Here the framework's library shows that the cost function has the three basic properties, and the module packages them into a certificate structure. What the module does not do is connect the cost to any measurable property of a printed part. The step from J(m/e) to interlayer bond strength requires a definition of m and e in the subject's own terms, which the module does not provide.
The consequence is a clear boundary: the formal part is sound but empty of physics, while the physics lives in an unformalized research note. A reader should not take the 88.2 percent bond fraction as a proved result. It is a hypothesis about how the cost might apply to FDM, awaiting a definition that ties the abstract quantities to the real process.
MODEL domainCost · IndisputableMonolith/Materials/FuseFilament3FromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Materials/FuseFilament3FromJCost.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]
What this page does not claim
The 88.2 percent bond fraction is not a proved result; it is an unformalized research note. The module does not establish any property specific to FDM printing or interlayer bonding. The certificate structure does not add physical content beyond the three general cost properties.
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/FuseFilament3FromJCost.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 quantities should m and e represent for the cost to model interlayer bond strength?
- Can the 88.2 percent bond fraction be derived once m and e are defined, or does it require additional assumptions?
- How does the void fraction J(phi)^2 relate to measurable porosity in a printed part?
- What experimental data would confirm or falsify the proposed bond fraction model?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MODEL domainCost · IndisputableMonolith/Materials/FuseFilament3FromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The module defines a domain cost as J(m/e), where m and e are real numbers. domainCost · IndisputableMonolith/Materials/FuseFilament3FromJCost.leanTHEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Materials/FuseFilament3FromJCost.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 machine-checked library of formal theorems proves three general facts about this cost: it vanishes when m equals e, it is nonnegative for positive inputs, and the threshold phi - 3/2 is positive. domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Materials/FuseFilament3FromJCost.lean- OPENThe step from J(m/e) to interlayer bond strength requires a definition of m and e in the subject's own terms, which the module does not provide.