All proofs
Project-declaredLean 4.32.0 Β· mathlib@81a5d257c8e4

Subset insert filter card zero inductive

SuperSymmetry.SU5.ChargeSpectrum.subset_insert_filter_card_zero_inductive

Project documentation

Given a collection of charges x in ofFinset S5 S10, the minimal charges y in ofFinset S5 S10 which are a super sets of x. -/ def minimalSuperSet (S5 S10 : Finset 𝓩) (x : ChargeSpectrum 𝓩) : Finset (ChargeSpectrum 𝓩) := let SqHd := if x.qHd.isSome then βˆ… else S5.map ⟨fun y => ⟨some y, x.qHu, x.Q5, x.Q10⟩, by intro y1 y2; simp⟩ let SqHu := if x...

Exact Lean statement

lemma subset_insert_filter_card_zero_inductive
    (T : Multiset (ChargeSpectrum 𝓩))
    (S5 S10 : Finset 𝓩)
    (p : ChargeSpectrum 𝓩 β†’ Prop) [DecidablePred p]
    (hnotSubset : βˆ€ (x y : ChargeSpectrum 𝓩), x βŠ† y β†’ Β¬ p x β†’ Β¬ p y)
    (hComplet : βˆ€ x ∈ T, IsComplete x)
    (x : ChargeSpectrum 𝓩)
    (hx : x ∈ T) (y : ChargeSpectrum 𝓩) (hsubset : x βŠ† y)
    (hy : y ∈ ofFinset S5 S10)
    (h10 : βˆ€ q10 : S10, ((T.map fun x => ⟨x.qHd, x.qHu, x.Q5, insert q10.1 x.Q10⟩).filter
      fun y => (y βˆ‰ T ∧ p y)) = βˆ…)
    (h5 : βˆ€ q5 : S5, ((T.map fun x => ⟨x.qHd, x.qHu, insert q5.1 x.Q5, x.Q10⟩).filter
      fun y => (y βˆ‰ T ∧ p y)) = βˆ…) :
    (n : β„•) β†’ (hn : n = y.card - x.card) β†’ y βˆ‰ T β†’ Β¬ p y
  | 0, hn, hnot_in_T => by
    have hxy : x = y

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma subset_insert_filter_card_zero_inductive    (T : Multiset (ChargeSpectrum 𝓩))    (S5 S10 : Finset 𝓩)    (p : ChargeSpectrum 𝓩 β†’ Prop) [DecidablePred p]    (hnotSubset : βˆ€ (x y : ChargeSpectrum 𝓩), x βŠ† y β†’ Β¬ p x β†’ Β¬ p y)    (hComplet : βˆ€ x ∈ T, IsComplete x)    (x : ChargeSpectrum 𝓩)    (hx : x ∈ T) (y : ChargeSpectrum 𝓩) (hsubset : x βŠ† y)    (hy : y ∈ ofFinset S5 S10)    (h10 : βˆ€ q10 : S10, ((T.map fun x => ⟨x.qHd, x.qHu, x.Q5, insert q10.1 x.Q10⟩).filter      fun y => (y βˆ‰ T ∧ p y)) = βˆ…)    (h5 : βˆ€ q5 : S5, ((T.map fun x => ⟨x.qHd, x.qHu, insert q5.1 x.Q5, x.Q10⟩).filter      fun y => (y βˆ‰ T ∧ p y)) = βˆ…) :    (n : β„•) β†’ (hn : n = y.card - x.card) β†’ y βˆ‰ T β†’ Β¬ p y  | 0, hn, hnot_in_T => by    have hxy : x = y := by      refine eq_of_subset_card hsubset ?_      have hl : x.card ≀ y.card := card_mono hsubset      omega    subst hxy    simp_all  | Nat.succ n, hn, hnot_in_T => by    have hxy : x β‰  y := by      intro h      subst h      simp at hn    obtain ⟨z, hz, hsubsetz⟩ := exists_minimalSuperSet S5 S10 hy hsubset hxy    have hz' := insert_filter_card_zero T S5 S10 p hComplet h10 h5 x hx z hz    by_cases hz_not_in_T : z βˆ‰ T    Β· apply hnotSubset      Β· exact hsubsetz      Β· exact hz' hz_not_in_T    apply subset_insert_filter_card_zero_inductive T S5 S10 p hnotSubset hComplet z (n := n)    Β· simpa using hz_not_in_T    Β· exact hsubsetz    Β· exact hy    Β· exact fun q10 => h10 q10    Β· exact fun q5 => h5 q5    Β· rw [card_of_mem_minimalSuperSet z hz]      omega    Β· exact hnot_in_T
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Particles/SuperSymmetry/SU5/ChargeSpectrum/MinimalSuperSet.lean:410-450

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