Encyclopedia Chemistry Chemistry Sol Gel Transition From Jcost Sol Gel Cert

ARTICLE 4 claims 3 theorems 1 model

Chemistry Sol Gel Transition From Jcost Sol Gel Cert

A machine-checked certificate about a cost function, and the careful line between its three proved facts and the chemistry it does not yet reach.

What the certificate proves

In polymer chemistry, a sol is a fluid dispersion of polymer chains, and a gel is a network that spans the whole sample. The transition between them, gelation, happens at a critical polymer concentration. A classical empirical estimate ties that concentration to the chain overlap concentration, the point where dissolved chains begin to touch one another, with gelation often setting in at a fraction of that overlap value.

Recognition Science (RS) is a framework that derives structure from a single cost function, J(x) = (x + 1/x)/2 - 1, which is proved in a machine-checked library of formal theorems. The declaration SolGelCert, in the framework's chemistry module, assembles a certificate: a package of three proved facts about a cost function applied to a ratio. The certificate proves that the cost vanishes when the two inputs are equal, that the cost is nonnegative for positive inputs, and that a particular constant, phi - 3/2, is positive. Here phi is the golden ratio, about 1.618, so the constant is about 0.118.

Those three facts are general properties of the cost function, not results about sol-gel chemistry. The module defines the cost as J(m/e) for two real numbers m and e, but it never defines what m and e mean in chemical terms. The docstring records a research note: the intended idea was that the gelation concentration equals the cost times the overlap concentration, with gelation at 11.8% of chain overlap. That note is a plan, not a theorem. The Lean code proves nothing specific to sol-gel because the mapping from chemical quantities to m and e is absent.

What the certificate does establish is a clean mathematical core. It shows that the cost function has the right shape for a threshold: it is zero at the balanced point, never negative for positive inputs, and its canonical threshold constant is positive. That constant, 0.118, is the number the research note wants to identify with the gelation fraction. The certificate makes the numerical value available and proves it is positive, but the bridge from that number to a measured gelation concentration remains unformalized.

The honest summary: SolGelCert proves three general facts about J, and it records a research intention about sol-gel chemistry. The chemical claim, that gelation occurs at 11.8% of overlap concentration, is a hypothesis with a named falsifier: a measured gelation concentration that deviates from 0.118 times the overlap concentration would falsify it. The certificate itself does not assert that hypothesis; it only packages the three proved facts and the positive constant.

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

What this page does not claim

The certificate does not prove that gelation occurs at 11.8% of chain overlap. The certificate does not establish any connection between the cost function and polymer physics. The research note's chemical hypothesis is not a proved result.

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