All proofs
Project-declaredLean 4.32.0 ยท mathlib@81a5d257c8e4

Of Yukawa Terms NSum subset of subset

SuperSymmetry.SU5.ChargeSpectrum.ofYukawaTermsNSum_subset_of_subset

Project documentation

The charges of those terms which can be regenerated with up-to n insertions of singlets needed to regenerate the Yukawa terms. Equivalently, the sum of up-to n integers each corresponding to a charge of the Yukawa terms. -/ def ofYukawaTermsNSum (x : ChargeSpectrum ๐“ฉ) : โ„• โ†’ Multiset ๐“ฉ | 0 => {0} | n + 1 => x.ofYukawaTermsNSum n + (x.ofYukawaTermsNSu...

Exact Lean statement

lemma ofYukawaTermsNSum_subset_of_subset [DecidableEq ๐“ฉ] {x y : ChargeSpectrum ๐“ฉ}
    (h : x โІ y) (n : โ„•) :
    x.ofYukawaTermsNSum n โІ y.ofYukawaTermsNSum n

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma ofYukawaTermsNSum_subset_of_subset [DecidableEq ๐“ฉ] {x y : ChargeSpectrum ๐“ฉ}    (h : x โІ y) (n : โ„•) :    x.ofYukawaTermsNSum n โІ y.ofYukawaTermsNSum n := by  induction n with  | zero => simp [ofYukawaTermsNSum]  | succ n ih =>    simp [ofYukawaTermsNSum]    refine Multiset.subset_iff.mpr ?_    intro z    simp only [Multiset.mem_add, Multiset.mem_bind, Multiset.mem_map]    intro hr    rcases hr with hr | โŸจz1, hz1, z2, hz2, hsumโŸฉ    ยท left      exact ih hr    right    use z1    constructor    ยท exact ih hz1    use z2    simp_all only [and_true]    apply ofYukawaTerms_subset_of_subset h    exact hz2
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Particles/SuperSymmetry/SU5/ChargeSpectrum/Yukawa.lean:114-135

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