All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Apply eq sum even term Of Mass Dim

StandardModel.HiggsField.EffectivePotential.apply_eq_sum_even_termOfMassDim

Project documentation

The part of a potential at a given mass-dimension. -/ def termOfMassDim (V : EffectivePotential) {n : ℕ} (h : HasMaxMassDimLE V n) (m : ℕ) : HiggsVec → ℝ := fun φ => ((polynomial V h).homogeneousComponent m).eval φ.toRealScalars lemma termOfMassDim_eq_zero_of_max_lt {V : EffectivePotential} {n : ℕ} (h : HasMaxMassDimLE V n) {m : ℕ} (hm : n < m) (φ : Higgs...

Exact Lean statement

lemma apply_eq_sum_even_termOfMassDim {V : EffectivePotential} {n : ℕ} (h : HasMaxMassDimLE V n)
    (hV : IsInvariant V) (φ : HiggsVec) :
    V φ = ∑ m ∈ Finset.range (n / 2 + 1), termOfMassDim V h (2 * m) φ

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma apply_eq_sum_even_termOfMassDim {V : EffectivePotential} {n : } (h : HasMaxMassDimLE V n)    (hV : IsInvariant V) (φ : HiggsVec) :    V φ = ∑ m  Finset.range (n / 2 + 1), termOfMassDim V h (2 * m) φ := by  rw [apply_eq_sum_termOfMassDim h,  Finset.sum_filter_add_sum_filter_not    (Finset.range (n + 1)) Even]  have hodd : ∑ m  (Finset.range (n + 1)).filter (fun m => ¬ Even m),      termOfMassDim V h m φ = 0 := by    refine Finset.sum_eq_zero fun m hm => ?_    simp only [Finset.mem_filter] at hm    exact termOfMassDim_zero_of_odd h m hV φ (Nat.not_even_iff_odd.mp hm.2)  rw [hodd, add_zero]  have hset : (Finset.range (n / 2 + 1)).image (fun k => 2 * k)      = (Finset.range (n + 1)).filter Even := by    ext a    simp only [Finset.mem_image, Finset.mem_range, Finset.mem_filter, Nat.even_iff]    constructor    · rintro k, hk, rfl      omega    · rintro ha, hae      exact a / 2, by omega, by omega  rw [ hset, Finset.sum_image fun x _ y _ hxy => by omega]
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Particles/StandardModel/HiggsBoson/EffectivePotential.lean:192-212

Reuse this declaration

Bring the exact result into your workflow

The import identifies the source module. Your project still needs the pinned package dependency shown on this page.

What this badge means

This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.

Continue in this project

Related declarations

Project-declaredLean 4.32.0

Adiabatic relation log

adiabatic_relation_log

Plain-language statement

Adiabatic relation in logarithmic form: If S(Ua,Va,N) = S(Ub,Vb,N) with N fixed, then c * log (Ua/Ub) + log (Va/Vb) = 0.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Adiabatic relation Ua Ub Va Vb

adiabatic_relation_UaUbVaVb

Plain-language statement

Adiabatic relation in product form: If S(Ua,Va,N) = S(Ub,Vb,N) with N fixed, then (Ua/Ub)^c * (Va/Vb) = 1.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record