Encyclopedia Chemistry Chemistry Gel Point From Jcost
ARTICLE 4 claims 3 theorems 1 hypothesis
Chemistry Gel Point From Jcost
A machine-checked library proves three general facts about a cost function, but the specific chemical claim about gelation remains a research note, not a theorem.
The gel point threshold
In the chemistry of polymers, the gel point is the moment a liquid mixture of reacting molecules suddenly turns into a network that spans the whole sample. Viscosity, the resistance to flow, rises sharply as the reaction approaches this threshold. Near the critical conversion p_c, the viscosity diverges as eta ~ (p - p_c)^(-s), where s is a critical exponent with measured values around 1.3 to 1.5 in percolation theory.
The Recognition Science framework models this threshold using its cost function J(x) = (x + 1/x)/2 - 1, the same function its library proves is forced by five plain conditions. The module defines a domain cost as J(m/e), where m and e are positive real numbers. Its machine-checked library of formal theorems proves three general facts: the cost vanishes when m equals e, the cost is nonnegative for positive inputs, and the quantity phi - 3/2 is positive, where phi is the golden ratio.
In Recognition Science, the framework proposes that the gelation exponent s equals 1/(1 - J(phi)), which computes to approximately 1.133. This is close to, but not within, the empirical range of 1.3 to 1.5. The framework's own documentation labels this a partial match, not a derivation. The module proves nothing specific to gelation because its definition of m and e does not connect them to any chemical quantity like conversion fraction or cluster size.
The library's contribution is honest but narrow: it certifies that the cost function has the three stated properties, and that the golden ratio threshold is positive. What would turn this into a theorem about gelation is a definition of m and e in the chemistry's own terms, linking them to the percolation process. That step is not in the module.
THEOREM domainCost_at_eq · IndisputableMonolith/Chemistry/GelPoint_FromJCost.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/GelPoint_FromJCost.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/GelPoint_FromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
HYPOTHESIS GelationCritExpCert · IndisputableMonolith/Chemistry/GelPoint_FromJCost.lean
structure GelationCritExpCert where
cost_at_eq : ∀ r : ℝ, r ≠ 0 → domainCost r r = 0
cost_nonneg : ∀ m e : ℝ, 0 < m → 0 < e → 0 ≤ domainCost m e
threshold_pos : 0 < canonicalThreshold
What this page does not claim
The module does not prove the gelation exponent equals 1.133. The module does not establish that the gel point exists in any real chemical system. The empirical range 1.3 to 1.5 is a measurement, not a theorem of the framework.
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/GelPoint_FromJCost.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 physical definition of m and e would connect the cost function to the percolation process?
- Can the gap between 1.133 and the empirical 1.3 to 1.5 be closed by a refinement of the model?
- Does the divergence of viscosity near the gel point follow from the same forcing chain as other critical phenomena?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · IndisputableMonolith/Chemistry/GelPoint_FromJCost.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0The cost vanishes when m equals e. domainCost_at_eq · IndisputableMonolith/Chemistry/GelPoint_FromJCost.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Chemistry/GelPoint_FromJCost.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)The cost is nonnegative for positive inputs. domainCost_nonneg · IndisputableMonolith/Chemistry/GelPoint_FromJCost.leanTHEOREM canonicalThreshold_pos · IndisputableMonolith/Chemistry/GelPoint_FromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]The quantity phi - 3/2 is positive. canonicalThreshold_pos · IndisputableMonolith/Chemistry/GelPoint_FromJCost.leanHYPOTHESIS GelationCritExpCert · IndisputableMonolith/Chemistry/GelPoint_FromJCost.lean
structure GelationCritExpCert where cost_at_eq : ∀ r : ℝ, r ≠ 0 → domainCost r r = 0 cost_nonneg : ∀ m e : ℝ, 0 < m → 0 < e → 0 ≤ domainCost m e threshold_pos : 0 < canonicalThresholdThe framework proposes that the gelation exponent s equals 1/(1 - J(phi)), which computes to approximately 1.133. GelationCritExpCert · IndisputableMonolith/Chemistry/GelPoint_FromJCost.lean