All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Allows Term insert Q5 of allows Term Q5

SuperSymmetry.SU5.ChargeSpectrum.allowsTerm_insertQ5_of_allowsTermQ5

Project documentation

The proposition for which says, given a charge x adding a charge q5 permits the existence of a potential term T due to the addition of that charge. -/ def AllowsTermQ5 (x : ChargeSpectrum 𝓩) (q5 : 𝓩) (T : PotentialTerm) : Prop := match T with | .μ => false | .β => match x with | ⟨_, some qHu, _, _⟩ => q5 = qHu | _ => false | .Λ => (0 : 𝓩) ∈ ((ins...

Exact Lean statement

lemma allowsTerm_insertQ5_of_allowsTermQ5 {qHd qHu : Option 𝓩}
    {Q5 Q10: Finset 𝓩} {q5 : 𝓩} (T : PotentialTerm)
    (h : AllowsTermQ5 ⟨qHd, qHu, Q5, Q10⟩ q5 T) :
    AllowsTerm ⟨qHd, qHu, insert q5 Q5, Q10⟩ T

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma allowsTerm_insertQ5_of_allowsTermQ5 {qHd qHu : Option 𝓩}    {Q5 Q10: Finset 𝓩} {q5 : 𝓩} (T : PotentialTerm)    (h : AllowsTermQ5 qHd, qHu, Q5, Q10 q5 T) :    AllowsTerm qHd, qHu, insert q5 Q5, Q10 T := by  rcases T  all_goals    simp [AllowsTermQ5] at h  all_goals    simp [allowsTerm_iff_zero_mem_ofPotentialTerm', ofPotentialTerm']  · match qHu with    | some qHu =>      simp at h      subst h      simp    | none => simp at h  · obtain q1, q2, h1, h2, hsum := h    use q1, q5, q2    simp_all  · obtain q1, q2, q3, h3, hsum := h    use q5, q1, q2, q3    simp_all  · match qHu with    | some qHu =>      simp at h      simp only [Multiset.mem_map, Multiset.mem_product, Multiset.mem_ndinsert, Finset.mem_val,        Prod.exists]      by_cases h' : q5 + q5 - qHu - qHu = 0      · use q5, q5        simp only [true_or, and_self, true_and]        rw [ h']        abel      · simp_all        obtain q1, hsum := h        use q1, q5        simp_all        rw [ hsum.2]        abel    | none => simp at h  · match qHd, qHu with    | some qHd, some qHu =>      simp_all      left      rw [ h]      abel    | none, _ => simp at h    | some x, none => simp at h  · obtain q1, q2, h1, h2, hsum := h    use q5, q1, q2    simp_all  · match qHd with    | none => simp at h    | some qHd =>      simp at h      obtain q1, h1, hsum := h      simp only [Multiset.mem_map, Multiset.mem_product, Multiset.mem_ndinsert, Finset.mem_val,        Prod.exists]      use q5, q1      simp_all      rw [ hsum]      abel
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Particles/SuperSymmetry/SU5/ChargeSpectrum/AllowsTerm.lean:613-672

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