The Ahlswede-Zhang identity #
This file proves the Ahlswede-Zhang identity, which is a nontrivial relation between the size of the
"truncated unions" of a set family. It sharpens the Lubell-Yamamoto-Meshalkin inequality
Finset.lubell_yamamoto_meshalkin_inequality_sum_card_div_choose, by making explicit the correction
term.
For a set family 𝒜 over a ground set of size n, the Ahlswede-Zhang identity states that the sum
of |⋂ B ∈ 𝒜, B ⊆ A, B|/(|A| * n.choose |A|) over all set A is exactly 1. This implies the LYM
inequality since for an antichain 𝒜 and every A ∈ 𝒜 we have
|⋂ B ∈ 𝒜, B ⊆ A, B|/(|A| * n.choose |A|) = 1 / n.choose |A|.
Main declarations #
Finset.truncatedSup:s.truncatedSup ais the supremum of allb ≥ ain𝒜if there are some, or⊤if there are none.Finset.truncatedInf:s.truncatedInf ais the infimum of allb ≤ ain𝒜if there are some, or⊥if there are none.AhlswedeZhang.infSum: LHS of the Ahlswede-Zhang identity.AhlswedeZhang.le_infSum: The sum of1 / n.choose |A|over an antichain is less than the RHS of the Ahlswede-Zhang identity.AhlswedeZhang.infSum_eq_one: Ahlswede-Zhang identity.
References #
Truncated supremum, truncated infimum #
The supremum of the elements of s less than a if there are some, otherwise ⊤.
Equations
- s.truncatedSup a = if h : a ∈ lowerClosure ↑s then {b ∈ s | a ≤ b}.sup' ⋯ id else ⊤
Instances For
Alias of Finset.truncatedSup_of_notMem.
Alias of Finset.truncatedSup_union_of_notMem.
The infimum of the elements of s less than a if there are some, otherwise ⊥.
Equations
- s.truncatedInf a = if h : a ∈ upperClosure ↑s then {b ∈ s | b ≤ a}.inf' ⋯ id else ⊥
Instances For
Alias of Finset.truncatedInf_of_notMem.
Alias of Finset.truncatedInf_union_of_notMem.
Alias of Finset.truncatedSup_infs_of_notMem.
Alias of Finset.truncatedInf_sups_of_notMem.
Weighted sum of the size of the truncated infima of a set family. Relevant to the Ahlswede-Zhang identity.
Equations
- AhlswedeZhang.infSum 𝒜 = ∑ s : Finset α, ↑(𝒜.truncatedInf s).card / (↑s.card * ↑((Fintype.card α).choose s.card))
Instances For
Weighted sum of the size of the truncated suprema of a set family. Relevant to the Ahlswede-Zhang identity.
Equations
- AhlswedeZhang.supSum 𝒜 = ∑ s : Finset α, ↑(𝒜.truncatedSup s).card / ((↑(Fintype.card α) - ↑s.card) * ↑((Fintype.card α).choose s.card))
Instances For
The Ahlswede-Zhang Identity.
Alias of AhlswedeZhang.supSum_of_univ_notMem.