theorem
proved
geometric_seed_eq
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Constants.AlphaDerivation on GitHub at line 166.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
-
alpha -
geometric_seed -
geometric_seed_factor_eq_11 -
solid_angle_Q3_eq -
geometric_seed -
from -
geometric_seed
used by
formal source
163noncomputable def geometric_seed : ℝ := solid_angle_Q3 * geometric_seed_factor
164
165/-- The geometric seed equals 4π·11. -/
166theorem geometric_seed_eq : geometric_seed = 4 * Real.pi * 11 := by
167 unfold geometric_seed
168 rw [solid_angle_Q3_eq]
169 simp only [geometric_seed_factor_eq_11, Nat.cast_ofNat]
170
171/-- The alpha seed factorizes into solid angle × passive channels,
172 both derived from Q₃ cube geometry with zero imported constants. -/
173theorem alpha_seed_structural :
174 geometric_seed = solid_angle_Q3 * (passive_field_edges D : ℝ) := rfl
175
176/-! ## Part 5: Wallpaper Groups (Crystallographic Constant) -/
177
178/-- **Axiom (Crystallographic Classification)**: There are exactly 17 wallpaper groups.
179
180The wallpaper groups (or plane symmetry groups) are the 17 distinct ways to tile the
181Euclidean plane with a repeating pattern using rotations, reflections, and translations.
182
183**Historical Reference**:
184- Fedorov, E. S. (1891). "Симметрія правильныхъ системъ фигуръ" [Symmetry of regular systems of figures].
185 Записки Императорского С.-Петербургского Минералогического Общества, 28, 1-146.
186- Pólya, G. (1924). "Über die Analogie der Kristallsymmetrie in der Ebene".
187 Zeitschrift für Kristallographie, 60, 278-282.
188
189**Modern Reference**: Conway, J. H., et al. (2008). "The Symmetries of Things". A K Peters.
190
191The 17 groups are: p1, p2, pm, pg, cm, pmm, pmg, pgg, cmm, p4, p4m, p4g, p3, p3m1, p31m, p6, p6m.
192-/
193theorem wallpaper_groups_count : (17 : ℕ) = 17 := rfl -- Documents the crystallographic constant
194
195/-- The number of distinct 2D wallpaper groups.
196 This is a standard crystallographic constant proven in 1891 by Fedorov. -/