Encyclopedia Chemistry Chemistry Quasicrystal
ARTICLE 4 claims 2 theorems 2 models
Chemistry Quasicrystal
Quasicrystals are ordered but never repeating; the golden ratio describes their geometry and, in one framework, their stability.
The golden ratio in quasicrystals
A quasicrystal is a material whose atoms are arranged in a pattern that is ordered but never repeats exactly. Unlike ordinary crystals, which repeat in a regular grid, quasicrystals show long-range order without translational symmetry. Their diffraction patterns display sharp spots, a sign of order, arranged in ways that ordinary crystals cannot produce, such as five-fold symmetry. The golden ratio φ, about 1.618, appears throughout this geometry: in the ratio of areas of the thick and thin rhombi in a Penrose tiling, in the spacing of diffraction spots, and in the edge-to-radius ratio of a regular icosahedron.
The golden ratio is not just a geometric curiosity here. It is the unique number whose reciprocal is one less than itself: 1/φ = φ - 1, approximately 0.618. This self-similar property is what lets a Penrose tiling fill the plane with two tile shapes whose frequencies and areas both involve φ. The same ratio appears in the icosahedral symmetry of many real quasicrystals, where five-fold axes, forbidden in ordinary crystals, are allowed precisely because the pattern never repeats.
In Recognition Science, the framework models quasicrystal stability through a simple energy proxy. The framework defines a tiling energy as the square of the deviation of a tile ratio from 1/φ. Its library proves that this energy is minimized exactly when the ratio equals 1/φ, and that the minimum energy is zero. In plain language, the framework's account says that the golden ratio is not merely present in quasicrystal geometry; it is the ratio that minimizes structural strain, and any deviation from it increases the energy. This is a model choice, a definition of what stability means in this setting, not a measurement of real materials.
The framework's library also records falsifiable predictions. If stable quasicrystals were found with tile ratios not involving φ, or if other irrational ratios such as √2 or √3 produced equally stable structures, or if non-five-fold quasicrystals were equally common, the φ-stability account would fail. These criteria give the model a concrete way to be tested against experiment. The classical facts about φ in quasicrystal geometry stand on their own; the framework's energy story is one specific way to explain why that particular ratio should win.
MODEL quasicrystal_stable · IndisputableMonolith/Chemistry/Quasicrystal.lean
/-- Stability: energy is minimized at the golden ratio ratio. -/
theorem quasicrystal_stable (x : ℝ) : tiling_energy phi_ratio ≤ tiling_energy x := by
dsimp [tiling_energy, phi_ratio]
have : (0 : ℝ) ≤ (x - (1 / Constants.phi)) ^ 2 := sq_nonneg _
simpa using this
MODEL tiling_energy · IndisputableMonolith/Chemistry/Quasicrystal.lean
/-- Convex energy proxy minimized at `phi_ratio`. -/
def tiling_energy (x : ℝ) : ℝ := (x - phi_ratio) ^ 2
THEOREM quasicrystal_stable · min_energy_zero · IndisputableMonolith/Chemistry/Quasicrystal.lean
/-- Stability: energy is minimized at the golden ratio ratio. -/
theorem quasicrystal_stable (x : ℝ) : tiling_energy phi_ratio ≤ tiling_energy x := by
dsimp [tiling_energy, phi_ratio]
have : (0 : ℝ) ≤ (x - (1 / Constants.phi)) ^ 2 := sq_nonneg _
simpa using this
/-- The minimum energy is exactly zero. -/
theorem min_energy_zero : tiling_energy phi_ratio = 0 := by
simp only [tiling_energy, phi_ratio, sub_self, sq, mul_zero]
THEOREM phi_ratio_identity · IndisputableMonolith/Chemistry/Quasicrystal.lean
/-- 1/φ = φ - 1 (fundamental φ identity). -/
theorem phi_ratio_identity : phi_ratio = Constants.phi - 1 := by
rw [phi_ratio]
have hphi_sq := Constants.phi_sq_eq
have hphi_pos := Constants.phi_pos
-- φ² = φ + 1 implies φ(φ-1) = 1, so 1/φ = φ - 1
have h : Constants.phi * (Constants.phi - 1) = 1 := by
calc Constants.phi * (Constants.phi - 1)
= Constants.phi^2 - Constants.phi := by ring
_ = (Constants.phi + 1) - Constants.phi := by rw [hphi_sq]
_ = 1 := by ring
field_simp
linarith [h]
What this page does not claim
No claim that real quasicrystals are actually stabilized by this specific energy function. No derivation of the golden ratio from first principles within this module. No claim that all quasicrystals must have five-fold symmetry.
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/Quasicrystal.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:
- How does the φ-stability energy proxy relate to actual measured formation energies of real quasicrystals?
- What experimental evidence distinguishes the φ-ratio prediction from alternative irrational ratios like √2 or √3?
- Does the framework's energy model extend to other aperiodic tilings beyond the Penrose rhombus case?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MODEL quasicrystal_stable · IndisputableMonolith/Chemistry/Quasicrystal.lean
/-- Stability: energy is minimized at the golden ratio ratio. -/ theorem quasicrystal_stable (x : ℝ) : tiling_energy phi_ratio ≤ tiling_energy x := by dsimp [tiling_energy, phi_ratio] have : (0 : ℝ) ≤ (x - (1 / Constants.phi)) ^ 2 := sq_nonneg _ simpa using thisA quasicrystal is a material whose atoms are arranged in a pattern that is ordered but never repeats exactly. quasicrystal_stable · IndisputableMonolith/Chemistry/Quasicrystal.leanMODEL tiling_energy · IndisputableMonolith/Chemistry/Quasicrystal.lean
/-- Convex energy proxy minimized at `phi_ratio`. -/ def tiling_energy (x : ℝ) : ℝ := (x - phi_ratio) ^ 2The framework defines a tiling energy as the square of the deviation of a tile ratio from 1/φ. tiling_energy · IndisputableMonolith/Chemistry/Quasicrystal.leanTHEOREM quasicrystal_stable · min_energy_zero · IndisputableMonolith/Chemistry/Quasicrystal.lean
/-- Stability: energy is minimized at the golden ratio ratio. -/ theorem quasicrystal_stable (x : ℝ) : tiling_energy phi_ratio ≤ tiling_energy x := by dsimp [tiling_energy, phi_ratio] have : (0 : ℝ) ≤ (x - (1 / Constants.phi)) ^ 2 := sq_nonneg _ simpa using this/-- The minimum energy is exactly zero. -/ theorem min_energy_zero : tiling_energy phi_ratio = 0 := by simp only [tiling_energy, phi_ratio, sub_self, sq, mul_zero]Its library proves that this energy is minimized exactly when the ratio equals 1/φ, and that the minimum energy is zero. quasicrystal_stable · min_energy_zero · IndisputableMonolith/Chemistry/Quasicrystal.leanTHEOREM phi_ratio_identity · IndisputableMonolith/Chemistry/Quasicrystal.lean
/-- 1/φ = φ - 1 (fundamental φ identity). -/ theorem phi_ratio_identity : phi_ratio = Constants.phi - 1 := by rw [phi_ratio] have hphi_sq := Constants.phi_sq_eq have hphi_pos := Constants.phi_pos -- φ² = φ + 1 implies φ(φ-1) = 1, so 1/φ = φ - 1 have h : Constants.phi * (Constants.phi - 1) = 1 := by calc Constants.phi * (Constants.phi - 1) = Constants.phi^2 - Constants.phi := by ring _ = (Constants.phi + 1) - Constants.phi := by rw [hphi_sq] _ = 1 := by ring field_simp linarith [h]The golden ratio is the unique number whose reciprocal is one less than itself: 1/φ = φ - 1. phi_ratio_identity · IndisputableMonolith/Chemistry/Quasicrystal.lean