Datasets:
Tasks:
Text Generation
Modalities:
Text
Sub-tasks:
language-modeling
Languages:
English
Size:
100K - 1M
License:
/- | |
Copyright (c) 2021 Bhavik Mehta. All rights reserved. | |
Released under Apache 2.0 license as described in the file LICENSE. | |
Authors: Bhavik Mehta, Alena Gusakov, Yaël Dillies | |
-/ | |
import data.finset.slice | |
import logic.function.iterate | |
/-! | |
# Shadows | |
This file defines shadows of a set family. The shadow of a set family is the set family of sets we | |
get by removing any element from any set of the original family. If one pictures `finset α` as a big | |
hypercube (each dimension being membership of a given element), then taking the shadow corresponds | |
to projecting each finset down once in all available directions. | |
## Main definitions | |
* `finset.shadow`: The shadow of a set family. Everything we can get by removing a new element from | |
some set. | |
* `finset.up_shadow`: The upper shadow of a set family. Everything we can get by adding an element | |
to some set. | |
## Notation | |
We define notation in locale `finset_family`: | |
* `∂ 𝒜`: Shadow of `𝒜`. | |
* `∂⁺ 𝒜`: Upper shadow of `𝒜`. | |
We also maintain the convention that `a, b : α` are elements of the ground type, `s, t : finset α` | |
are finsets, and `𝒜, ℬ : finset (finset α)` are finset families. | |
## References | |
* https://github.com/b-mehta/maths-notes/blob/master/iii/mich/combinatorics.pdf | |
* http://discretemath.imp.fu-berlin.de/DMII-2015-16/kruskal.pdf | |
## Tags | |
shadow, set family | |
-/ | |
open finset nat | |
variables {α : Type*} | |
namespace finset | |
section shadow | |
variables [decidable_eq α] {𝒜 : finset (finset α)} {s t : finset α} {a : α} {k r : ℕ} | |
/-- The shadow of a set family `𝒜` is all sets we can get by removing one element from any set in | |
`𝒜`, and the (`k` times) iterated shadow (`shadow^[k]`) is all sets we can get by removing `k` | |
elements from any set in `𝒜`. -/ | |
def shadow (𝒜 : finset (finset α)) : finset (finset α) := 𝒜.sup (λ s, s.image (erase s)) | |
localized "notation `∂ `:90 := finset.shadow" in finset_family | |
/-- The shadow of the empty set is empty. -/ | |
@[simp] lemma shadow_empty : ∂ (∅ : finset (finset α)) = ∅ := rfl | |
@[simp] lemma shadow_singleton_empty : ∂ ({∅} : finset (finset α)) = ∅ := rfl | |
--TODO: Prove `∂ {{a}} = {∅}` quickly using `covers` and `grade_order` | |
/-- The shadow is monotone. -/ | |
@[mono] lemma shadow_monotone : monotone (shadow : finset (finset α) → finset (finset α)) := | |
λ 𝒜 ℬ, sup_mono | |
/-- `s` is in the shadow of `𝒜` iff there is an `t ∈ 𝒜` from which we can remove one element to | |
get `s`. -/ | |
lemma mem_shadow_iff : s ∈ ∂ 𝒜 ↔ ∃ t ∈ 𝒜, ∃ a ∈ t, erase t a = s := | |
by simp only [shadow, mem_sup, mem_image] | |
lemma erase_mem_shadow (hs : s ∈ 𝒜) (ha : a ∈ s) : erase s a ∈ ∂ 𝒜 := | |
mem_shadow_iff.2 ⟨s, hs, a, ha, rfl⟩ | |
/-- `t` is in the shadow of `𝒜` iff we can add an element to it so that the resulting finset is in | |
`𝒜`. -/ | |
lemma mem_shadow_iff_insert_mem : s ∈ ∂ 𝒜 ↔ ∃ a ∉ s, insert a s ∈ 𝒜 := | |
begin | |
refine mem_shadow_iff.trans ⟨_, _⟩, | |
{ rintro ⟨s, hs, a, ha, rfl⟩, | |
refine ⟨a, not_mem_erase a s, _⟩, | |
rwa insert_erase ha }, | |
{ rintro ⟨a, ha, hs⟩, | |
exact ⟨insert a s, hs, a, mem_insert_self _ _, erase_insert ha⟩ } | |
end | |
/-- The shadow of a family of `r`-sets is a family of `r - 1`-sets. -/ | |
protected lemma _root_.set.sized.shadow (h𝒜 : (𝒜 : set (finset α)).sized r) : | |
(∂ 𝒜 : set (finset α)).sized (r - 1) := | |
begin | |
intros A h, | |
obtain ⟨A, hA, i, hi, rfl⟩ := mem_shadow_iff.1 h, | |
rw [card_erase_of_mem hi, h𝒜 hA], | |
end | |
lemma sized_shadow_iff (h : ∅ ∉ 𝒜) : | |
(∂ 𝒜 : set (finset α)).sized r ↔ (𝒜 : set (finset α)).sized (r + 1) := | |
begin | |
refine ⟨λ h𝒜 s hs, _, set.sized.shadow⟩, | |
obtain ⟨a, ha⟩ := nonempty_iff_ne_empty.2 (ne_of_mem_of_not_mem hs h), | |
rw [←h𝒜 (erase_mem_shadow hs ha), card_erase_add_one ha], | |
end | |
/-- `s ∈ ∂ 𝒜` iff `s` is exactly one element less than something from `𝒜` -/ | |
lemma mem_shadow_iff_exists_mem_card_add_one : | |
s ∈ ∂ 𝒜 ↔ ∃ t ∈ 𝒜, s ⊆ t ∧ t.card = s.card + 1 := | |
begin | |
refine mem_shadow_iff_insert_mem.trans ⟨_, _⟩, | |
{ rintro ⟨a, ha, hs⟩, | |
exact ⟨insert a s, hs, subset_insert _ _, card_insert_of_not_mem ha⟩ }, | |
{ rintro ⟨t, ht, hst, h⟩, | |
obtain ⟨a, ha⟩ : ∃ a, t \ s = {a} := | |
card_eq_one.1 (by rw [card_sdiff hst, h, add_tsub_cancel_left]), | |
exact ⟨a, λ hat, | |
not_mem_sdiff_of_mem_right hat ((ha.ge : _ ⊆ _) $ mem_singleton_self a), | |
by rwa [insert_eq a s, ←ha, sdiff_union_of_subset hst]⟩ } | |
end | |
/-- Being in the shadow of `𝒜` means we have a superset in `𝒜`. -/ | |
lemma exists_subset_of_mem_shadow (hs : s ∈ ∂ 𝒜) : ∃ t ∈ 𝒜, s ⊆ t := | |
let ⟨t, ht, hst⟩ := mem_shadow_iff_exists_mem_card_add_one.1 hs in ⟨t, ht, hst.1⟩ | |
/-- `t ∈ ∂^k 𝒜` iff `t` is exactly `k` elements less than something in `𝒜`. -/ | |
lemma mem_shadow_iff_exists_mem_card_add : | |
s ∈ (∂^[k]) 𝒜 ↔ ∃ t ∈ 𝒜, s ⊆ t ∧ t.card = s.card + k := | |
begin | |
induction k with k ih generalizing 𝒜 s, | |
{ refine ⟨λ hs, ⟨s, hs, subset.refl _, rfl⟩, _⟩, | |
rintro ⟨t, ht, hst, hcard⟩, | |
rwa eq_of_subset_of_card_le hst hcard.le }, | |
simp only [exists_prop, function.comp_app, function.iterate_succ], | |
refine ih.trans _, | |
clear ih, | |
split, | |
{ rintro ⟨t, ht, hst, hcardst⟩, | |
obtain ⟨u, hu, htu, hcardtu⟩ := mem_shadow_iff_exists_mem_card_add_one.1 ht, | |
refine ⟨u, hu, hst.trans htu, _⟩, | |
rw [hcardtu, hcardst], | |
refl }, | |
{ rintro ⟨t, ht, hst, hcard⟩, | |
obtain ⟨u, hsu, hut, hu⟩ := finset.exists_intermediate_set k | |
(by { rw [add_comm, hcard], exact le_succ _ }) hst, | |
rw add_comm at hu, | |
refine ⟨u, mem_shadow_iff_exists_mem_card_add_one.2 ⟨t, ht, hut, _⟩, hsu, hu⟩, | |
rw [hcard, hu], | |
refl } | |
end | |
end shadow | |
open_locale finset_family | |
section up_shadow | |
variables [decidable_eq α] [fintype α] {𝒜 : finset (finset α)} {s t : finset α} {a : α} {k r : ℕ} | |
/-- The upper shadow of a set family `𝒜` is all sets we can get by adding one element to any set in | |
`𝒜`, and the (`k` times) iterated upper shadow (`up_shadow^[k]`) is all sets we can get by adding | |
`k` elements from any set in `𝒜`. -/ | |
def up_shadow (𝒜 : finset (finset α)) : finset (finset α) := | |
𝒜.sup $ λ s, sᶜ.image $ λ a, insert a s | |
localized "notation `∂⁺ `:90 := finset.up_shadow" in finset_family | |
/-- The upper shadow of the empty set is empty. -/ | |
@[simp] lemma up_shadow_empty : ∂⁺ (∅ : finset (finset α)) = ∅ := rfl | |
/-- The upper shadow is monotone. -/ | |
@[mono] lemma up_shadow_monotone : monotone (up_shadow : finset (finset α) → finset (finset α)) := | |
λ 𝒜 ℬ, sup_mono | |
/-- `s` is in the upper shadow of `𝒜` iff there is an `t ∈ 𝒜` from which we can remove one element | |
to get `s`. -/ | |
lemma mem_up_shadow_iff : s ∈ ∂⁺ 𝒜 ↔ ∃ t ∈ 𝒜, ∃ a ∉ t, insert a t = s := | |
by simp_rw [up_shadow, mem_sup, mem_image, exists_prop, mem_compl] | |
lemma insert_mem_up_shadow (hs : s ∈ 𝒜) (ha : a ∉ s) : insert a s ∈ ∂⁺ 𝒜 := | |
mem_up_shadow_iff.2 ⟨s, hs, a, ha, rfl⟩ | |
/-- The upper shadow of a family of `r`-sets is a family of `r + 1`-sets. -/ | |
protected lemma _root_.set.sized.up_shadow (h𝒜 : (𝒜 : set (finset α)).sized r) : | |
(∂⁺ 𝒜 : set (finset α)).sized (r + 1) := | |
begin | |
intros A h, | |
obtain ⟨A, hA, i, hi, rfl⟩ := mem_up_shadow_iff.1 h, | |
rw [card_insert_of_not_mem hi, h𝒜 hA], | |
end | |
/-- `t` is in the upper shadow of `𝒜` iff we can remove an element from it so that the resulting | |
finset is in `𝒜`. -/ | |
lemma mem_up_shadow_iff_erase_mem : s ∈ ∂⁺ 𝒜 ↔ ∃ a ∈ s, s.erase a ∈ 𝒜 := | |
begin | |
refine mem_up_shadow_iff.trans ⟨_, _⟩, | |
{ rintro ⟨s, hs, a, ha, rfl⟩, | |
refine ⟨a, mem_insert_self a s, _⟩, | |
rwa erase_insert ha }, | |
{ rintro ⟨a, ha, hs⟩, | |
exact ⟨s.erase a, hs, a, not_mem_erase _ _, insert_erase ha⟩ } | |
end | |
/-- `s ∈ ∂⁺ 𝒜` iff `s` is exactly one element less than something from `𝒜`. -/ | |
lemma mem_up_shadow_iff_exists_mem_card_add_one : | |
s ∈ ∂⁺ 𝒜 ↔ ∃ t ∈ 𝒜, t ⊆ s ∧ t.card + 1 = s.card := | |
begin | |
refine mem_up_shadow_iff_erase_mem.trans ⟨_, _⟩, | |
{ rintro ⟨a, ha, hs⟩, | |
exact ⟨s.erase a, hs, erase_subset _ _, card_erase_add_one ha⟩ }, | |
{ rintro ⟨t, ht, hts, h⟩, | |
obtain ⟨a, ha⟩ : ∃ a, s \ t = {a} := | |
card_eq_one.1 (by rw [card_sdiff hts, ←h, add_tsub_cancel_left]), | |
refine ⟨a, sdiff_subset _ _ ((ha.ge : _ ⊆ _) $ mem_singleton_self a), _⟩, | |
rwa [←sdiff_singleton_eq_erase, ←ha, sdiff_sdiff_eq_self hts] } | |
end | |
/-- Being in the upper shadow of `𝒜` means we have a superset in `𝒜`. -/ | |
lemma exists_subset_of_mem_up_shadow (hs : s ∈ ∂⁺ 𝒜) : ∃ t ∈ 𝒜, t ⊆ s := | |
let ⟨t, ht, hts, _⟩ := mem_up_shadow_iff_exists_mem_card_add_one.1 hs in ⟨t, ht, hts⟩ | |
/-- `t ∈ ∂^k 𝒜` iff `t` is exactly `k` elements more than something in `𝒜`. -/ | |
lemma mem_up_shadow_iff_exists_mem_card_add : | |
s ∈ (∂⁺^[k]) 𝒜 ↔ ∃ t ∈ 𝒜, t ⊆ s ∧ t.card + k = s.card := | |
begin | |
induction k with k ih generalizing 𝒜 s, | |
{ refine ⟨λ hs, ⟨s, hs, subset.refl _, rfl⟩, _⟩, | |
rintro ⟨t, ht, hst, hcard⟩, | |
rwa ←eq_of_subset_of_card_le hst hcard.ge }, | |
simp only [exists_prop, function.comp_app, function.iterate_succ], | |
refine ih.trans _, | |
clear ih, | |
split, | |
{ rintro ⟨t, ht, hts, hcardst⟩, | |
obtain ⟨u, hu, hut, hcardtu⟩ := mem_up_shadow_iff_exists_mem_card_add_one.1 ht, | |
refine ⟨u, hu, hut.trans hts, _⟩, | |
rw [←hcardst, ←hcardtu, add_right_comm], | |
refl }, | |
{ rintro ⟨t, ht, hts, hcard⟩, | |
obtain ⟨u, htu, hus, hu⟩ := finset.exists_intermediate_set 1 | |
(by { rw [add_comm, ←hcard], exact add_le_add_left (zero_lt_succ _) _ }) hts, | |
rw add_comm at hu, | |
refine ⟨u, mem_up_shadow_iff_exists_mem_card_add_one.2 ⟨t, ht, htu, hu.symm⟩, hus, _⟩, | |
rw [hu, ←hcard, add_right_comm], | |
refl } | |
end | |
@[simp] lemma shadow_image_compl : (∂ 𝒜).image compl = ∂⁺ (𝒜.image compl) := | |
begin | |
ext s, | |
simp only [mem_image, exists_prop, mem_shadow_iff, mem_up_shadow_iff], | |
split, | |
{ rintro ⟨_, ⟨s, hs, a, ha, rfl⟩, rfl⟩, | |
exact ⟨sᶜ, ⟨s, hs, rfl⟩, a, not_mem_compl.2 ha, compl_erase.symm⟩ }, | |
{ rintro ⟨_, ⟨s, hs, rfl⟩, a, ha, rfl⟩, | |
exact ⟨s.erase a, ⟨s, hs, a, not_mem_compl.1 ha, rfl⟩, compl_erase⟩ } | |
end | |
@[simp] lemma up_shadow_image_compl : (∂⁺ 𝒜).image compl = ∂ (𝒜.image compl) := | |
begin | |
ext s, | |
simp only [mem_image, exists_prop, mem_shadow_iff, mem_up_shadow_iff], | |
split, | |
{ rintro ⟨_, ⟨s, hs, a, ha, rfl⟩, rfl⟩, | |
exact ⟨sᶜ, ⟨s, hs, rfl⟩, a, mem_compl.2 ha, compl_insert.symm⟩ }, | |
{ rintro ⟨_, ⟨s, hs, rfl⟩, a, ha, rfl⟩, | |
exact ⟨insert a s, ⟨s, hs, a, mem_compl.1 ha, rfl⟩, compl_insert⟩ } | |
end | |
end up_shadow | |
end finset | |