Encyclopedia Chemistry Chemistry Olefins From Phi Ladder Olefin Sel Cert
ARTICLE 4 claims 3 theorems 1 model
Chemistry Olefins From Phi Ladder Olefin Sel Cert
A machine-checked certificate proves three general facts about a cost function, but says nothing specific about olefins, selectivity, or catalysis.
A certificate of general cost properties
OlefinSelCert is a named certificate in the Recognition Science framework's machine-checked library of formal theorems. It bundles three proved statements about a cost function, cost, which in this framework measures the forced price of a recognition event, a discrete record of something being matched or identified. The certificate itself is a small structure holding three proofs together.
The three facts are general properties of the cost function, not chemistry. First, when the two inputs to the cost are equal and nonzero, the cost is exactly zero. Second, for positive inputs, the cost is never negative. Third, a particular constant, defined as the golden ratio minus 1.5, is greater than zero. The golden ratio here is the classical number φ ≈ 1.618, the solution to r² = r + 1. The certificate proves these three facts hold, and it proves that such a certificate exists at all.
What the certificate does not do is more important than what it does. The cost function in this framework is defined as J(m/e), where J is a specific function from the framework's core, and m and e are real numbers. The framework never defines what m or e mean in chemical terms. It does not define an olefin, an alkane, a catalyst, or a reaction. It contains no selectivity formula, no propylene-to-propane ratio, and no comparison to any measured chemical data.
The framework's own documentation says this plainly: the formal code proves three general facts about J(m/e), and it proves nothing specific to the subject of olefins. The docstring includes a research note about fluid catalytic cracking and a selectivity ratio near 0.1 to 0.3, but that note is explicitly recorded as an idea for where the work was meant to go, not as a result. The certificate is a template, shared in identical form with thousands of sibling modules, each waiting for a subject-specific definition of its own m and e.
In plain terms, OlefinSelCert is a proof that a certain abstract cost function has three basic properties: zero at equality, nonnegative on positive inputs, and a positive threshold constant. A reader should not take from it any claim about how olefins behave, how catalysts work, or what selectivity any real process achieves. The certificate is a foundation stone, not a building.
THEOREM domainCost_at_eq · IndisputableMonolith/Chemistry/OlefinsFromPhiLadder.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/OlefinsFromPhiLadder.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/OlefinsFromPhiLadder.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
MODEL domainCost · IndisputableMonolith/Chemistry/OlefinsFromPhiLadder.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
What this page does not claim
No claim that OlefinSelCert says anything about olefins, alkanes, catalysts, or any real chemical process. No claim that the research note about propylene-to-propane selectivity is a proved result. No claim that the cost function J has any established connection to measured chemical data.
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/OlefinsFromPhiLadder.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 subject-specific definition of m and e would turn this template into a theorem about olefins?
- How does the framework's cost function J relate to any measurable chemical selectivity?
- What does the framework prove about the golden ratio that makes its appearance here meaningful?
- Which of the 2383 sibling modules have received a subject-specific definition, and what did they establish?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · IndisputableMonolith/Chemistry/OlefinsFromPhiLadder.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0When the two inputs to the cost are equal and nonzero, the cost is exactly zero. domainCost_at_eq · IndisputableMonolith/Chemistry/OlefinsFromPhiLadder.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Chemistry/OlefinsFromPhiLadder.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)For positive inputs, the cost is never negative. domainCost_nonneg · IndisputableMonolith/Chemistry/OlefinsFromPhiLadder.leanTHEOREM canonicalThreshold_pos · IndisputableMonolith/Chemistry/OlefinsFromPhiLadder.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]A particular constant, defined as the golden ratio minus 1.5, is greater than zero. canonicalThreshold_pos · IndisputableMonolith/Chemistry/OlefinsFromPhiLadder.leanMODEL domainCost · IndisputableMonolith/Chemistry/OlefinsFromPhiLadder.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The framework never defines what m or e mean in chemical terms. domainCost · IndisputableMonolith/Chemistry/OlefinsFromPhiLadder.lean