All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

To Fun eq zero iff

StandardModel.HiggsField.Potential.toFun_eq_zero_iff

Plain-language statement

The Higgs potential is zero iff and only if the higgs field is zero, or the higgs field has norm-squared P.μ2 / P.𝓵, assuming P.𝓁 = 0.

Exact Lean statement

lemma toFun_eq_zero_iff (h : P.𝓵 ≠ 0) (φ : HiggsField) (x : SpaceTime) :
    P.toFun φ x = 0 ↔ φ x = 0 ∨ ‖φ‖_H^2 x = P.μ2 / P.𝓵

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma toFun_eq_zero_iff (h : P.𝓵  0) (φ : HiggsField) (x : SpaceTime) :    P.toFun φ x = 0  φ x = 0  ‖φ‖_H^2 x = P.μ2 / P.𝓵 := by  refine Iff.intro (fun hV => ?_) (fun hD => ?_)  · have h1 := P.as_quad φ x    rw [hV] at h1    have h2 : ‖φ‖_H^2 x * (P.𝓵 * ‖φ‖_H^2 x + - P.μ2) = 0 := by linear_combination h1    rcases mul_eq_zero.mp h2 with h2 | h2    · exact Or.inl (by simpa [normSq] using h2)    · exact Or.inr (by rw [eq_div_iff h]; linear_combination h2)  · cases' hD with hD hD    · simp [toFun, hD]    · simp only [toFun, hD]      field_simp      ring
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Particles/StandardModel/HiggsBoson/Potential.lean:109-122

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