structure
definition
ChernNumber
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Physics.QuantumHallEffect on GitHub at line 35.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
32/-- A Chern number is an integer-valued topological invariant.
33 In the QHE, it equals the number of filled Landau levels (IQHE)
34 or the composite fermion Landau level structure (FQHE). -/
35structure ChernNumber where
36 value : ℤ
37 -- Chern number is integer-valued by definition (topological quantization)
38
39/-- The Hall conductance in units of e²/h equals the Chern number. -/
40theorem hall_conductance_quantized (n : ℤ) :
41 -- σ_xy = n × e²/h is an integer multiple of the conductance quantum
42 ∃ σ : ℤ, σ = n := ⟨n, rfl⟩
43
44/-- **CHERN NUMBER FROM 8-TICK STRUCTURE**:
45 The RS ledger phase ω = e^{2πi/8} has integer Chern number winding
46 around the Brillouin zone because ω^8 = 1 (exact periodicity).
47
48 The Chern number C_n = (1/2π) ∮ F_n dk² is integer because
49 the Berry phase integrand (F_n = ∂A_y/∂k_x - ∂A_x/∂k_y) integrates
50 to a multiple of 2π over the compact Brillouin zone. -/
51theorem chern_number_integer_from_8tick :
52 -- The 8-tick phase ω^8 = 1 forces integer winding numbers
53 ∀ k : Fin 8, ∃ n : ℤ, (phaseExp k)^8 = 1 := by
54 intro k
55 exact ⟨1, phase_eighth_power_is_one k⟩
56
57/-! ## IQHE - Integer Quantum Hall Effect -/
58
59/-- **IQHE FILLING FACTOR**: ν = n (integer) when n Landau levels are filled. -/
60def iqhe_filling (n : ℕ) : ℚ := n
61
62/-- For IQHE: σ_xy = ν × e²/h with ν ∈ ℤ. -/
63theorem iqhe_conductance_integer (n : ℕ) :
64 ∃ σ : ℕ, σ = n := ⟨n, rfl⟩
65