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

NoetherCharge

definition
show as:
view math explainer →
module
IndisputableMonolith.QFT.NoetherTheorem
domain
QFT
line
118 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.QFT.NoetherTheorem on GitHub at line 118.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

 115  rw [hinv t₁ x, hinv t₂ x]
 116
 117/-- The Noether charge is any function conserved by the flow. -/
 118def NoetherCharge {X : Type*} (G : OneParamGroup X) :=
 119  { Q : X → ℝ // IsConservedAlong Q G.flow }
 120
 121/-- **THEOREM**: Any invariant function is a Noether charge. -/
 122theorem invariant_is_noether_charge {X : Type*} {G : OneParamGroup X} {J : X → ℝ}
 123    (hinv : ∀ t, IsSymmetryOf (G.flow t) J) :
 124    ∃ Q : NoetherCharge G, Q.val = J :=
 125  ⟨⟨J, noether_core hinv⟩, rfl⟩
 126
 127/-! ## Time Translation and Energy -/
 128
 129/-- Time translation by dt. -/
 130def TimeTranslation : OneParamGroup ℝ where
 131  flow t x := x + t
 132  flow_zero x := by ring
 133  flow_add s t x := by ring
 134
 135/-- **THEOREM**: Any time-translation-invariant function is conserved.
 136    (Energy is time-translation invariant ⟹ Energy is conserved) -/
 137theorem time_invariance_implies_conservation {E : ℝ → ℝ}
 138    (hinv : ∀ t, IsSymmetryOf (TimeTranslation.flow t) E) :
 139    IsConservedAlong E TimeTranslation.flow :=
 140  noether_core hinv
 141
 142/-! ## Space Translation and Momentum -/
 143
 144/-- Space translation by dx. -/
 145def SpaceTranslation : OneParamGroup ℝ where
 146  flow dx x := x + dx
 147  flow_zero x := by ring
 148  flow_add s t x := by ring