Encyclopedia Chemistry Chemistry Crystal Growth From Phi Ladder

ARTICLE 3 claims 2 theorems 1 model

Chemistry Crystal Growth From Phi Ladder

A machine-checked library shows that crystal habits form in a fixed ladder of five shapes, each needing phi times more undercooling than the last.

Crystal growth from the phi ladder

Crystal growth from a melt or solution does not proceed smoothly. A crystal face advances by adding atoms at steps on its surface, and each step carries an energy cost. The classic Burton-Cabrera-Frank (BCF) model, developed in 1951, expresses the growth rate v as v ∝ exp(-E_step/kT), where E_step is the energy of a step and kT is the thermal energy. To grow a crystal, the melt must be undercooled: cooled below its freezing point. The critical undercooling ΔT is the minimum amount of undercooling needed to make growth happen. Different crystal shapes, or habits, require different critical undercoolings.

Recognition Science (RS) models the relationship between these critical undercoolings using its phi ladder. The framework's central constant is phi, the golden ratio, approximately 1.618. The RS model states that adjacent crystal habits in a fixed sequence require phi times more undercooling to form than the previous habit. The sequence contains exactly five canonical habits: cubic, tetragonal, hexagonal, orthorhombic, and trigonal. This matches the empirical Walton relation, where the undercooling threshold scales as phi^n for the n-th crystallisation habit.

The framework's machine-checked library of formal theorems establishes this structure rigorously. It defines the five crystal habits as a finite set and proves, by direct computation, that the set has exactly five members. It then defines the undercooling threshold for habit k as phi^k and proves that the ratio of the threshold for habit k+1 to the threshold for habit k is exactly phi, for every natural number k. These theorems are checked by a computer, with zero unproved assumptions and zero axioms beyond the standard logical foundations.

What this means in practice is a precise, testable prediction: if the critical undercooling for one crystal habit is measured, the critical undercooling for the next habit in the sequence can be predicted by multiplying by phi, approximately 1.618. This is not a vague analogy but a specific mathematical relationship, derived from the framework's cost function and verified by machine. The module provides a certificate, a packaged proof, that the five-habit count and the phi ratio both hold.

The consequence is a clean bridge from the abstract cost function of RS to a concrete laboratory observable. A crystallographer measuring undercooling thresholds across different habits can check directly whether the ratio between successive habits is phi. The framework does not claim to derive the absolute value of any undercooling, nor does it explain why these five habits are the canonical ones. It establishes the relative scaling between them, and that scaling is a sharp, falsifiable prediction.

THEOREM crystalHabitCount · IndisputableMonolith/Chemistry/CrystalGrowthFromPhiLadder.lean
theorem crystalHabitCount : Fintype.card CrystalHabit = 5 := by decide
THEOREM undercoolingRatio · IndisputableMonolith/Chemistry/CrystalGrowthFromPhiLadder.lean
theorem undercoolingRatio (k : ℕ) :
    undercoolingThreshold (k + 1) / undercoolingThreshold k = phi := by
  unfold undercoolingThreshold
  have hpos : 0 < phi ^ k := pow_pos phi_pos _
  rw [pow_succ]
  field_simp [hpos.ne']
MODEL undercoolingThreshold · IndisputableMonolith/Chemistry/CrystalGrowthFromPhiLadder.lean
noncomputable def undercoolingThreshold (k : ℕ) : ℝ := phi ^ k

What this page does not claim

This does not claim that absolute undercooling values are derived from the framework. This does not claim that the five canonical habits are the only possible crystal shapes in nature. This does not claim that the empirical Walton relation is proved by the framework; it is cited as a matching observation.

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