Encyclopedia Chemistry Chemistry Crystal Symmetry Tetragonal Fold From 8
ARTICLE 4 claims 2 theorems 2 models
Chemistry Crystal Symmetry Tetragonal Fold From 8
In a crystal, a fourfold rotation axis means a quarter-turn leaves the structure unchanged; here is how that number arises from a framework's eight-step cycle.
The tetragonal fold
A crystal's tetragonal system is defined by a single fourfold rotation axis: turn the lattice a quarter of a full circle, 90 degrees, and every atom lands on an atom. The seven crystal systems of classical crystallography, from triclinic with no required symmetry to cubic with four threefold axes, are classified by exactly which rotation axes a periodic space-filling arrangement can possess. The crystallographic restriction theorem, known since the nineteenth century, states that only rotations of order 1, 2, 3, 4, and 6 can appear in a periodic tiling of three-dimensional space; fivefold and sevenfold rotations are forbidden because they cannot fill space without gaps.
In Recognition Science, the framework models the counting of these allowed axes as arithmetic on an eight-step cycle. The declaration tetragonal_fold_from_8 states the equation 8 / 2 = 4, and the framework reads this as the fourfold axis emerging from halving an eight-tick cycle. The same file derives the twofold axis as 8 / 4 = 2, the trigonal axis as 6 / 2 = 3, and the hexagonal axis as 8 - 2 = 6. These are not physical measurements; they are formal statements that the framework's internal arithmetic reproduces the classical list of allowed rotation orders. The library also defines the tetragonal lattice constraint, equal side lengths a = b with all angles 90 degrees, and proves that every tetragonal lattice is also orthorhombic, a standard inclusion in the classical hierarchy of crystal systems.
The framework's contribution is not a new prediction about crystals. Crystallographers already know that exactly five rotation orders are allowed, that these cluster into 7 crystal systems, and that centering options yield 14 Bravais lattices and 230 space groups. What the framework adds is a claimed derivation of the number 4 from its own eight-step recognition cycle, a cycle that in turn is forced by the framework's foundational cost function. The arithmetic 8 / 2 = 4 is trivial; the substantial claim, still open, is that the eight-tick cycle itself is the correct origin of the crystallographic restriction.
What the declaration does not claim is just as important. It does not prove that real crystals must be tetragonal, nor that the number 4 is physically preferred over other allowed orders. It does not derive the crystallographic restriction theorem from first principles; that theorem remains a classical result of geometry and group theory. The declaration is a formal identity inside a specific framework, and its meaning depends entirely on whether the framework's eight-step cycle is accepted as the right foundation for three-dimensional periodicity.
THEOREM tetragonal_fold_from_8 · IndisputableMonolith/Chemistry/CrystalSymmetry.lean
/-- 4-fold symmetry in tetragonal relates to 8 / 2 = 4. -/
theorem tetragonal_fold_from_8 : 8 / 2 = 4 := by rfl
MODEL tetragonal_fold_from_8 · IndisputableMonolith/Chemistry/CrystalSymmetry.lean
/-- 4-fold symmetry in tetragonal relates to 8 / 2 = 4. -/
theorem tetragonal_fold_from_8 : 8 / 2 = 4 := by rfl
MODEL tetragonalConstraint · IndisputableMonolith/Chemistry/CrystalSymmetry.lean
/-- Tetragonal: a = b, α = β = γ = 90°. -/
def tetragonalConstraint (p : LatticeParams) : Prop :=
p.a = p.b ∧ p.alpha = 90 ∧ p.beta = 90 ∧ p.gamma = 90
THEOREM tetragonal_implies_orthorhombic · IndisputableMonolith/Chemistry/CrystalSymmetry.lean
theorem tetragonal_implies_orthorhombic :
∀ p : LatticeParams, tetragonalConstraint p → orthorhombicConstraint p := by
intro p ⟨_hab, ha, hb, hg⟩
exact ⟨ha, hb, hg⟩
What this page does not claim
This answer does not claim that real crystals must be tetragonal. This answer does not claim that the crystallographic restriction theorem is derived by the framework. This answer does not claim that the eight-tick cycle is physically established.
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:
- Does the eight-tick cycle force the crystallographic restriction theorem, or only reproduce its arithmetic?
- What physical evidence would distinguish the framework's eight-step origin from the classical geometric proof of allowed rotation orders?
- How does the framework derive the number 8 itself from its foundational cost function?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM tetragonal_fold_from_8 · IndisputableMonolith/Chemistry/CrystalSymmetry.lean
/-- 4-fold symmetry in tetragonal relates to 8 / 2 = 4. -/ theorem tetragonal_fold_from_8 : 8 / 2 = 4 := by rflThe declaration tetragonal_fold_from_8 states the equation 8 / 2 = 4. tetragonal_fold_from_8 · IndisputableMonolith/Chemistry/CrystalSymmetry.leanMODEL tetragonal_fold_from_8 · IndisputableMonolith/Chemistry/CrystalSymmetry.lean
/-- 4-fold symmetry in tetragonal relates to 8 / 2 = 4. -/ theorem tetragonal_fold_from_8 : 8 / 2 = 4 := by rflThe framework models the counting of allowed axes as arithmetic on an eight-step cycle. tetragonal_fold_from_8 · IndisputableMonolith/Chemistry/CrystalSymmetry.leanMODEL tetragonalConstraint · IndisputableMonolith/Chemistry/CrystalSymmetry.lean
/-- Tetragonal: a = b, α = β = γ = 90°. -/ def tetragonalConstraint (p : LatticeParams) : Prop := p.a = p.b ∧ p.alpha = 90 ∧ p.beta = 90 ∧ p.gamma = 90The library defines the tetragonal lattice constraint with equal side lengths and all angles 90 degrees. tetragonalConstraint · IndisputableMonolith/Chemistry/CrystalSymmetry.leanTHEOREM tetragonal_implies_orthorhombic · IndisputableMonolith/Chemistry/CrystalSymmetry.lean
theorem tetragonal_implies_orthorhombic : ∀ p : LatticeParams, tetragonalConstraint p → orthorhombicConstraint p := by intro p ⟨_hab, ha, hb, hg⟩ exact ⟨ha, hb, hg⟩The library proves that every tetragonal lattice is also orthorhombic. tetragonal_implies_orthorhombic · IndisputableMonolith/Chemistry/CrystalSymmetry.lean