pith. machine review for the scientific record. sign in
theorem

square_loop_closed

proved
show as:
view math explainer →
module
IndisputableMonolith.Foundation.WindingCharges
domain
Foundation
line
377 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Foundation.WindingCharges on GitHub at line 377.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

depends on

formal source

 374def square_loop {D : ℕ} (j k : Fin D) : LatticePath D :=
 375  [.plus j, .plus k, .minus j, .minus k]
 376
 377theorem square_loop_closed {D : ℕ} (j k : Fin D) :
 378    is_closed (square_loop j k) := by
 379  intro axis
 380  simp [square_loop, winding_number, step_displacement]
 381  split <;> split <;> simp
 382
 383/-- The square loop can be decomposed into two cancelling pairs
 384    when j = k (trivial case). When j ≠ k, the loop is genuinely
 385    2-dimensional — it bounds a square face of the lattice. -/
 386theorem square_loop_trivial_when_equal {D : ℕ} (j : Fin D) :
 387    ∀ axis : Fin D,
 388      winding_number (square_loop j j) axis = winding_number ([] : LatticePath D) axis := by
 389  intro axis
 390  simp [square_loop, winding_number, step_displacement]
 391  split <;> simp
 392
 393/-! ## Part 10: Why D = 3 Is Special (Combinatorial) -/
 394
 395/-- **THEOREM (D Independent Closed Loops)**:
 396    In D dimensions, there are exactly D · (D-1) / 2 independent
 397    non-trivial square loops (one per pair of axes).
 398
 399    For D = 3: 3 · 2 / 2 = 3 independent loops.
 400    These 3 loops bound the 3 independent faces of Q₃.
 401    Each face contributes one topological charge (the flux through it). -/
 402def independent_loop_count (D : ℕ) : ℕ := D * (D - 1) / 2
 403
 404theorem three_independent_loops_D3 :
 405    independent_loop_count 3 = 3 := by native_decide
 406
 407/-- **THEOREM (Face Count = Loop Count for D = 3)**: