Encyclopedia Chemistry Chemistry Radical Clock3 From Jcost Rad Clock3 Cert
ARTICLE 4 claims 4 theorems
Chemistry Radical Clock3 From Jcost Rad Clock3 Cert
A machine-checked certificate packs three general facts about a cost function, but says nothing about the chemistry it was named for.
Radical clock calibration
Radical clocks are chemical reactions whose speed is known well enough to time other events. The classic example is the ring opening of cyclopropylmethyl, which proceeds at roughly 10^8 per second. A research note in the Recognition Science library records an attempt to derive that rate from the framework's cost function, and the attempt missed the mark by a factor of about a thousand. The note is honest about the failure and marks the problem as structural.
The machine-checked declaration RadClock3Cert is a certificate, a bundled package of three proved facts. It does not touch the chemistry. The certificate's first fact says the cost function, defined as J(m/e) for two positive numbers m and e, is zero when the two numbers are equal. The second says the cost is never negative for positive inputs. The third says that the golden ratio minus 1.5 is a positive number. These are general properties of the cost function, true for any positive inputs whatsoever, with no reference to any particular chemical system.
The certificate is assembled from three theorems in the framework's machine-checked library of formal theorems. The first theorem, domainCost_at_eq, proves the zero-at-equality property. The second, domainCost_nonneg, proves nonnegativity. The third, canonicalThreshold_pos, proves the positivity of the threshold. The certificate structure simply collects these three proofs into one object, and a further theorem confirms that such a certificate exists. The whole construction is a formal exercise in packaging known results.
What the certificate does not claim is the interesting part. It does not claim that any radical clock rate follows from the framework. The definition of domainCost uses the cost function J on a ratio m/e, but nothing in the definition says what m and e mean. They could be masses, energies, or any positive real numbers. To make the certificate a theorem about cyclopropylmethyl ring opening, one would need definitions of m and e in terms of that reaction's own quantities. No such definitions appear in the module, and the research note explicitly says the paragraph above the code is a research note, not a result.
The certificate's value is as a template. It shows the shape a real chemical calibration would take: define the reaction's quantities, plug them into the cost function, and prove the three properties. The framework's library states this template once, universally, in a shared module. The radical clock module is one of 2383 siblings that share the same body, a reminder that a certificate with the right shape is not yet a certificate about its subject.
THEOREM domainCost_at_eq · IndisputableMonolith/Chemistry/Radical_Clock3_FromJCost.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/Chemistry/Radical_Clock3_FromJCost.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/Chemistry/Radical_Clock3_FromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
THEOREM cert_inhabited · IndisputableMonolith/Chemistry/Radical_Clock3_FromJCost.lean
theorem cert_inhabited : Nonempty RadClock3Cert := ⟨cert⟩
What this page does not claim
The certificate does not claim that any radical clock rate follows from the framework. The certificate does not claim that m and e refer to any particular chemical quantities. The certificate does not claim that the research note's rate estimate is correct or that the framework's cost function has been calibrated to any measured reaction.
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/Radical_Clock3_FromJCost.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 definitions of m and e, in terms of a radical clock reaction's own quantities, would turn this template into a theorem about that reaction?
- What structural feature of the cost function explains the factor of about a thousand between the naive rate estimate and the measured ring-opening rate?
- Which of the 2383 sibling modules, if any, have supplied subject-specific definitions that make their certificates substantive?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · IndisputableMonolith/Chemistry/Radical_Clock3_FromJCost.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0The certificate's first fact says the cost function, defined as J(m/e) for two positive numbers m and e, is zero when the two numbers are equal. domainCost_at_eq · IndisputableMonolith/Chemistry/Radical_Clock3_FromJCost.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Chemistry/Radical_Clock3_FromJCost.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 second says the cost is never negative for positive inputs. domainCost_nonneg · IndisputableMonolith/Chemistry/Radical_Clock3_FromJCost.leanTHEOREM canonicalThreshold_pos · IndisputableMonolith/Chemistry/Radical_Clock3_FromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]The third says that the golden ratio minus 1.5 is a positive number. canonicalThreshold_pos · IndisputableMonolith/Chemistry/Radical_Clock3_FromJCost.leanTHEOREM cert_inhabited · IndisputableMonolith/Chemistry/Radical_Clock3_FromJCost.lean
theorem cert_inhabited : Nonempty RadClock3Cert := ⟨cert⟩The certificate structure simply collects these three proofs into one object, and a further theorem confirms that such a certificate exists. cert_inhabited · IndisputableMonolith/Chemistry/Radical_Clock3_FromJCost.lean