Encyclopedia Chemistry Chemistry Crystal Growth From Phi Ladder Undercooling Ratio
ARTICLE 3 claims 1 theorem 2 models
Chemistry Crystal Growth From Phi Ladder Undercooling Ratio
For five common crystal habits, the framework's undercoolingRatio theorem proves that each step up the habit ladder demands exactly φ times more undercooling.
The undercooling ratio
In classical crystallography, the rate at which a crystal grows from its melt is governed by the Burton-Cabrera-Frank (BCF) model. The central quantity is the step energy E_step: growth proceeds by atoms attaching to existing steps on the crystal surface, and the rate v follows v ∝ exp(-E_step/kT). To grow a crystal, one must cool the melt below its freezing point; the difference is the undercooling ΔT. Different crystal habits, cubic, tetragonal, hexagonal, orthorhombic, trigonal, each have their own step energy and therefore their own critical undercooling threshold.
A long-standing empirical observation, the Walton relation, notes that these thresholds do not appear at arbitrary intervals. For successive crystallization habits, the required undercooling scales in a geometric progression. The Recognition Science framework takes this observation and gives it a precise form. Its machine-checked library of formal theorems defines a sequence of thresholds: undercoolingThreshold(k) = φ^k, where φ is the golden ratio, approximately 1.618. The undercoolingRatio theorem then proves, by direct algebra, that the ratio of any threshold to the one before it is exactly φ: undercoolingThreshold(k+1) / undercoolingThreshold(k) = φ.
What the theorem actually establishes is a pure arithmetic identity about a defined sequence. It proves that if one defines the thresholds as powers of φ, then adjacent thresholds have the ratio φ. It does not, by itself, prove that real crystals obey this rule. The framework's library also records a certificate, a structure bundling the five-habit count and the ratio theorem, but the bridge from the formal identity to measured crystal growth is an empirical check, not a theorem. The framework models the Walton relation as a φ-ladder; it does not derive the relation from first principles.
The consequence is a clean way to state a known empirical pattern. Instead of saying that undercooling thresholds are "roughly geometric," the framework says: within its model, the ratio is exactly the golden ratio. That precision is useful for organizing data, but it is a definitional choice about how to represent the thresholds, not a discovery about the physics of crystal growth. The physics, the step energies and the BCF rate law, remains classical; the framework contributes a compact notation and a proved identity about that notation.
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
MODEL CrystalGrowthCert · IndisputableMonolith/Chemistry/CrystalGrowthFromPhiLadder.lean
structure CrystalGrowthCert where
five_habits : Fintype.card CrystalHabit = 5
phi_ratio : ∀ k, undercoolingThreshold (k + 1) / undercoolingThreshold k = phi
What this page does not claim
The theorem does not prove that real crystals obey the φ ratio; that remains an empirical check. The framework does not derive the Walton relation from the BCF model or from any deeper principle. The definition of undercoolingThreshold as φ^k is a modeling choice, not a consequence of the forcing chain.
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:
- Which measured crystal growth datasets provide the strongest test of the φ-ladder prediction?
- What is the physical origin of the step energy that would make the φ-ladder exact rather than approximate?
- Does the φ-ladder extend beyond the five canonical habits to other crystallographic forms?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
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']The undercoolingRatio theorem proves that the ratio of any threshold to the one before it is exactly φ. undercoolingRatio · IndisputableMonolith/Chemistry/CrystalGrowthFromPhiLadder.leanMODEL undercoolingThreshold · IndisputableMonolith/Chemistry/CrystalGrowthFromPhiLadder.lean
noncomputable def undercoolingThreshold (k : ℕ) : ℝ := phi ^ kThe framework's library defines a sequence of thresholds where undercoolingThreshold(k) = φ^k. undercoolingThreshold · IndisputableMonolith/Chemistry/CrystalGrowthFromPhiLadder.leanMODEL CrystalGrowthCert · IndisputableMonolith/Chemistry/CrystalGrowthFromPhiLadder.lean
structure CrystalGrowthCert where five_habits : Fintype.card CrystalHabit = 5 phi_ratio : ∀ k, undercoolingThreshold (k + 1) / undercoolingThreshold k = phiThe framework models the Walton relation as a φ-ladder. CrystalGrowthCert · IndisputableMonolith/Chemistry/CrystalGrowthFromPhiLadder.lean