All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Neg 𝓵 sol exists iff

StandardModel.HiggsField.Potential.neg_𝓵_sol_exists_iff

Plain-language statement

For an element P of Potential with l < 0 and a real c : ℝ, there exists a Higgs field φ and a spacetime point x such that P.toFun φ x = c iff one of the following two conditions hold: - 0 < μ2 and c ≤ 0. That is, if l is negative and μ2 positive, then the potential takes every non-positive value. - or μ2 ≤ 0 and `c ≤ - μ2 ^ 2 / (4...

Exact Lean statement

lemma neg_𝓵_sol_exists_iff (h𝓵 : P.𝓵 < 0) (c : ℝ) : (∃ φ x, P.toFun φ x = c) ↔ (0 < P.μ2 ∧ c ≤ 0) ∨
    (P.μ2 ≤ 0 ∧ c ≤ - P.μ2 ^ 2 / (4 * P.𝓵))

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma neg_𝓵_sol_exists_iff (h𝓵 : P.𝓵 < 0) (c : ) : ( φ x, P.toFun φ x = c)  (0 < P.μ2  c  0)     (P.μ2  0  c  - P.μ2 ^ 2 / (4 * P.𝓵)) := by  refine Iff.intro (fun φ, x, hV => ?_) (fun h => ?_)  · rw [ hV]    rcases P.neg_𝓵_toFun_neg h𝓵 φ x with hr | hr    · exact Or.inl hr    · exact Or.inr hr, P.neg_𝓵_quadDiscrim_zero_bound h𝓵 φ x  · simp only [toFun, neg_mul]    simp only [ sub_eq_zero, sub_zero]    let a := (P.μ2 - Real.sqrt (discrim P.𝓵 (- P.μ2) (- c))) / (2 * P.𝓵)    have ha : 0  a := by      simp only [discrim, even_two, Even.neg_pow, mul_neg, sub_neg_eq_add, a]      rw [div_nonneg_iff]      refine Or.inr ?_, by linarith      rw [sub_nonpos]      rcases h with h | h      · exact Real.le_sqrt_of_sq_le (by nlinarith [h.2])      · exact h.1.trans (Real.sqrt_nonneg _)    use (const (HiggsVec.ofReal a))    use 0    simp [HiggsVec.ofReal_normSq ha]    trans P.𝓵 * a * a + (- P.μ2) * a + (- c)    · ring    have hd : 0  (discrim P.𝓵 (- P.μ2) (-c)) := by      simp only [discrim, even_two, Even.neg_pow, mul_neg, sub_neg_eq_add]      rcases h with h | h      · nlinarith [sq_nonneg P.μ2, h.2]      · rw [ @neg_le_iff_add_nonneg',  le_div_iff_of_neg']        · exact h.2        · linarith    have hdd := (Real.mul_self_sqrt hd).symm    rw [mul_assoc]    refine (quadratic_eq_zero_iff (ne_of_gt h𝓵).symm hdd _).mpr ?_    simp only [neg_neg, or_true, a]
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Particles/StandardModel/HiggsBoson/Potential.lean:215-248

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