All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Potential Is Stable of strong

TwoHiggsDoublet.potentialIsStable_of_strong

Project documentation

The potential is stable if it is strongly stable, i.e. its quartic term is always positive. The proof of this result relies on the compactness of the closed unit ball in EuclideanSpace ℝ (Fin 3), and the extreme value theorem.

Exact Lean statement

lemma potentialIsStable_of_strong (P : PotentialParameters)
    (h : ∀ k, ‖k‖ ^ 2 ≤ 1 → 0 < quarticTermReduced P k) :
    PotentialIsStable P

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma potentialIsStable_of_strong (P : PotentialParameters)    (h :  k, ‖k‖ ^ 2  1  0 < quarticTermReduced P k) :    PotentialIsStable P := by  rw [potentialIsStable_iff_massTermReduced_sq_le_quarticTermReduced]  let S := Metric.closedBall (0 : EuclideanSpace  (Fin 3)) 1  have S_nonEmpty : S.Nonempty := 0, by simp [S]  obtain kmax, kmax_S, kmax_isMax := IsCompact.exists_isMaxOn    (isCompact_closedBall 0 1) S_nonEmpty    (f := fun k => (massTermReduced P k ^ 2) / (4 * quarticTermReduced P k)) <| by    apply ContinuousOn.div    · simp only [massTermReduced, Fin.isValue]      fun_prop    · simp only [quarticTermReduced, Fin.isValue]      fun_prop    · intro x hx      specialize h x (by simpa using hx)      linarith  use (massTermReduced P kmax) ^ 2 / (4 * quarticTermReduced P kmax)  apply And.intro  · refine (le_div_iff₀ ?_).mpr ?_    · specialize h kmax (by simpa using kmax_S)      linarith    · simp only [zero_mul]      exact sq_nonneg (massTermReduced P kmax)  · intro k hk    apply And.intro    · specialize h k hk      linarith    · intro hq      rw [isMaxOn_iff] at kmax_isMax      refine (div_le_iff₀' ?_).mp (kmax_isMax k (by simpa using hk))      grind
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Particles/BeyondTheStandardModel/TwoHDM/Potential.lean:848-879

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