Encyclopedia Materials Materials Glass Transition From Jcost Glass Regime Count

ARTICLE 3 claims 3 theorems

Materials Glass Transition From Jcost Glass Regime Count

A machine-checked theorem counts exactly five stages in the glass transition, from fragile liquid to aging solid.

The five regimes

A glass does not freeze like water. Cool it and it thickens, then stiffens, then locks into a rigid state without ever forming a crystal lattice. Materials scientists divide this continuous transformation into stages, and a central question is how many stages there are. The Recognition Science framework's machine-checked library of formal theorems answers with a count: exactly five. The theorem, called glassRegime_count, proves that the framework's model of the transition contains five distinct regimes: fragile liquid, strong liquid, supercooled, vitreous, and aging.

The five names map onto the familiar physical picture. A fragile liquid is one whose viscosity changes rapidly with temperature, the kind of melt that thickens abruptly as it cools. A strong liquid changes more gradually. The supercooled regime is the awkward middle zone where the liquid remains liquid below its nominal freezing point. The vitreous regime is the glassy state itself, rigid but not crystalline. Aging is the slow structural relaxation that continues long after the glass has formed, the reason old windowpanes are thicker at the bottom. The framework orders these five along a ladder of fragility, a measure of how sharply viscosity responds to temperature.

In Recognition Science, the framework models the fragility index as a power of the golden ratio phi, the number 1.618 that satisfies r² = r + 1. The theorem fragility_ratio proves that each step up the ladder multiplies the fragility index by phi, so the five regimes are evenly spaced in this logarithmic sense. The framework's library also proves the fragility index is always positive, and packages all three results, the count, the ratio, and the positivity, into a single certificate structure. None of these claims depends on a physical measurement; they are consequences of the framework's starting definitions, checked by the machine.

What the declaration does not claim is just as important. It does not say that real laboratory glasses must exhibit exactly five observable stages, or that every material passes through all five in order. The theorem counts the regimes in the framework's model, not in a sample of silica. It does not assign a temperature or a timescale to any regime. And it does not prove that the golden-ratio spacing matches experiment; that comparison would be an empirical check, not a theorem. The five-regime count is a structural result about how the framework organizes the transition, a claim about the model's internal consistency, not a prediction about a specific substance.

The consequence of the count is that the framework gives glass science a discrete skeleton to hang measurements on. If a material's fragility data can be assigned to one of five rungs, then the golden-ratio spacing becomes a testable prediction, and a mismatch would show where the model needs revision. The count turns a continuous, messy physical process into a finite, checkable structure.

THEOREM glassRegime_count · IndisputableMonolith/Materials/GlassTransitionFromJCost.lean
theorem glassRegime_count : Fintype.card GlassRegime = 5 := by decide
THEOREM fragility_ratio · IndisputableMonolith/Materials/GlassTransitionFromJCost.lean
theorem fragility_ratio (k : ℕ) :
    fragilityIndex (k + 1) / fragilityIndex k = phi := by
  unfold fragilityIndex
  have hpos : (0 : ℝ) < phi ^ k := pow_pos phi_pos k
  rw [div_eq_iff hpos.ne', pow_succ]
  ring
THEOREM fragility_pos · IndisputableMonolith/Materials/GlassTransitionFromJCost.lean
theorem fragility_pos (k : ℕ) : 0 < fragilityIndex k := pow_pos phi_pos k

What this page does not claim

The theorem does not say real laboratory glasses must exhibit exactly five observable stages. The theorem does not assign a temperature or timescale to any regime. The golden-ratio spacing is not claimed to match experiment; that would be an empirical check.

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/Materials/GlassTransitionFromJCost.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