Encyclopedia Chemistry Chemistry Rs Chem Module 011 Rschem011 Cert

ARTICLE 4 claims 4 theorems

Chemistry Rs Chem Module 011 Rschem011 Cert

A machine-checked certificate for ethanol's boiling point, and the three general facts it actually proves.

The certification's scope

Ethanol boils at about 351 kelvin at standard pressure. A research note in the Recognition Science framework records that phi^7 times 12.1 kelvin gives 351 kelvin, a match to the measured value. The declaration RSChem011Cert packages what the framework's machine-checked library of formal theorems proves about that claim, and it proves only general facts about a cost function, not the chemistry.

The certificate is a structure, a formal container, holding three proved statements. First, the cost function domainCost, defined as J(m/e) for two real numbers m and e, equals zero when m equals e. Second, it is never negative when both inputs are positive. Third, the number phi minus 3/2 is positive, where phi is the golden ratio. These are the theorems: vanishing at equality, nonnegativity on positive inputs, and a threshold being positive. Each is proved in the library, and the certificate exists as a record that these proofs are available.

The research note about ethanol is not a theorem. The definition of domainCost uses the ratio m/e without linking m to a measured mass or e to a measured energy in ethanol's own terms. The library's docstring states this plainly: the paragraph about boiling point is a research note recording where the idea was meant to go, not a result. The certificate proves nothing specific to ethanol, because the cost function is defined without reference to the substance.

What the certificate does establish is a template. The same three general facts are stated once, universally quantified, in a shared module used by 2383 sibling modules. RSChem011Cert is an instance of that template, applied to a subject it does not yet define. To turn it into a theorem about ethanol, one would need a definition of m and e in chemistry's own terms, a step the module does not take.

The practical consequence is a clear boundary. The certificate guarantees the internal consistency of a cost function's basic properties, and it records a numerical coincidence with ethanol's boiling point as a research note. It does not certify that the framework explains ethanol's boiling point, nor that the match is anything more than a coincidence. A reader who wants the chemistry must look for a definition of m and e that the module does not provide.

THEOREM domainCost_at_eq · IndisputableMonolith/Chemistry/RS_Chem_Module_011.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/RS_Chem_Module_011.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/RS_Chem_Module_011.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
  unfold canonicalThreshold; linarith [phi_gt_onePointFive]
THEOREM domainCost · IndisputableMonolith/Chemistry/RS_Chem_Module_011.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)

What this page does not claim

The certificate does not prove that ethanol boils at 351 kelvin. The certificate does not establish that the framework explains any chemical property. The certificate does not define m or e in terms of measured physical quantities.

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/RS_Chem_Module_011.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