All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Minimally Allows Term iff powerset filter eq

SuperSymmetry.SU5.ChargeSpectrum.minimallyAllowsTerm_iff_powerset_filter_eq

Project documentation

A collection of charges x : Charges is said to minimally allow the potential term T if it allows T and no strict subset of it allows T. -/ def MinimallyAllowsTerm (x : ChargeSpectrum 𝓩) (T : PotentialTerm) : Prop := ∀ y ∈ x.powerset, y = x ↔ y.AllowsTerm T /-! ### A.1. Decidability of MinimallyAllowsTerm We show that MinimallyAllowsTerm is de...

Exact Lean statement

lemma minimallyAllowsTerm_iff_powerset_filter_eq :
    x.MinimallyAllowsTerm T ↔ x.powerset.filter (fun y => y.AllowsTerm T) = {x}

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma minimallyAllowsTerm_iff_powerset_filter_eq :    x.MinimallyAllowsTerm T  x.powerset.filter (fun y => y.AllowsTerm T) = {x} := by  constructor  · intro h    ext y    simp only [Finset.mem_filter, mem_powerset_iff_subset, Finset.mem_singleton]    simp [MinimallyAllowsTerm] at h    constructor    · exact fun h1, h2 => (h y h1).mpr h2    · intro h1      subst h1      simp      exact (h y (by simp)).mp rfl  · intro h    simp [MinimallyAllowsTerm]    intro y hy    rw [Finset.eq_singleton_iff_unique_mem] at h    simp at h    constructor    · intro h1      subst h1      exact h.1    · intro h1      apply h.2      · exact hy      · exact h1
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Particles/SuperSymmetry/SU5/ChargeSpectrum/MinimallyAllowsTerm/Basic.lean:129-154

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