Documentation

Mathlib.Data.Set.Equitable

Equitable functions #

This file defines equitable functions.

A function f is equitable on a set s if f a₁ ≤ f a₂ + 1 for all a₁, a₂ ∈ s. This is mostly useful when the codomain of f is or (or more generally a successor order).

TODO #

can be replaced by any SuccOrder + ConditionallyCompleteMonoid, but we don't have the latter yet.

def Set.EquitableOn {α : Type u_1} {β : Type u_2} [LE β] [Add β] [One β] (s : Set α) (f : αβ) :

A set is equitable if no element value is more than one bigger than another.

Equations
Instances For
    @[simp]
    theorem Set.equitableOn_empty {α : Type u_1} {β : Type u_2} [LE β] [Add β] [One β] (f : αβ) :
    theorem Set.equitableOn_iff_exists_le_le_add_one {α : Type u_1} {s : Set α} {f : α} :
    Set.EquitableOn s f ∃ (b : ), as, b f a f a b + 1
    theorem Set.equitableOn_iff_exists_image_subset_icc {α : Type u_1} {s : Set α} {f : α} :
    Set.EquitableOn s f ∃ (b : ), f '' s Set.Icc b (b + 1)
    theorem Set.equitableOn_iff_exists_eq_eq_add_one {α : Type u_1} {s : Set α} {f : α} :
    Set.EquitableOn s f ∃ (b : ), as, f a = b f a = b + 1
    @[simp]
    theorem Set.not_equitableOn {α : Type u_1} {β : Type u_2} [LinearOrder β] [Add β] [One β] {s : Set α} {f : αβ} :
    ¬Set.EquitableOn s f ∃ a ∈ s, ∃ b ∈ s, f b + 1 < f a
    theorem Set.Subsingleton.equitableOn {α : Type u_1} {β : Type u_2} [OrderedSemiring β] {s : Set α} (hs : Set.Subsingleton s) (f : αβ) :
    theorem Set.equitableOn_singleton {α : Type u_1} {β : Type u_2} [OrderedSemiring β] (a : α) (f : αβ) :
    theorem Finset.equitableOn_iff_le_le_add_one {α : Type u_1} {s : Finset α} {f : α} :
    Set.EquitableOn (s) f as, (Finset.sum s fun (i : α) => f i) / s.card f a f a (Finset.sum s fun (i : α) => f i) / s.card + 1
    theorem Finset.EquitableOn.le {α : Type u_1} {s : Finset α} {f : α} {a : α} (h : Set.EquitableOn (s) f) (ha : a s) :
    (Finset.sum s fun (i : α) => f i) / s.card f a
    theorem Finset.EquitableOn.le_add_one {α : Type u_1} {s : Finset α} {f : α} {a : α} (h : Set.EquitableOn (s) f) (ha : a s) :
    f a (Finset.sum s fun (i : α) => f i) / s.card + 1
    theorem Finset.equitableOn_iff {α : Type u_1} {s : Finset α} {f : α} :
    Set.EquitableOn (s) f as, f a = (Finset.sum s fun (i : α) => f i) / s.card f a = (Finset.sum s fun (i : α) => f i) / s.card + 1