Encyclopedia Chemistry Chemistry Crystal Symmetry Exactly Five Rotation Orders

ARTICLE 3 claims 2 theorems 1 model

Chemistry Crystal Symmetry Exactly Five Rotation Orders

In a periodic crystal, only five rotation orders can appear: 1, 2, 3, 4, and 6. Five-fold symmetry is forbidden.

The crystallographic restriction

In a periodic crystal, the atoms repeat in a regular grid that fills space without gaps. That simple requirement forbids most rotation symmetries. A rotation order is the number of times one must turn a crystal around an axis before it looks exactly the same. The allowed orders are 1, 2, 3, 4, and 6. This is the crystallographic restriction, known since the nineteenth century and central to how mineralogists classify crystals.

The reason is geometric. A 2-fold axis turns a crystal by 180 degrees, a 3-fold by 120, a 4-fold by 90, and a 6-fold by 60. Each of these rotations can combine with translations to tile the plane or space completely. A 5-fold rotation, by contrast, demands a 72-degree turn. Five such turns bring one back to the start, but the geometry of the lattice cannot accommodate that angle together with the necessary translations. The same obstruction rules out 7-fold and higher orders. The result is a short list: only five rotation orders are possible.

This restriction is the foundation of the classification of crystals. Combining the five allowed rotation axes with reflections, inversions, and rotoinversions yields exactly 32 crystallographic point groups. Those 32 groups cluster into 7 crystal systems, from triclinic with no essential symmetry to cubic with four 3-fold axes along the body diagonals. Adding the possible lattice centering gives 14 Bravais lattices, and including translations yields 230 space groups. Every crystal known falls into one of these classes.

In Recognition Science, the framework's machine-checked library of formal theorems records this result. The declaration exactly_five_rotation_orders states that the list of allowed rotation orders has length five. The framework derives the same list from its own starting point, in which three spatial dimensions are forced by an eight-tick recognition cycle. The library also proves that 5 and 7 are not crystallographic, and that the 32 point groups sum correctly across the 7 crystal systems. These are formal statements about the definitions the framework chooses, not new measurements of crystals.

The practical consequence is unchanged. The crystallographic restriction is why a snowflake shows six arms and never five, and why quasicrystals with five-fold symmetry, discovered in the 1980s, were such a surprise: they are ordered but not periodic, so the classical restriction does not apply to them. The framework's theorem confirms the classical list, it does not extend it.

THEOREM exactly_five_rotation_orders · IndisputableMonolith/Chemistry/CrystalSymmetry.lean
exactly_five_rotation_orders · IndisputableMonolith/Chemistry/CrystalSymmetry.lean:73
/-- There are exactly 5 allowed rotation orders. -/
theorem exactly_five_rotation_orders : allowedRotationOrders.length = 5 := by rfl
THEOREM five_not_crystallographic · seven_not_crystallographic · IndisputableMonolith/Chemistry/CrystalSymmetry.lean
five_not_crystallographic · IndisputableMonolith/Chemistry/CrystalSymmetry.lean:63
/-- 5-fold symmetry is NOT crystallographic. -/
theorem five_not_crystallographic : ¬isCrystallographic 5 := by
  simp only [isCrystallographic, allowedRotationOrders]
  decide
seven_not_crystallographic · IndisputableMonolith/Chemistry/CrystalSymmetry.lean:68
/-- 7-fold symmetry is NOT crystallographic. -/
theorem seven_not_crystallographic : ¬isCrystallographic 7 := by
  simp only [isCrystallographic, allowedRotationOrders]
  decide
MODEL totalPointGroups · IndisputableMonolith/Chemistry/CrystalSymmetry.lean
/-- Total number of crystallographic point groups. -/
def totalPointGroups : ℕ := 32

What this page does not claim

The theorem does not prove that real crystals exist or that any specific mineral has a given symmetry. The framework's derivation of the rotation orders does not replace the classical geometric proof from lattice translations. The declaration does not address quasicrystals or other aperiodic tilings with 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/CrystalSymmetry.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