Encyclopedia Constants Constants Alpha Derivation Wallpaper Groups Count
ARTICLE 4 claims 4 theorems
Constants Alpha Derivation Wallpaper Groups Count
A machine-checked theorem records that there are 17 wallpaper groups, the classical crystallographic constant, without deriving it from first principles.
The wallpaper group count
In mathematics, a wallpaper group is one of the 17 symmetry patterns that can tile a flat plane without gaps or overlaps. The 17 groups classify the possible repeating designs, from simple grids to elaborate Islamic star patterns. This count is a classical result, proved in the 19th century and long accepted as a standard fact of crystallography.
The Recognition Science framework's machine-checked library of formal theorems contains a declaration, wallpaper_groups_count, that records this classical constant. The declaration is a theorem that states (17 : ℕ) = 17, which is true by definition. It does not prove that there are exactly 17 wallpaper groups; it simply documents the known crystallographic constant as a number used in a larger construction.
In Recognition Science, the framework models reality as a discrete ledger of recognition events, a record of events with a forced cost. Within this model, the number 17 appears in a formula for a geometric seed, a quantity that was once proposed as a way to derive the fine-structure constant. The formula uses 17 as a factor in the denominator of a seam count: 6 faces times 17 wallpaper groups equals 102, plus 1 for Euler closure, giving 103.
The framework's library proves several small facts about this construction: that a cube in three dimensions has 8 vertices, 12 edges, and 6 faces; that 11 equals the number of edges minus one; and that 102 equals 2 times 3 times 17. These are all simple arithmetic identities, checked by the machine. The library also proves that the geometric seed equals 4π times 11, using the solid angle of a cube and the count of passive edges.
What the declaration does not claim is that the number 17 is derived from the framework's principles. The count of wallpaper groups is an external, classical input, not a consequence of the forcing chain. The framework's own documentation is explicit: the identification of the seed 4π¹¹ with the inverse fine-structure constant is retired, not a derivation. The kernel proves the premise false, and the exact value of the inverse fine-structure constant remains a boundary datum, not a derived result.
THEOREM wallpaper_groups_count · IndisputableMonolith/Constants/AlphaDerivation.lean
/-- **Axiom (Crystallographic Classification)**: There are exactly 17 wallpaper groups.
The wallpaper groups (or plane symmetry groups) are the 17 distinct ways to tile the
Euclidean plane with a repeating pattern using rotations, reflections, and translations.
**Historical Reference**:
- Fedorov, E. S. (1891). "Симметрія правильныхъ системъ фигуръ" [Symmetry of regular systems of figures].
Записки Императорского С.-Петербургского Минералогического Общества, 28, 1-146.
- Pólya, G. (1924). "Über die Analogie der Kristallsymmetrie in der Ebene".
Zeitschrift für Kristallographie, 60, 278-282.
**Modern Reference**: Conway, J. H., et al. (2008). "The Symmetries of Things". A K Peters.
The 17 groups are: p1, p2, pm, pg, cm, pmm, pmg, pgg, cmm, p4, p4m, p4g, p3, p3m1, p31m, p6, p6m.
-/
theorem wallpaper_groups_count : (17 : ℕ) = 17 := rfl -- Documents the crystallographic constant
THEOREM vertices_at_D3 · edges_at_D3 · faces_at_D3 · IndisputableMonolith/Constants/AlphaDerivation.lean
/-- For D=3: vertices = 8.
Kernel `rfl` (definitional); avoid `native_decide` so downstream
positivity/seed facts stay free of `Lean.ofReduceBool` / `Lean.trustCompiler`. -/
theorem vertices_at_D3 : cube_vertices D = 8 := rfl
/-- For D=3: edges = 12. -/
theorem edges_at_D3 : cube_edges D = 12 := rfl
/-- For D=3: faces = 6. -/
theorem faces_at_D3 : cube_faces D = 6 := rfl
THEOREM one_oh_two_is_forced · IndisputableMonolith/Constants/AlphaDerivation.lean
/-- The number 102 is not arbitrary: it is 6×17. -/
theorem one_oh_two_is_forced : (102 : ℕ) = 2 * 3 * 17 := rfl
THEOREM geometric_seed_eq · IndisputableMonolith/Constants/AlphaDerivation.lean
/-- The geometric seed equals 4π·11. -/
theorem geometric_seed_eq : geometric_seed = 4 * Real.pi * 11 := by
unfold geometric_seed
rw [solid_angle_Q3_eq]
simp only [geometric_seed_factor_eq_11, Nat.cast_ofNat]
What this page does not claim
The number 17 is not derived from the framework's principles. The identification of 4π¹¹ with the inverse fine-structure constant is not a valid derivation. The exact value of the inverse fine-structure constant is not proved by the framework.
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/Constants/AlphaDerivation.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:
- What is the exact mathematical proof that there are exactly 17 wallpaper groups?
- How does the framework's discrete ledger model relate to the continuous symmetries of wallpaper patterns?
- What is the current status of the fine-structure constant derivation within the framework?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM wallpaper_groups_count · IndisputableMonolith/Constants/AlphaDerivation.lean
/-- **Axiom (Crystallographic Classification)**: There are exactly 17 wallpaper groups. The wallpaper groups (or plane symmetry groups) are the 17 distinct ways to tile the Euclidean plane with a repeating pattern using rotations, reflections, and translations. **Historical Reference**: - Fedorov, E. S. (1891). "Симметрія правильныхъ системъ фигуръ" [Symmetry of regular systems of figures]. Записки Императорского С.-Петербургского Минералогического Общества, 28, 1-146. - Pólya, G. (1924). "Über die Analogie der Kristallsymmetrie in der Ebene". Zeitschrift für Kristallographie, 60, 278-282. **Modern Reference**: Conway, J. H., et al. (2008). "The Symmetries of Things". A K Peters. The 17 groups are: p1, p2, pm, pg, cm, pmm, pmg, pgg, cmm, p4, p4m, p4g, p3, p3m1, p31m, p6, p6m. -/ theorem wallpaper_groups_count : (17 : ℕ) = 17 := rfl -- Documents the crystallographic constantThe declaration wallpaper_groups_count records the classical constant 17. wallpaper_groups_count · IndisputableMonolith/Constants/AlphaDerivation.leanTHEOREM vertices_at_D3 · edges_at_D3 · faces_at_D3 · IndisputableMonolith/Constants/AlphaDerivation.lean
/-- For D=3: vertices = 8. Kernel `rfl` (definitional); avoid `native_decide` so downstream positivity/seed facts stay free of `Lean.ofReduceBool` / `Lean.trustCompiler`. -/ theorem vertices_at_D3 : cube_vertices D = 8 := rfl/-- For D=3: edges = 12. -/ theorem edges_at_D3 : cube_edges D = 12 := rfl/-- For D=3: faces = 6. -/ theorem faces_at_D3 : cube_faces D = 6 := rflThe framework's library proves that a cube in three dimensions has 8 vertices, 12 edges, and 6 faces. vertices_at_D3 · edges_at_D3 · faces_at_D3 · IndisputableMonolith/Constants/AlphaDerivation.leanTHEOREM one_oh_two_is_forced · IndisputableMonolith/Constants/AlphaDerivation.lean
/-- The number 102 is not arbitrary: it is 6×17. -/ theorem one_oh_two_is_forced : (102 : ℕ) = 2 * 3 * 17 := rflThe framework's library proves that 102 equals 2 times 3 times 17. one_oh_two_is_forced · IndisputableMonolith/Constants/AlphaDerivation.leanTHEOREM geometric_seed_eq · IndisputableMonolith/Constants/AlphaDerivation.lean
/-- The geometric seed equals 4π·11. -/ theorem geometric_seed_eq : geometric_seed = 4 * Real.pi * 11 := by unfold geometric_seed rw [solid_angle_Q3_eq] simp only [geometric_seed_factor_eq_11, Nat.cast_ofNat]The framework's library proves that the geometric seed equals 4π times 11. geometric_seed_eq · IndisputableMonolith/Constants/AlphaDerivation.lean