Encyclopedia Chemistry Chemistry Arrhenius A Factor V3 Arrhenius A V3 Cert

ARTICLE 4 claims 3 theorems 1 model

Chemistry Arrhenius A Factor V3 Arrhenius A V3 Cert

A machine-checked certificate about a cost function says nothing about chemistry until the variables are defined; here is what it actually proves.

What the certificate proves

The Arrhenius pre-exponential factor A is the frequency term in the Arrhenius equation, k = A exp(-Ea/RT), which describes how reaction rates depend on temperature. In classical chemical kinetics, A is often called the frequency factor because it represents the rate at which molecules collide with the correct orientation, typically ranging from 10^10 to 10^13 s^-1. The Recognition Science library contains a declaration named ArrheniusA_v3Cert, but despite the name, it does not prove anything about chemical reactions.

What the declaration actually proves is three general facts about a cost function Jcost, a mathematical measure of recognition cost. The first theorem states that when the two inputs are equal, the cost is zero. The second states that for positive inputs, the cost is never negative. The third proves that the golden ratio phi minus 3/2 is positive, a numerical fact used as a threshold. These are collected into a structure called ArrheniusA_v3Cert, and the library shows that this structure is inhabited, meaning the three properties are consistent and provable together.

The key limitation is that the cost function is defined as Jcost (m / e), where m and e are just real numbers. The declaration never defines what m and e mean in chemical terms. The docstring explicitly notes that this body is shared verbatim with 2383 sibling declarations, and that it would become a theorem about its subject only if m and e were defined in that subject's own terms. So the certificate is a template, not a chemical result.

In Recognition Science, the framework models recognition cost as a forced quantity, and the cost function J(x) = (x + 1/x)/2 - 1 is proved unique under five conditions. The research note attached to the declaration suggests an intended application: A = J(phi)^(-1) * kT/h = 8.47 * 6e12 = 5e13 s^-1, placing the result at the upper range of measured A factors. But this note is explicitly labeled as a research note recording where the idea was meant to go, not a result. The formal code proves none of it.

What the certificate does establish is that the cost function behaves well: it vanishes at equality, stays nonnegative for positive inputs, and has a positive threshold. These are general properties of the cost function, not of chemistry. A reader should understand that the declaration's name is aspirational; the formal content is about real numbers and a cost function, and any chemical interpretation would require additional definitions that are not present.

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

What this page does not claim

The certificate does not prove any property of the Arrhenius A factor as a chemical quantity. The research note's numerical estimate A = 5e13 s^-1 is not a proved result. The declaration does not establish that the Arrhenius equation itself is derived from Recognition Science.

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