Encyclopedia Chemistry Chemistry Crystal Symmetry Cubic Most Constrained

ARTICLE 4 claims 4 theorems

Chemistry Crystal Symmetry Cubic Most Constrained

In a crystal, the cubic system demands the most from its unit cell: all edges equal and all angles right angles, a strictness the framework's library proves.

The cubic constraint

A crystal is built from a repeating unit cell, a small box defined by three edge lengths (a, b, c) and three angles between them. The seven crystal systems rank these cells from least to most demanding. At the loose end, triclinic crystals only require positive edge lengths. At the strict end sits the cubic system: all three edges equal, and all three angles exactly 90 degrees. That condition is so tight that it automatically satisfies the requirements of the orthorhombic system, which only demands three perpendicular 2-fold axes and allows unequal edges. The framework's machine-checked library of formal theorems proves this implication directly in the declaration cubic_most_constrained: any lattice parameters meeting the cubic constraint also meet the orthorhombic constraint.

The proof is a simple chain of equalities. The cubic constraint states a = b, b = c, alpha = 90, beta = 90, and gamma = 90. The orthorhombic constraint only needs the three angle conditions. Since the cubic constraint includes all three, the implication holds by inspection. The same library also proves the tetragonal system, which requires only one 4-fold axis and allows the c edge to differ, still forces all three right angles. These are formal theorems, checked step by step by a computer, not empirical observations or approximations.

This result matters because it shows how symmetry restrictions nest. A cubic crystal is always orthorhombic in its angles, though not in its edge lengths. The framework presents this as part of a larger derivation: the 8-tick structure forces three spatial dimensions, and filling that space periodically restricts rotations to 1-, 2-, 3-, 4-, and 6-fold axes. From those restrictions, group theory yields exactly 32 crystallographic point groups, which cluster into the 7 crystal systems, which combine with centering options to give 14 Bravais lattices and 230 space groups. The cubic system sits at the most constrained point of this hierarchy, with only 5 point groups and 3 Bravais lattices.

In Recognition Science, the framework models this hierarchy as forced by its underlying ledger geometry, a discrete record of recognition events. The library's theorems, such as exactly_five_rotation_orders and crystal_systems_count, state these counts as formal facts. But the physical bridge from the 8-tick structure to actual three-dimensional space remains open; the framework's own notes flag that the recognition-to-linking bridge is not yet derived. The cubic constraint theorem itself does not depend on that bridge. It is a purely mathematical statement about lattice parameters, true in any account of crystal symmetry.

What the declaration does not claim is broader than what it proves. It does not say cubic crystals are the most symmetric possible, only that the cubic constraint implies the orthorhombic one. It does not derive the cubic system from first principles; it takes the cubic constraint as a definition and proves a consequence. And it does not claim that real crystals obey these constraints perfectly, only that the formal conditions imply each other. The value is in the nesting: a reader can see exactly which symmetry requirements force which others, and trust the implication because a machine checked every step.

THEOREM cubic_most_constrained · IndisputableMonolith/Chemistry/CrystalSymmetry.lean
/-- Higher symmetry systems have more constraints. -/
theorem cubic_most_constrained :
    ∀ p : LatticeParams, cubicConstraint p → orthorhombicConstraint p := by
  intro p ⟨hab, _hbc, ha, hb, hg⟩
  exact ⟨ha, hb, hg⟩
THEOREM tetragonal_implies_orthorhombic · IndisputableMonolith/Chemistry/CrystalSymmetry.lean
tetragonal_implies_orthorhombic · IndisputableMonolith/Chemistry/CrystalSymmetry.lean:216
theorem tetragonal_implies_orthorhombic :
    ∀ p : LatticeParams, tetragonalConstraint p → orthorhombicConstraint p := by
  intro p ⟨_hab, ha, hb, hg⟩
  exact ⟨ha, hb, hg⟩
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 point_groups_sum · IndisputableMonolith/Chemistry/CrystalSymmetry.lean
theorem point_groups_sum :
    (allCrystalSystems.map numPointGroups).sum = totalPointGroups := by
  native_decide

What this page does not claim

The cubic system is the most symmetric of all possible crystal systems. The cubic constraint is derived from the 8-tick structure; it is taken as a definition. Real crystals always satisfy the cubic constraint exactly.

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