Encyclopedia Chemistry Chemistry Structural Chemistry Mod27

ARTICLE 4 claims 4 theorems

Chemistry Structural Chemistry Mod27

A machine-checked certificate for chemistry at recognition rung 27, proving three general facts about a cost function and nothing specific to chemistry itself.

Structural Chemistry mod27

In Recognition Science, a framework that derives structure from the cost of recognition events, a recognition is a discrete record of a match between two quantities. The module Structural Chemistry mod27 is a formal certificate, a machine-checked collection of theorems, that concerns the cost function Jcost applied to a ratio m / e. The module proves three general facts: the cost vanishes when m equals e, the cost is never negative for positive inputs, and the quantity phi - 3/2 is positive, where phi is the golden ratio.

The key definition is domainCost (m e) = Jcost (m / e). The theorems establish that domainCost r r = 0 for any nonzero r, that domainCost m e is nonnegative when both m and e are positive, and that the threshold phi - 3/2 is positive. These are proved in the Lean 4 proof assistant, with no axioms beyond the standard three. The certificate structure packages these three results into a single object, and a theorem confirms that this certificate exists.

In plain language, the module says: if you measure the cost of recognizing one quantity as another, the cost is zero only when they are identical, and the cost is never negative. The threshold being positive means the golden ratio is greater than 1.5, a fact used elsewhere in the framework. What the module does not do is say anything about chemistry. The cost function is defined without reference to any chemical concept; there is no definition of what m and e mean for a molecule or a reaction.

The module is one of 2383 siblings that share the same body, differing only in the subject name. The docstring itself states that the module 'proves nothing specific to this subject.' The intended application to chemistry at recognition rung 27 is recorded as a research note, not as a result. To make this a theorem about chemistry, one would need to define m and e in chemical terms, such as a bond length or an energy. Until then, the module is a general template, not a chemical statement.

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

What this page does not claim

The module does not establish any chemical law or property. The module does not define what m and e mean in chemical terms. The module does not predict any measurable chemical quantity.

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