Encyclopedia Chemistry Chemistry Radioactive Precursor From Jcost Radio Yield Cert
ARTICLE 3 claims 2 theorems 1 model
Chemistry Radioactive Precursor From Jcost Radio Yield Cert
A machine-checked certificate records three general mathematical facts about a cost function, but it says nothing yet about radioactive chemistry.
The certificate and its bounds
In mathematics and physics, a cost function assigns a number to a comparison, often a penalty for a mismatch. The Recognition Science framework defines one particular cost function, J(x) = (x + 1/x)/2 - 1, which is proved in its machine-checked library of formal theorems to be the unique function satisfying five plain conditions. The declaration RadioYieldCert is a small structure in that library. It packages three proved facts about this cost function: it vanishes when the two inputs are equal, it is never negative for positive inputs, and a certain threshold constant phi - 3/2 is positive.
The first fact, cost_at_eq, states that for any nonzero real number r, the cost of comparing r to itself is zero. This is the natural requirement that no penalty applies when there is no mismatch. The second fact, cost_nonneg, states that for any two positive real numbers m and e, the cost of comparing m to e is greater than or equal to zero. Costs are never negative, which matches the intuitive role of a penalty. The third fact, threshold_pos, states that the golden ratio phi minus 1.5 is a positive number, a simple inequality that the library proves from a prior theorem about phi.
The certificate itself is just a structure that holds these three facts together, and the library provides a proof that such a structure exists, called cert_inhabited. The word "certificate" here is a label for a bundle of proved statements, not a claim about any physical process. The cost function is defined generically as J(m/e), where m and e are just real numbers. Nothing in the definition ties them to any particular subject, such as chemistry.
In Recognition Science, the framework's library notes a research idea: radiopharmaceutical labeling yield might be modeled as 1 - J(phi)^2, which evaluates to about 98.6 percent, above a typical 90 percent requirement. This is recorded as a research note, not a result. The declaration proves nothing specific to radiopharmaceuticals, because the variables m and e are not defined in chemical terms. The note is shared verbatim across 2383 sibling modules, which is a sign that it is a template, not a subject-specific theorem.
What the declaration does establish is a small, clean set of mathematical guarantees about the cost function. What it does not establish is any empirical claim about radioactive precursors, labeling yields, or chemistry. The gap is explicit in the library's own documentation: to make this a theorem about radiopharmaceuticals, one would need a definition of m and e in that subject's own terms. That definition is absent, so the certificate remains a general-purpose mathematical object, not a chemical one.
THEOREM RadioYieldCert · cert_inhabited · IndisputableMonolith/Chemistry/RadioactivePrecursorFromJCost.lean
structure RadioYieldCert where
cost_at_eq : ∀ r : ℝ, r ≠ 0 → domainCost r r = 0
cost_nonneg : ∀ m e : ℝ, 0 < m → 0 < e → 0 ≤ domainCost m e
threshold_pos : 0 < canonicalThreshold
theorem cert_inhabited : Nonempty RadioYieldCert := ⟨cert⟩
MODEL domainCost · IndisputableMonolith/Chemistry/RadioactivePrecursorFromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
THEOREM domainCost · IndisputableMonolith/Chemistry/RadioactivePrecursorFromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
What this page does not claim
RadioYieldCert does not prove any fact about radioactive precursors or chemical labeling yields. The research note about 98.6 percent yield is not a theorem and carries no empirical evidence. The certificate does not claim that the golden ratio phi is relevant to chemistry.
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/Chemistry/RadioactivePrecursorFromJCost.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 chemical definition of m and e would make the certificate a theorem about radiopharmaceutical labeling yield?
- How does the generic cost function J relate to measured radiochemical yields in practice?
- What is the empirical status of the 98.6 percent figure for labeling yield?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM RadioYieldCert · cert_inhabited · IndisputableMonolith/Chemistry/RadioactivePrecursorFromJCost.lean
structure RadioYieldCert where cost_at_eq : ∀ r : ℝ, r ≠ 0 → domainCost r r = 0 cost_nonneg : ∀ m e : ℝ, 0 < m → 0 < e → 0 ≤ domainCost m e threshold_pos : 0 < canonicalThresholdtheorem cert_inhabited : Nonempty RadioYieldCert := ⟨cert⟩The declaration RadioYieldCert packages three proved facts about this cost function: it vanishes when the two inputs are equal, it is never negative for positive inputs, and a certain threshold constant phi - 3/2 is positive. RadioYieldCert · cert_inhabited · IndisputableMonolith/Chemistry/RadioactivePrecursorFromJCost.leanMODEL domainCost · IndisputableMonolith/Chemistry/RadioactivePrecursorFromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The cost function is defined generically as J(m/e), where m and e are just real numbers. domainCost · IndisputableMonolith/Chemistry/RadioactivePrecursorFromJCost.leanTHEOREM domainCost · IndisputableMonolith/Chemistry/RadioactivePrecursorFromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The declaration proves nothing specific to radiopharmaceuticals, because the variables m and e are not defined in chemical terms. domainCost · IndisputableMonolith/Chemistry/RadioactivePrecursorFromJCost.lean