Encyclopedia Chemistry Chemistry Ethanol Boiling Rs

ARTICLE 5 claims 3 theorems 1 measured

Chemistry Ethanol Boiling Rs

A machine-checked module named for ethanol's boiling point actually proves only general facts about a cost function, not chemistry.

Ethanol and the cost function

Ethanol, or ethyl alcohol, is the familiar intoxicating compound in alcoholic drinks. Its boiling point at standard atmospheric pressure is about 351 kelvin (78 degrees Celsius). That is the temperature at which the liquid's vapor pressure equals the surrounding pressure, so bubbles of vapor form throughout the liquid. The value is a measured physical constant, not a derived one.

In Recognition Science, the framework's central object is a cost, a number that measures the price of recognizing one thing as another. The framework proves that any cost function satisfying five plain conditions must equal J(x) = (x + 1/x)/2 - 1. The module named chemistry-ethanol-boiling-rs defines a domain cost as J applied to the ratio m/e, where m and e are real numbers standing for two quantities. It then proves three general facts: the cost is zero when m equals e, the cost is never negative for positive inputs, and the golden ratio minus 1.5 is positive.

These three facts are true for any positive real numbers m and e. The module proves nothing specific to ethanol, because the definition never connects m and e to ethanol's actual mass or energy. The docstring records a research note that phi^7 times 12.1 kelvin equals 351 kelvin, matching ethanol's boiling point to within the note's own arithmetic, but that note is not a theorem. The machine-checked library of formal theorems states this body of content once, universally quantified, in a shared template used by 2383 sibling modules.

What the module does establish is a certificate: a structure bundling the three proved facts into one object, with a proof that this certificate exists. That is a small but real formal achievement. It shows the cost function behaves sensibly at equality, stays nonnegative, and has a positive threshold. But the leap from these general facts to ethanol's boiling point is exactly the step the module does not take. The definition of m and e in ethanol's own terms remains open.

For the reader, the lesson is precise: a module's name can promise more than its theorems deliver. The honest summary is that the framework's cost function has the three proved properties, and ethanol's boiling point is a measured value that the research note tentatively matches, but no formal link connects them.

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

What this page does not claim

No theorem in this module connects the cost function to ethanol's boiling point. No claim that phi^7 times 12.1 kelvin is a derived value; it is a research note. No claim that the cost function's uniqueness applies to chemistry without a subject-specific definition.

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