Encyclopedia Chemistry Chemistry Crystal Growth From Phi Ladder Crystal Growth Cert

ARTICLE 3 claims 2 theorems 1 hypothesis

Chemistry Crystal Growth From Phi Ladder Crystal Growth Cert

A machine-checked certificate packages a claim about crystal habits and undercooling, but the physics it rests on remains a prediction, not a proof.

The growth certificate

Crystal growth from a melt or solution requires the liquid to be cooled below its freezing point before solid forms. The amount of cooling needed, the critical undercooling, is not the same for every face of a crystal. Different crystal habits, the shapes a crystal takes such as cubic or hexagonal, have different step energies and therefore different thresholds for growth. The Burton-Cabrera-Frank model describes this threshold as depending exponentially on the energy needed to add a layer at a step.

The Recognition Science framework proposes that these thresholds are not arbitrary. It defines a ladder of five canonical crystal habits: cubic, tetragonal, hexagonal, orthorhombic, and trigonal. Its claim is that adjacent habits on this ladder require about 1.618 times more undercooling to form, a ratio it derives from the golden ratio phi. The certificate CrystalGrowthCert, a machine-checked record in the framework's library of formal theorems, bundles two facts: the count of these five habits, and the statement that the ratio of thresholds for any two adjacent steps equals phi.

The certificate itself is a ledger, a discrete record of formal claims, not a laboratory measurement. It proves the arithmetic of the ratio: if you define the threshold for step k as phi raised to the power k, then dividing the threshold for step k+1 by the threshold for step k gives exactly phi. This is a theorem about the definition, checked by the machine. It also proves, by exhaustive enumeration, that the list of five habits has exactly five members. These two proofs are the entire content of the certificate.

What the certificate does not do is establish that real crystals follow this ladder. The connection between the five named habits and the phi ratio is a prediction, not a derived law. The framework itself labels this as a prediction matching the empirical Walton relation, but the certificate contains no data from a laboratory and no theorem linking its abstract ladder to measured undercooling thresholds. The step energy from the BCF model does not appear in the certificate; the certificate works only with the phi-power definition. The physical claim that adjacent habits require phi times more undercooling remains a hypothesis with a named falsifier: a measurement of any adjacent pair of these five habits whose threshold ratio departs from phi.

For a reader, the certificate is a precise statement of what the framework commits to, nothing more. It says: if you accept this five-habit ladder and this phi-power definition, then the ratio follows. It does not say that nature accepts the ladder. That separation, between a formal consequence and an empirical claim, is the whole point of the certificate's existence.

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']
HYPOTHESIS 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 certificate does not contain any experimental data or measurement receipts. The certificate does not prove that real crystal habits follow the phi ladder; that remains a prediction. The certificate does not derive the step energy or any other parameter of the Burton-Cabrera-Frank model.

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