Encyclopedia Chemistry Chemistry Colloid Stability From Jcost Colloid Regime

ARTICLE 3 claims 1 theorem 2 models

Chemistry Colloid Stability From Jcost Colloid Regime

A machine-checked library classifies colloidal stability into exactly five named regimes, a count that matches how colloid science already sorts its suspensions.

Colloidal stability regimes

Colloidal stability is the study of whether fine particles suspended in a liquid stay dispersed or clump together. Classical colloid science recognizes five canonical stability regimes: electrostatically stabilized, sterically stabilized, depletion-stable, gel-forming, and flocculated. The first two are the workhorses of industry: electrostatic stabilization uses surface charges to repel particles, while steric stabilization coats them with polymers that physically block contact. Depletion stability arises when non-adsorbing polymers push particles into a mild attraction that can still keep them apart. Gel-forming suspensions set into a weak network, and flocculated suspensions clump irreversibly. This five-way division is standard textbook material, grounded in the DLVO theory of attractive and repulsive forces between particles, named for Derjaguin, Landau, Verwey, and Overbeek in the 1940s.

Within the Recognition Science framework, the machine-checked library of formal theorems encodes this classical classification as an inductive type named ColloidRegime. The framework defines exactly five constructors, one for each regime, and proves a theorem that the number of regimes is five. The proof is a simple computation, checked by the kernel. The framework also provides a certificate structure that packages the five-regime count as a single object. The practical content is a formal guarantee: whenever the framework's language names a colloid stability regime, it names one of these five, and no other. This gives the classical taxonomy a precise, machine-checkable boundary.

The framework also links the DLVO secondary minimum, the shallow attractive well that lets particles sit close but not touch, to a band on a potential ratio derived from its cost function J. That link is stated in the library's documentation as a description of intent, not as a proved theorem. The five-regime count is proved; the mapping of the secondary minimum onto a specific cost band is a documented claim awaiting formal derivation.

What the declaration does not claim is broader. It does not claim that the five regimes are the only possible classifications in all of chemistry, nor that the framework has derived the physics of colloidal forces from first principles. The physical bridge from recognition cost to actual inter-particle potentials remains open. The declaration is a formal taxonomy, not a new theory of colloids. It says: if you work in this framework, there are five regimes, and here they are, with machine-checked certainty.

MODEL ColloidRegime · IndisputableMonolith/Chemistry/ColloidStabilityFromJCost.lean
inductive ColloidRegime where
  | electrostatic
  | steric
  | depletion
  | gelForming
  | flocculated
  deriving DecidableEq, Repr, BEq, Fintype
THEOREM colloidRegime_count · IndisputableMonolith/Chemistry/ColloidStabilityFromJCost.lean
theorem colloidRegime_count : Fintype.card ColloidRegime = 5 := by decide
MODEL ColloidStabilityCert · IndisputableMonolith/Chemistry/ColloidStabilityFromJCost.lean
structure ColloidStabilityCert where
  five_regimes : Fintype.card ColloidRegime = 5

What this page does not claim

The physical bridge from recognition cost to actual colloidal forces is not proved. The DLVO secondary minimum mapping to a cost band is documented but not formally derived. The five regimes are not claimed to be the only possible classification in all of chemistry.

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