All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Mem min Top Bottom of minimally Allows Finset Terms

SuperSymmetry.SU5.ChargeSpectrum.mem_minTopBottom_of_minimallyAllowsFinsetTerms

Project documentation

The set of charges of the form (qHd, qHu, {q5}, {-qHd-q5, q10, qHu - q10}) This includes every charge which minimally allows for the top and bottom Yukawas. -/ def minTopBottom (S5 S10 : Finset 𝓩) : Multiset (ChargeSpectrum 𝓩) := Multiset.dedup <| (S5.val ×ˢ S5.val ×ˢ S5.val ×ˢ S10.val).map (fun x => ⟨x.1, x.2.1, {x.2.2.1}, {- x.1 - x.2.2.1, x.2.2.2,...

Exact Lean statement

lemma mem_minTopBottom_of_minimallyAllowsFinsetTerms
    {x : ChargeSpectrum 𝓩} {S5 S10 : Finset 𝓩}
    (h : x.MinimallyAllowsFinsetTerms {topYukawa, bottomYukawa})
    (hx : x ∈ ofFinset S5 S10) :
    x ∈ minTopBottom S5 S10

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma mem_minTopBottom_of_minimallyAllowsFinsetTerms    {x : ChargeSpectrum 𝓩} {S5 S10 : Finset 𝓩}    (h : x.MinimallyAllowsFinsetTerms {topYukawa, bottomYukawa})    (hx : x  ofFinset S5 S10) :    x  minTopBottom S5 S10 := by  simp [minTopBottom]  have hTop : x.AllowsTerm topYukawa := allowsTerm_of_minimallyAllowsFinsetTerms h (by simp)  have hBottom : x.AllowsTerm bottomYukawa := allowsTerm_of_minimallyAllowsFinsetTerms h (by simp)  match x with  | none, qHu, Q5, Q10 =>    simp [allowsTerm_iff_subset_allowsTermForm, allowsTermForm, subset_def] at hBottom  | qHd, none, Q5, Q10 =>    simp [allowsTerm_iff_subset_allowsTermForm, allowsTermForm, subset_def] at hTop  | some qHd, some qHu, Q5, Q10 =>  simp [allowsTerm_iff_subset_allowsTermForm, allowsTermForm, subset_def] at hTop hBottom  obtain n, hn, q10, h10 := hTop  obtain q5, h5 := hBottom  use qHd, qHu, q5, q10  simp [mem_ofFinset_iff] at hx  refine ⟨⟨hx.1, hx.2.1, hx.2.2.1 h5.1, hx.2.2.2 (h10 (Finset.mem_insert_self _ _)), ?_  refine (h _ ?_).mpr ?_  · simp [subset_def]    exact h5.1, Finset.insert_subset h5.2 (hn ▸ h10)  · intro T hT    fin_cases hT    · simp [allowsTerm_iff_subset_allowsTermForm, allowsTermForm, subset_def]      exact ⟨-qHu, by simp, q10, by simp    · simp [allowsTerm_iff_subset_allowsTermForm, allowsTermForm, subset_def]
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Particles/SuperSymmetry/SU5/ChargeSpectrum/MinimallyAllowsTerm/FinsetTerms.lean:173-200

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