Documentation

Mathlib.Order.CompleteLattice.Basic

Theory of complete lattices #

This file contains basic results on complete lattices.

Naming conventions #

In lemma names,

Notation #

@[simp]
theorem iSup_ulift {α : Type u_1} {ι : Type u_8} [SupSet α] (f : ULift ι → α) :
⨆ (i : ULift ι), f i = ⨆ (i : ι), f { down := i }
@[simp]
theorem iInf_ulift {α : Type u_1} {ι : Type u_8} [InfSet α] (f : ULift ι → α) :
⨅ (i : ULift ι), f i = ⨅ (i : ι), f { down := i }
@[simp]
theorem sSup_singleton {α : Type u_1} [CompleteSemilatticeSup α] {a : α} :
sSup {a} = a
@[simp]
theorem sInf_singleton {α : Type u_1} [CompleteSemilatticeInf α] {a : α} :
sInf {a} = a
theorem sInf_le_sSup {α : Type u_1} [CompleteLattice α] {s : Set α} (hs : s.Nonempty) :
theorem sInf_le_sSup_of_nonempty_inter {α : Type u_1} [CompleteLattice α] {s t : Set α} (h : (s ∩ t).Nonempty) :
theorem sSup_union {α : Type u_1} [CompleteLattice α] {s t : Set α} :
sSup (s ∪ t) = sSup s ⊔ sSup t
theorem sInf_union {α : Type u_1} [CompleteLattice α] {s t : Set α} :
sInf (s ∪ t) = sInf s ⊓ sInf t
theorem sSup_inter_le {α : Type u_1} [CompleteLattice α] {s t : Set α} :
sSup (s ∩ t) ≤ sSup s ⊓ sSup t
theorem le_sInf_inter {α : Type u_1} [CompleteLattice α] {s t : Set α} :
sInf s ⊔ sInf t ≤ sInf (s ∩ t)
@[simp]
theorem sSup_empty {α : Type u_1} [CompleteLattice α] :
@[simp]
theorem sInf_empty {α : Type u_1} [CompleteLattice α] :
@[simp]
theorem sSup_univ {α : Type u_1} [CompleteLattice α] :
@[simp]
theorem sInf_univ {α : Type u_1} [CompleteLattice α] :
@[simp]
theorem sSup_insert {α : Type u_1} [CompleteLattice α] {a : α} {s : Set α} :
sSup (insert a s) = a ⊔ sSup s
@[simp]
theorem sInf_insert {α : Type u_1} [CompleteLattice α] {a : α} {s : Set α} :
sInf (insert a s) = a ⊓ sInf s
theorem sSup_le_sSup_of_subset_insert_bot {α : Type u_1} [CompleteLattice α] {s t : Set α} (h : s ⊆ insert ⊥ t) :
theorem sInf_le_sInf_of_subset_insert_top {α : Type u_1} [CompleteLattice α] {s t : Set α} (h : s ⊆ insert ⊤ t) :
@[simp]
theorem sSup_sdiff_singleton_bot {α : Type u_1} [CompleteLattice α] (s : Set α) :
sSup (s \ {⊥}) = sSup s
@[simp]
theorem sInf_sdiff_singleton_top {α : Type u_1} [CompleteLattice α] (s : Set α) :
sInf (s \ {⊤}) = sInf s
@[deprecated sSup_sdiff_singleton_bot (since := "2026-06-03")]
theorem sSup_diff_singleton_bot {α : Type u_1} [CompleteLattice α] (s : Set α) :
sSup (s \ {⊥}) = sSup s

Alias of sSup_sdiff_singleton_bot.

theorem sSup_pair {α : Type u_1} [CompleteLattice α] {a b : α} :
sSup {a, b} = a ⊔ b
theorem sInf_pair {α : Type u_1} [CompleteLattice α] {a b : α} :
sInf {a, b} = a ⊓ b
@[simp]
theorem sSup_eq_bot {α : Type u_1} [CompleteLattice α] {s : Set α} :
sSup s = ⊥ ↔ ∀ a ∈ s, a = ⊥
@[simp]
theorem sInf_eq_top {α : Type u_1} [CompleteLattice α] {s : Set α} :
sInf s = ⊤ ↔ ∀ a ∈ s, a = ⊤
theorem sSup_eq_bot' {α : Type u_1} [CompleteLattice α] {s : Set α} :
theorem sInf_eq_top' {α : Type u_1} [CompleteLattice α] {s : Set α} :
theorem eq_singleton_bot_of_sSup_eq_bot_of_nonempty {α : Type u_1} [CompleteLattice α] {s : Set α} (h_sup : sSup s = ⊥) (hne : s.Nonempty) :
theorem eq_singleton_top_of_sInf_eq_top_of_nonempty {α : Type u_1} [CompleteLattice α] {s : Set α} (h_inf : sInf s = ⊤) (hne : s.Nonempty) :
theorem sSup_eq_of_forall_le_of_forall_lt_exists_gt {α : Type u_1} [CompleteLattice α] {s : Set α} {b : α} (h₁ : ∀ a ∈ s, a ≤ b) (h₂ : ∀ w < b, ∃ a ∈ s, w < a) :
sSup s = b

Introduction rule to prove that b is the supremum of s: it suffices to check that b is larger than all elements of s, and that this is not the case of any w < b. See csSup_eq_of_forall_le_of_forall_lt_exists_gt for a version in conditionally complete lattices.

theorem sInf_eq_of_forall_ge_of_forall_gt_exists_lt {α : Type u_1} [CompleteLattice α] {s : Set α} {b : α} (h₁ : ∀ a ∈ s, b ≤ a) (h₂ : ∀ (w : α), b < w → ∃ a ∈ s, a < w) :
sInf s = b

Introduction rule to prove that b is the infimum of s: it suffices to check that b is smaller than all elements of s, and that this is not the case of any w > b. See csInf_eq_of_forall_ge_of_forall_gt_exists_lt for a version in conditionally complete lattices.

theorem sSup_range {α : Type u_1} {ι : Sort u_4} [SupSet α] {f : ι → α} :
theorem sInf_range {α : Type u_1} {ι : Sort u_4} [InfSet α] {f : ι → α} :
theorem sSup_eq_iSup' {α : Type u_1} [SupSet α] (s : Set α) :
sSup s = ⨆ (a : ↑s), ↑a
theorem sInf_eq_iInf' {α : Type u_1} [InfSet α] (s : Set α) :
sInf s = ⨅ (a : ↑s), ↑a
theorem iSup_congr {α : Type u_1} {ι : Sort u_4} [SupSet α] {f g : ι → α} (h : ∀ (i : ι), f i = g i) :
⨆ (i : ι), f i = ⨆ (i : ι), g i
theorem iInf_congr {α : Type u_1} {ι : Sort u_4} [InfSet α] {f g : ι → α} (h : ∀ (i : ι), f i = g i) :
⨅ (i : ι), f i = ⨅ (i : ι), g i
theorem biSup_congr {α : Type u_1} {ι : Sort u_4} [SupSet α] {f g : ι → α} {p : ι → Prop} (h : ∀ (i : ι), p i → f i = g i) :
⨆ (i : ι), ⨆ (_ : p i), f i = ⨆ (i : ι), ⨆ (_ : p i), g i
theorem biInf_congr {α : Type u_1} {ι : Sort u_4} [InfSet α] {f g : ι → α} {p : ι → Prop} (h : ∀ (i : ι), p i → f i = g i) :
⨅ (i : ι), ⨅ (_ : p i), f i = ⨅ (i : ι), ⨅ (_ : p i), g i
theorem biSup_congr' {α : Type u_1} {ι : Sort u_4} [SupSet α] {p : ι → Prop} {f g : (i : ι) → p i → α} (h : ∀ (i : ι) (hi : p i), f i hi = g i hi) :
⨆ (i : ι), ⨆ (hi : p i), f i hi = ⨆ (i : ι), ⨆ (hi : p i), g i hi
theorem biInf_congr' {α : Type u_1} {ι : Sort u_4} [InfSet α] {p : ι → Prop} {f g : (i : ι) → p i → α} (h : ∀ (i : ι) (hi : p i), f i hi = g i hi) :
⨅ (i : ι), ⨅ (hi : p i), f i hi = ⨅ (i : ι), ⨅ (hi : p i), g i hi
theorem Function.Surjective.iSup_comp {α : Type u_1} {ι : Sort u_4} {ι' : Sort u_5} [SupSet α] {f : ι → ι'} (hf : Surjective f) (g : ι' → α) :
⨆ (x : ι), g (f x) = ⨆ (y : ι'), g y
theorem Function.Surjective.iInf_comp {α : Type u_1} {ι : Sort u_4} {ι' : Sort u_5} [InfSet α] {f : ι → ι'} (hf : Surjective f) (g : ι' → α) :
⨅ (x : ι), g (f x) = ⨅ (y : ι'), g y
theorem Equiv.iSup_comp {α : Type u_1} {ι : Sort u_4} {ι' : Sort u_5} [SupSet α] {g : ι' → α} (e : ι ≃ ι') :
⨆ (x : ι), g (e x) = ⨆ (y : ι'), g y
theorem Equiv.iInf_comp {α : Type u_1} {ι : Sort u_4} {ι' : Sort u_5} [InfSet α] {g : ι' → α} (e : ι ≃ ι') :
⨅ (x : ι), g (e x) = ⨅ (y : ι'), g y
theorem Function.Surjective.iSup_congr {α : Type u_1} {ι : Sort u_4} {ι' : Sort u_5} [SupSet α] {f : ι → α} {g : ι' → α} (h : ι → ι') (h1 : Surjective h) (h2 : ∀ (x : ι), g (h x) = f x) :
⨆ (x : ι), f x = ⨆ (y : ι'), g y
theorem Function.Surjective.iInf_congr {α : Type u_1} {ι : Sort u_4} {ι' : Sort u_5} [InfSet α] {f : ι → α} {g : ι' → α} (h : ι → ι') (h1 : Surjective h) (h2 : ∀ (x : ι), g (h x) = f x) :
⨅ (x : ι), f x = ⨅ (y : ι'), g y
theorem Equiv.iSup_congr {α : Type u_1} {ι : Sort u_4} {ι' : Sort u_5} [SupSet α] {f : ι → α} {g : ι' → α} (e : ι ≃ ι') (h : ∀ (x : ι), g (e x) = f x) :
⨆ (x : ι), f x = ⨆ (y : ι'), g y
theorem Equiv.iInf_congr {α : Type u_1} {ι : Sort u_4} {ι' : Sort u_5} [InfSet α] {f : ι → α} {g : ι' → α} (e : ι ≃ ι') (h : ∀ (x : ι), g (e x) = f x) :
⨅ (x : ι), f x = ⨅ (y : ι'), g y
theorem iSup_congr_Prop {α : Type u_1} [SupSet α] {p q : Prop} {f₁ : p → α} {f₂ : q → α} (pq : p ↔ q) (f : ∀ (x : q), f₁ ⋯ = f₂ x) :
iSup f₁ = iSup f₂
theorem iInf_congr_Prop {α : Type u_1} [InfSet α] {p q : Prop} {f₁ : p → α} {f₂ : q → α} (pq : p ↔ q) (f : ∀ (x : q), f₁ ⋯ = f₂ x) :
iInf f₁ = iInf f₂
theorem iSup_plift_up {α : Type u_1} {ι : Sort u_4} [SupSet α] (f : PLift ι → α) :
⨆ (i : ι), f { down := i } = ⨆ (i : PLift ι), f i
theorem iInf_plift_up {α : Type u_1} {ι : Sort u_4} [InfSet α] (f : PLift ι → α) :
⨅ (i : ι), f { down := i } = ⨅ (i : PLift ι), f i
theorem iSup_plift_down {α : Type u_1} {ι : Sort u_4} [SupSet α] (f : ι → α) :
⨆ (i : PLift ι), f i.down = ⨆ (i : ι), f i
theorem iInf_plift_down {α : Type u_1} {ι : Sort u_4} [InfSet α] (f : ι → α) :
⨅ (i : PLift ι), f i.down = ⨅ (i : ι), f i
theorem iSup_range' {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [SupSet α] (g : β → α) (f : ι → β) :
⨆ (b : ↑(Set.range f)), g ↑b = ⨆ (i : ι), g (f i)
theorem iInf_range' {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [InfSet α] (g : β → α) (f : ι → β) :
⨅ (b : ↑(Set.range f)), g ↑b = ⨅ (i : ι), g (f i)
theorem sSup_image' {α : Type u_1} {β : Type u_2} [SupSet α] {s : Set β} {f : β → α} :
sSup (f '' s) = ⨆ (a : ↑s), f ↑a
theorem sInf_image' {α : Type u_1} {β : Type u_2} [InfSet α] {s : Set β} {f : β → α} :
sInf (f '' s) = ⨅ (a : ↑s), f ↑a
theorem le_iSup {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] (f : ι → α) (i : ι) :
f i ≤ iSup f
theorem iInf_le {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] (f : ι → α) (i : ι) :
iInf f ≤ f i
theorem iInf_le_iSup {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {f : ι → α} [Nonempty ι] :
⨅ (i : ι), f i ≤ ⨆ (i : ι), f i
theorem isLUB_iSup {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {f : ι → α} :
IsLUB (Set.range f) (⨆ (j : ι), f j)
theorem isGLB_iInf {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {f : ι → α} :
IsGLB (Set.range f) (⨅ (j : ι), f j)
theorem IsLUB.iSup_eq {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {f : ι → α} {a : α} (h : IsLUB (Set.range f) a) :
⨆ (j : ι), f j = a
theorem IsGLB.iInf_eq {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {f : ι → α} {a : α} (h : IsGLB (Set.range f) a) :
⨅ (j : ι), f j = a
theorem le_iSup_of_le {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {f : ι → α} {a : α} (i : ι) (h : a ≤ f i) :
a ≤ iSup f
theorem iInf_le_of_le {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {f : ι → α} {a : α} (i : ι) (h : f i ≤ a) :
iInf f ≤ a
theorem le_iSup₂ {α : Type u_1} {ι : Sort u_4} {κ : ι → Sort u_6} [CompleteLattice α] {f : (i : ι) → κ i → α} (i : ι) (j : κ i) :
f i j ≤ ⨆ (i : ι), ⨆ (j : κ i), f i j
theorem iInf₂_le {α : Type u_1} {ι : Sort u_4} {κ : ι → Sort u_6} [CompleteLattice α] {f : (i : ι) → κ i → α} (i : ι) (j : κ i) :
⨅ (i : ι), ⨅ (j : κ i), f i j ≤ f i j
theorem le_iSup₂_of_le {α : Type u_1} {ι : Sort u_4} {κ : ι → Sort u_6} [CompleteLattice α] {a : α} {f : (i : ι) → κ i → α} (i : ι) (j : κ i) (h : a ≤ f i j) :
a ≤ ⨆ (i : ι), ⨆ (j : κ i), f i j
theorem iInf₂_le_of_le {α : Type u_1} {ι : Sort u_4} {κ : ι → Sort u_6} [CompleteLattice α] {a : α} {f : (i : ι) → κ i → α} (i : ι) (j : κ i) (h : f i j ≤ a) :
⨅ (i : ι), ⨅ (j : κ i), f i j ≤ a
theorem iSup_le {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {f : ι → α} {a : α} (h : ∀ (i : ι), f i ≤ a) :
iSup f ≤ a
theorem le_iInf {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {f : ι → α} {a : α} (h : ∀ (i : ι), a ≤ f i) :
a ≤ iInf f
theorem iSup₂_le {α : Type u_1} {ι : Sort u_4} {κ : ι → Sort u_6} [CompleteLattice α] {a : α} {f : (i : ι) → κ i → α} (h : ∀ (i : ι) (j : κ i), f i j ≤ a) :
⨆ (i : ι), ⨆ (j : κ i), f i j ≤ a
theorem le_iInf₂ {α : Type u_1} {ι : Sort u_4} {κ : ι → Sort u_6} [CompleteLattice α] {a : α} {f : (i : ι) → κ i → α} (h : ∀ (i : ι) (j : κ i), a ≤ f i j) :
a ≤ ⨅ (i : ι), ⨅ (j : κ i), f i j
theorem iSup₂_le_iSup {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] (κ : ι → Sort u_8) (f : ι → α) :
⨆ (i : ι), ⨆ (x : κ i), f i ≤ ⨆ (i : ι), f i
theorem iInf_le_iInf₂ {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] (κ : ι → Sort u_8) (f : ι → α) :
⨅ (i : ι), f i ≤ ⨅ (i : ι), ⨅ (x : κ i), f i
theorem iSup_mono {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {f g : ι → α} (h : ∀ (i : ι), f i ≤ g i) :
theorem iInf_mono {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {f g : ι → α} (h : ∀ (i : ι), g i ≤ f i) :
theorem iSup₂_mono {α : Type u_1} {ι : Sort u_4} {κ : ι → Sort u_6} [CompleteLattice α] {f g : (i : ι) → κ i → α} (h : ∀ (i : ι) (j : κ i), f i j ≤ g i j) :
⨆ (i : ι), ⨆ (j : κ i), f i j ≤ ⨆ (i : ι), ⨆ (j : κ i), g i j
theorem iInf₂_mono {α : Type u_1} {ι : Sort u_4} {κ : ι → Sort u_6} [CompleteLattice α] {f g : (i : ι) → κ i → α} (h : ∀ (i : ι) (j : κ i), g i j ≤ f i j) :
⨅ (i : ι), ⨅ (j : κ i), g i j ≤ ⨅ (i : ι), ⨅ (j : κ i), f i j
theorem iSup_mono' {α : Type u_1} {ι : Sort u_4} {ι' : Sort u_5} [CompleteLattice α] {f : ι → α} {g : ι' → α} (h : ∀ (i : ι), ∃ (i' : ι'), f i ≤ g i') :
theorem iInf_mono' {α : Type u_1} {ι : Sort u_4} {ι' : Sort u_5} [CompleteLattice α] {f : ι → α} {g : ι' → α} (h : ∀ (i : ι), ∃ (i' : ι'), g i' ≤ f i) :
theorem iSup₂_mono' {α : Type u_1} {ι : Sort u_4} {ι' : Sort u_5} {κ : ι → Sort u_6} {κ' : ι' → Sort u_7} [CompleteLattice α] {f : (i : ι) → κ i → α} {g : (i' : ι') → κ' i' → α} (h : ∀ (i : ι) (j : κ i), ∃ (i' : ι') (j' : κ' i'), f i j ≤ g i' j') :
⨆ (i : ι), ⨆ (j : κ i), f i j ≤ ⨆ (i : ι'), ⨆ (j : κ' i), g i j
theorem iInf₂_mono' {α : Type u_1} {ι : Sort u_4} {ι' : Sort u_5} {κ : ι → Sort u_6} {κ' : ι' → Sort u_7} [CompleteLattice α] {f : (i : ι) → κ i → α} {g : (i' : ι') → κ' i' → α} (h : ∀ (i : ι) (j : κ i), ∃ (i' : ι') (j' : κ' i'), g i' j' ≤ f i j) :
⨅ (i : ι'), ⨅ (j : κ' i), g i j ≤ ⨅ (i : ι), ⨅ (j : κ i), f i j
theorem iSup_const_mono {α : Type u_1} {ι : Sort u_4} {ι' : Sort u_5} [CompleteLattice α] {a : α} (h : ι → ι') :
⨆ (x : ι), a ≤ ⨆ (x : ι'), a
theorem iInf_const_mono {α : Type u_1} {ι : Sort u_4} {ι' : Sort u_5} [CompleteLattice α] {a : α} (h : ι → ι') :
⨅ (x : ι'), a ≤ ⨅ (x : ι), a
theorem iSup_iInf_le_iInf_iSup {α : Type u_1} {ι : Sort u_4} {ι' : Sort u_5} [CompleteLattice α] (f : ι → ι' → α) :
⨆ (i : ι), ⨅ (j : ι'), f i j ≤ ⨅ (j : ι'), ⨆ (i : ι), f i j
theorem biSup_mono {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {f : ι → α} {p q : ι → Prop} (hpq : ∀ (i : ι), p i → q i) :
⨆ (i : ι), ⨆ (_ : p i), f i ≤ ⨆ (i : ι), ⨆ (_ : q i), f i
theorem biInf_mono {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {f : ι → α} {p q : ι → Prop} (hpq : ∀ (i : ι), p i → q i) :
⨅ (i : ι), ⨅ (_ : q i), f i ≤ ⨅ (i : ι), ⨅ (_ : p i), f i
@[simp]
theorem iSup_le_iff {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {f : ι → α} {a : α} :
iSup f ≤ a ↔ ∀ (i : ι), f i ≤ a
@[simp]
theorem le_iInf_iff {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {f : ι → α} {a : α} :
a ≤ iInf f ↔ ∀ (i : ι), a ≤ f i
theorem iSup₂_le_iff {α : Type u_1} {ι : Sort u_4} {κ : ι → Sort u_6} [CompleteLattice α] {a : α} {f : (i : ι) → κ i → α} :
⨆ (i : ι), ⨆ (j : κ i), f i j ≤ a ↔ ∀ (i : ι) (j : κ i), f i j ≤ a
theorem le_iInf₂_iff {α : Type u_1} {ι : Sort u_4} {κ : ι → Sort u_6} [CompleteLattice α] {a : α} {f : (i : ι) → κ i → α} :
a ≤ ⨅ (i : ι), ⨅ (j : κ i), f i j ↔ ∀ (i : ι) (j : κ i), a ≤ f i j
theorem sSup_eq_iSup {α : Type u_1} [CompleteLattice α] {s : Set α} :
sSup s = ⨆ a ∈ s, a
theorem sInf_eq_iInf {α : Type u_1} [CompleteLattice α] {s : Set α} :
sInf s = ⨅ a ∈ s, a
@[deprecated sInf_upperBounds_eq_sSup (since := "2026-02-01")]
theorem sInf_upperBounds_eq_csSup {α : Type u_1} [CompleteLattice α] (s : Set α) :

Alias of sInf_upperBounds_eq_sSup.

theorem Monotone.le_map_iSup {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [CompleteLattice α] {s : ι → α} [CompleteLattice β] {f : α → β} (hf : Monotone f) :
⨆ (i : ι), f (s i) ≤ f (iSup s)
theorem Monotone.map_iInf_le {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [CompleteLattice α] {s : ι → α} [CompleteLattice β] {f : α → β} (hf : Monotone f) :
f (iInf s) ≤ ⨅ (i : ι), f (s i)
theorem Antitone.le_map_iInf {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [CompleteLattice α] {s : ι → α} [CompleteLattice β] {f : α → β} (hf : Antitone f) :
⨆ (i : ι), f (s i) ≤ f (iInf s)
theorem Antitone.map_iSup_le {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [CompleteLattice α] {s : ι → α} [CompleteLattice β] {f : α → β} (hf : Antitone f) :
f (iSup s) ≤ ⨅ (i : ι), f (s i)
theorem Monotone.le_map_iSup₂ {α : Type u_1} {β : Type u_2} {ι : Sort u_4} {κ : ι → Sort u_6} [CompleteLattice α] [CompleteLattice β] {f : α → β} (hf : Monotone f) (s : (i : ι) → κ i → α) :
⨆ (i : ι), ⨆ (j : κ i), f (s i j) ≤ f (⨆ (i : ι), ⨆ (j : κ i), s i j)
theorem Monotone.map_iInf₂_le {α : Type u_1} {β : Type u_2} {ι : Sort u_4} {κ : ι → Sort u_6} [CompleteLattice α] [CompleteLattice β] {f : α → β} (hf : Monotone f) (s : (i : ι) → κ i → α) :
f (⨅ (i : ι), ⨅ (j : κ i), s i j) ≤ ⨅ (i : ι), ⨅ (j : κ i), f (s i j)
theorem Antitone.le_map_iInf₂ {α : Type u_1} {β : Type u_2} {ι : Sort u_4} {κ : ι → Sort u_6} [CompleteLattice α] [CompleteLattice β] {f : α → β} (hf : Antitone f) (s : (i : ι) → κ i → α) :
⨆ (i : ι), ⨆ (j : κ i), f (s i j) ≤ f (⨅ (i : ι), ⨅ (j : κ i), s i j)
theorem Antitone.map_iSup₂_le {α : Type u_1} {β : Type u_2} {ι : Sort u_4} {κ : ι → Sort u_6} [CompleteLattice α] [CompleteLattice β] {f : α → β} (hf : Antitone f) (s : (i : ι) → κ i → α) :
f (⨆ (i : ι), ⨆ (j : κ i), s i j) ≤ ⨅ (i : ι), ⨅ (j : κ i), f (s i j)
theorem Monotone.le_map_sSup {α : Type u_1} {β : Type u_2} [CompleteLattice α] [CompleteLattice β] {s : Set α} {f : α → β} (hf : Monotone f) :
⨆ a ∈ s, f a ≤ f (sSup s)
theorem Monotone.map_sInf_le {α : Type u_1} {β : Type u_2} [CompleteLattice α] [CompleteLattice β] {s : Set α} {f : α → β} (hf : Monotone f) :
f (sInf s) ≤ ⨅ a ∈ s, f a
theorem Antitone.le_map_sInf {α : Type u_1} {β : Type u_2} [CompleteLattice α] [CompleteLattice β] {s : Set α} {f : α → β} (hf : Antitone f) :
⨆ a ∈ s, f a ≤ f (sInf s)
theorem Antitone.map_sSup_le {α : Type u_1} {β : Type u_2} [CompleteLattice α] [CompleteLattice β] {s : Set α} {f : α → β} (hf : Antitone f) :
f (sSup s) ≤ ⨅ a ∈ s, f a
theorem OrderIso.map_iSup {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [CompleteLattice α] [CompleteLattice β] (f : α ≃o β) (x : ι → α) :
f (⨆ (i : ι), x i) = ⨆ (i : ι), f (x i)
theorem OrderIso.map_iInf {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [CompleteLattice α] [CompleteLattice β] (f : α ≃o β) (x : ι → α) :
f (⨅ (i : ι), x i) = ⨅ (i : ι), f (x i)
theorem OrderIso.map_iSup₂ {α : Type u_1} {β : Type u_2} {ι : Sort u_4} {κ : ι → Sort u_6} [CompleteLattice α] [CompleteLattice β] (f : α ≃o β) (x : (i : ι) → κ i → α) :
f (⨆ (i : ι), ⨆ (j : κ i), x i j) = ⨆ (i : ι), ⨆ (j : κ i), f (x i j)
theorem OrderIso.map_iInf₂ {α : Type u_1} {β : Type u_2} {ι : Sort u_4} {κ : ι → Sort u_6} [CompleteLattice α] [CompleteLattice β] (f : α ≃o β) (x : (i : ι) → κ i → α) :
f (⨅ (i : ι), ⨅ (j : κ i), x i j) = ⨅ (i : ι), ⨅ (j : κ i), f (x i j)
theorem OrderIso.map_sSup {α : Type u_1} {β : Type u_2} [CompleteLattice α] [CompleteLattice β] (f : α ≃o β) (s : Set α) :
f (sSup s) = ⨆ a ∈ s, f a
theorem OrderIso.map_sInf {α : Type u_1} {β : Type u_2} [CompleteLattice α] [CompleteLattice β] (f : α ≃o β) (s : Set α) :
f (sInf s) = ⨅ a ∈ s, f a
theorem iSup_comp_le {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {ι' : Sort u_8} (f : ι' → α) (g : ι → ι') :
⨆ (x : ι), f (g x) ≤ ⨆ (y : ι'), f y
theorem le_iInf_comp {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {ι' : Sort u_8} (f : ι' → α) (g : ι → ι') :
⨅ (y : ι'), f y ≤ ⨅ (x : ι), f (g x)
theorem Monotone.iSup_comp_eq {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [CompleteLattice α] [Preorder β] {f : β → α} (hf : Monotone f) {s : ι → β} (hs : ∀ (x : β), ∃ (i : ι), x ≤ s i) :
⨆ (x : ι), f (s x) = ⨆ (y : β), f y
theorem Monotone.iInf_comp_eq {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [CompleteLattice α] [Preorder β] {f : β → α} (hf : Monotone f) {s : ι → β} (hs : ∀ (x : β), ∃ (i : ι), s i ≤ x) :
⨅ (x : ι), f (s x) = ⨅ (y : β), f y
theorem iSup_const_le {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {a : α} :
⨆ (x : ι), a ≤ a
theorem le_iInf_const {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {a : α} :
a ≤ ⨅ (x : ι), a
theorem iSup_const {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {a : α} [Nonempty ι] :
⨆ (x : ι), a = a
theorem iInf_const {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {a : α} [Nonempty ι] :
⨅ (x : ι), a = a
theorem iSup_unique {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] [Unique ι] (f : ι → α) :
⨆ (i : ι), f i = f default
theorem iInf_unique {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] [Unique ι] (f : ι → α) :
⨅ (i : ι), f i = f default
@[simp]
theorem iSup_bot {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] :
⨆ (x : ι), ⊥ = ⊥
@[simp]
theorem iInf_top {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] :
⨅ (x : ι), ⊤ = ⊤
@[simp]
theorem iSup_eq_bot {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {s : ι → α} :
iSup s = ⊥ ↔ ∀ (i : ι), s i = ⊥
@[simp]
theorem iInf_eq_top {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {s : ι → α} :
iInf s = ⊤ ↔ ∀ (i : ι), s i = ⊤
@[simp]
theorem bot_lt_iSup {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {s : ι → α} :
⊥ < ⨆ (i : ι), s i ↔ ∃ (i : ι), ⊥ < s i
@[simp]
theorem iInf_lt_top {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {s : ι → α} :
⨅ (i : ι), s i < ⊤ ↔ ∃ (i : ι), s i < ⊤
theorem iSup₂_eq_bot {α : Type u_1} {ι : Sort u_4} {κ : ι → Sort u_6} [CompleteLattice α] {f : (i : ι) → κ i → α} :
⨆ (i : ι), ⨆ (j : κ i), f i j = ⊥ ↔ ∀ (i : ι) (j : κ i), f i j = ⊥
theorem iInf₂_eq_top {α : Type u_1} {ι : Sort u_4} {κ : ι → Sort u_6} [CompleteLattice α] {f : (i : ι) → κ i → α} :
⨅ (i : ι), ⨅ (j : κ i), f i j = ⊤ ↔ ∀ (i : ι) (j : κ i), f i j = ⊤
@[simp]
theorem iSup_pos {α : Type u_1} [CompleteLattice α] {p : Prop} {f : p → α} (hp : p) :
⨆ (h : p), f h = f hp
@[simp]
theorem iInf_pos {α : Type u_1} [CompleteLattice α] {p : Prop} {f : p → α} (hp : p) :
⨅ (h : p), f h = f hp
@[simp]
theorem iSup_neg {α : Type u_1} [CompleteLattice α] {p : Prop} {f : p → α} (hp : ¬p) :
⨆ (h : p), f h = ⊥
@[simp]
theorem iInf_neg {α : Type u_1} [CompleteLattice α] {p : Prop} {f : p → α} (hp : ¬p) :
⨅ (h : p), f h = ⊤
theorem iSup_eq_of_forall_le_of_forall_lt_exists_gt {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {b : α} {f : ι → α} (h₁ : ∀ (i : ι), f i ≤ b) (h₂ : ∀ w < b, ∃ (i : ι), w < f i) :
⨆ (i : ι), f i = b

Introduction rule to prove that b is the supremum of f: it suffices to check that b is larger than f i for all i, and that this is not the case of any w<b. See ciSup_eq_of_forall_le_of_forall_lt_exists_gt for a version in conditionally complete lattices.

theorem iInf_eq_of_forall_ge_of_forall_gt_exists_lt {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {b : α} {f : ι → α} (h₁ : ∀ (i : ι), b ≤ f i) (h₂ : ∀ (w : α), b < w → ∃ (i : ι), f i < w) :
⨅ (i : ι), f i = b

Introduction rule to prove that b is the infimum of f: it suffices to check that b is smaller than f i for all i, and that this is not the case of any w>b. See ciInf_eq_of_forall_ge_of_forall_gt_exists_lt for a version in conditionally complete lattices.

theorem iSup_eq_dif {α : Type u_1} [CompleteLattice α] {p : Prop} [Decidable p] (a : p → α) :
⨆ (h : p), a h = if h : p then a h else ⊥
theorem iInf_eq_dif {α : Type u_1} [CompleteLattice α] {p : Prop} [Decidable p] (a : p → α) :
⨅ (h : p), a h = if h : p then a h else ⊤
theorem iSup_eq_if {α : Type u_1} [CompleteLattice α] {p : Prop} [Decidable p] (a : α) :
⨆ (_ : p), a = if p then a else ⊥
theorem iInf_eq_if {α : Type u_1} [CompleteLattice α] {p : Prop} [Decidable p] (a : α) :
⨅ (_ : p), a = if p then a else ⊤
theorem iSup_comm {α : Type u_1} {ι : Sort u_4} {ι' : Sort u_5} [CompleteLattice α] {f : ι → ι' → α} :
⨆ (i : ι), ⨆ (j : ι'), f i j = ⨆ (j : ι'), ⨆ (i : ι), f i j
theorem iInf_comm {α : Type u_1} {ι : Sort u_4} {ι' : Sort u_5} [CompleteLattice α] {f : ι → ι' → α} :
⨅ (i : ι), ⨅ (j : ι'), f i j = ⨅ (j : ι'), ⨅ (i : ι), f i j
theorem iSup₂_comm {α : Type u_1} [CompleteLattice α] {ι₁ : Sort u_8} {ι₂ : Sort u_9} {κ₁ : ι₁ → Sort u_10} {κ₂ : ι₂ → Sort u_11} (f : (i₁ : ι₁) → κ₁ i₁ → (i₂ : ι₂) → κ₂ i₂ → α) :
⨆ (i₁ : ι₁), ⨆ (j₁ : κ₁ i₁), ⨆ (i₂ : ι₂), ⨆ (j₂ : κ₂ i₂), f i₁ j₁ i₂ j₂ = ⨆ (i₂ : ι₂), ⨆ (j₂ : κ₂ i₂), ⨆ (i₁ : ι₁), ⨆ (j₁ : κ₁ i₁), f i₁ j₁ i₂ j₂
theorem iInf₂_comm {α : Type u_1} [CompleteLattice α] {ι₁ : Sort u_8} {ι₂ : Sort u_9} {κ₁ : ι₁ → Sort u_10} {κ₂ : ι₂ → Sort u_11} (f : (i₁ : ι₁) → κ₁ i₁ → (i₂ : ι₂) → κ₂ i₂ → α) :
⨅ (i₁ : ι₁), ⨅ (j₁ : κ₁ i₁), ⨅ (i₂ : ι₂), ⨅ (j₂ : κ₂ i₂), f i₁ j₁ i₂ j₂ = ⨅ (i₂ : ι₂), ⨅ (j₂ : κ₂ i₂), ⨅ (i₁ : ι₁), ⨅ (j₁ : κ₁ i₁), f i₁ j₁ i₂ j₂
@[simp]
theorem iSup_iSup_eq_left {α : Type u_1} {β : Type u_2} [CompleteLattice α] {b : β} {f : (x : β) → x = b → α} :
⨆ (x : β), ⨆ (h : x = b), f x h = f b ⋯
@[simp]
theorem iInf_iInf_eq_left {α : Type u_1} {β : Type u_2} [CompleteLattice α] {b : β} {f : (x : β) → x = b → α} :
⨅ (x : β), ⨅ (h : x = b), f x h = f b ⋯
@[simp]
theorem iSup_iSup_eq_right {α : Type u_1} {β : Type u_2} [CompleteLattice α] {b : β} {f : (x : β) → b = x → α} :
⨆ (x : β), ⨆ (h : b = x), f x h = f b ⋯
@[simp]
theorem iInf_iInf_eq_right {α : Type u_1} {β : Type u_2} [CompleteLattice α] {b : β} {f : (x : β) → b = x → α} :
⨅ (x : β), ⨅ (h : b = x), f x h = f b ⋯
theorem iSup_subtype {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {p : ι → Prop} {f : Subtype p → α} :
iSup f = ⨆ (i : ι), ⨆ (h : p i), f ⟨i, h⟩
theorem iInf_subtype {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {p : ι → Prop} {f : Subtype p → α} :
iInf f = ⨅ (i : ι), ⨅ (h : p i), f ⟨i, h⟩
theorem iSup_subtype' {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {p : ι → Prop} {f : (i : ι) → p i → α} :
⨆ (i : ι), ⨆ (h : p i), f i h = ⨆ (x : Subtype p), f ↑x ⋯
theorem iInf_subtype' {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {p : ι → Prop} {f : (i : ι) → p i → α} :
⨅ (i : ι), ⨅ (h : p i), f i h = ⨅ (x : Subtype p), f ↑x ⋯
theorem iSup_subtype'' {α : Type u_1} [CompleteLattice α] {ι : Type u_8} (s : Set ι) (f : ι → α) :
⨆ (i : ↑s), f ↑i = ⨆ t ∈ s, f t
theorem iInf_subtype'' {α : Type u_1} [CompleteLattice α] {ι : Type u_8} (s : Set ι) (f : ι → α) :
⨅ (i : ↑s), f ↑i = ⨅ t ∈ s, f t
theorem biSup_const {α : Type u_1} {β : Type u_2} [CompleteLattice α] {a : α} {s : Set β} (hs : s.Nonempty) :
⨆ i ∈ s, a = a
theorem biInf_const {α : Type u_1} {β : Type u_2} [CompleteLattice α] {a : α} {s : Set β} (hs : s.Nonempty) :
⨅ i ∈ s, a = a
theorem iSup_sup_eq {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {f g : ι → α} :
⨆ (x : ι), f x ⊔ g x = (⨆ (x : ι), f x) ⊔ ⨆ (x : ι), g x
theorem iInf_inf_eq {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {f g : ι → α} :
⨅ (x : ι), f x ⊓ g x = (⨅ (x : ι), f x) ⊓ ⨅ (x : ι), g x
theorem Equiv.biSup_comp {α : Type u_1} [CompleteLattice α] {ι : Type u_8} {ι' : Type u_9} {g : ι' → α} (e : ι ≃ ι') (s : Set ι') :
⨆ i ∈ ⇑e.symm '' s, g (e i) = ⨆ i ∈ s, g i
theorem Equiv.biInf_comp {α : Type u_1} [CompleteLattice α] {ι : Type u_8} {ι' : Type u_9} {g : ι' → α} (e : ι ≃ ι') (s : Set ι') :
⨅ i ∈ ⇑e.symm '' s, g (e i) = ⨅ i ∈ s, g i
theorem le_biSup {α : Type u_1} [CompleteLattice α] {ι : Type u_8} {s : Set ι} (f : ι → α) {i : ι} (hi : i ∈ s) :
f i ≤ ⨆ i ∈ s, f i
theorem biInf_le {α : Type u_1} [CompleteLattice α] {ι : Type u_8} {s : Set ι} (f : ι → α) {i : ι} (hi : i ∈ s) :
⨅ i ∈ s, f i ≤ f i
theorem biInf_le_biSup {α : Type u_1} [CompleteLattice α] {ι : Type u_8} {s : Set ι} (hs : s.Nonempty) {f : ι → α} :
⨅ i ∈ s, f i ≤ ⨆ i ∈ s, f i
theorem iSup_sup {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] [Nonempty ι] {f : ι → α} {a : α} :
(⨆ (x : ι), f x) ⊔ a = ⨆ (x : ι), f x ⊔ a
theorem iInf_inf {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] [Nonempty ι] {f : ι → α} {a : α} :
(⨅ (x : ι), f x) ⊓ a = ⨅ (x : ι), f x ⊓ a
theorem sup_iSup {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] [Nonempty ι] {f : ι → α} {a : α} :
a ⊔ ⨆ (x : ι), f x = ⨆ (x : ι), a ⊔ f x
theorem inf_iInf {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] [Nonempty ι] {f : ι → α} {a : α} :
a ⊓ ⨅ (x : ι), f x = ⨅ (x : ι), a ⊓ f x
theorem biSup_sup {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {p : ι → Prop} {f : (i : ι) → p i → α} {a : α} (h : ∃ (i : ι), p i) :
(⨆ (i : ι), ⨆ (h : p i), f i h) ⊔ a = ⨆ (i : ι), ⨆ (h : p i), f i h ⊔ a
theorem biInf_inf {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {p : ι → Prop} {f : (i : ι) → p i → α} {a : α} (h : ∃ (i : ι), p i) :
(⨅ (i : ι), ⨅ (h : p i), f i h) ⊓ a = ⨅ (i : ι), ⨅ (h : p i), f i h ⊓ a
theorem sup_biSup {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {p : ι → Prop} {f : (i : ι) → p i → α} {a : α} (h : ∃ (i : ι), p i) :
a ⊔ ⨆ (i : ι), ⨆ (h : p i), f i h = ⨆ (i : ι), ⨆ (h : p i), a ⊔ f i h
theorem inf_biInf {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {p : ι → Prop} {f : (i : ι) → p i → α} {a : α} (h : ∃ (i : ι), p i) :
a ⊓ ⨅ (i : ι), ⨅ (h : p i), f i h = ⨅ (i : ι), ⨅ (h : p i), a ⊓ f i h
theorem biSup_lt_eq_iSup {α : Type u_1} [CompleteLattice α] {ι : Type u_8} [LT ι] [NoMaxOrder ι] {f : ι → α} :
⨆ (i : ι), ⨆ (j : ι), ⨆ (_ : j < i), f j = ⨆ (i : ι), f i
theorem biInf_lt_eq_iInf {α : Type u_1} [CompleteLattice α] {ι : Type u_8} [LT ι] [NoMaxOrder ι] {f : ι → α} :
⨅ (i : ι), ⨅ (j : ι), ⨅ (_ : j < i), f j = ⨅ (i : ι), f i
theorem biSup_le_eq_iSup {α : Type u_1} [CompleteLattice α] {ι : Type u_8} [Preorder ι] {f : ι → α} :
⨆ (i : ι), ⨆ (j : ι), ⨆ (_ : j ≤ i), f j = ⨆ (i : ι), f i
theorem biInf_le_eq_iInf {α : Type u_1} [CompleteLattice α] {ι : Type u_8} [Preorder ι] {f : ι → α} :
⨅ (i : ι), ⨅ (j : ι), ⨅ (_ : j ≤ i), f j = ⨅ (i : ι), f i
theorem biSup_gt_eq_iSup {α : Type u_1} [CompleteLattice α] {ι : Type u_8} [LT ι] [NoMinOrder ι] {f : ι → α} :
⨆ (i : ι), ⨆ (j : ι), ⨆ (_ : j > i), f j = ⨆ (i : ι), f i
theorem biInf_gt_eq_iInf {α : Type u_1} [CompleteLattice α] {ι : Type u_8} [LT ι] [NoMinOrder ι] {f : ι → α} :
⨅ (i : ι), ⨅ (j : ι), ⨅ (_ : j > i), f j = ⨅ (i : ι), f i
theorem biSup_ge_eq_iSup {α : Type u_1} [CompleteLattice α] {ι : Type u_8} [Preorder ι] {f : ι → α} :
⨆ (i : ι), ⨆ (j : ι), ⨆ (_ : j ≥ i), f j = ⨆ (i : ι), f i
theorem biInf_ge_eq_iInf {α : Type u_1} [CompleteLattice α] {ι : Type u_8} [Preorder ι] {f : ι → α} :
⨅ (i : ι), ⨅ (j : ι), ⨅ (_ : j ≥ i), f j = ⨅ (i : ι), f i
theorem biSup_le_eq_of_monotone {α : Type u_1} {β : Type u_2} [CompleteLattice α] [Preorder β] {f : β → α} (hf : Monotone f) (b : β) :
⨆ (b' : β), ⨆ (_ : b' ≤ b), f b' = f b
theorem biInf_ge_eq_of_monotone {α : Type u_1} {β : Type u_2} [CompleteLattice α] [Preorder β] {f : β → α} (hf : Monotone f) (b : β) :
⨅ (b' : β), ⨅ (_ : b ≤ b'), f b' = f b
theorem biInf_le_eq_of_antitone {α : Type u_1} {β : Type u_2} [CompleteLattice α] [Preorder β] {f : β → α} (hf : Antitone f) (b : β) :
⨅ (b' : β), ⨅ (_ : b' ≤ b), f b' = f b
theorem biSup_ge_eq_of_antitone {α : Type u_1} {β : Type u_2} [CompleteLattice α] [Preorder β] {f : β → α} (hf : Antitone f) (b : β) :
⨆ (b' : β), ⨆ (_ : b ≤ b'), f b' = f b

iSup and iInf under Prop #

theorem iSup_false {α : Type u_1} [CompleteLattice α] {s : False → α} :
theorem iInf_false {α : Type u_1} [CompleteLattice α] {s : False → α} :
theorem iSup_true {α : Type u_1} [CompleteLattice α] {s : True → α} :
theorem iInf_true {α : Type u_1} [CompleteLattice α] {s : True → α} :
@[simp]
theorem iSup_exists {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {p : ι → Prop} {f : Exists p → α} :
⨆ (x : Exists p), f x = ⨆ (i : ι), ⨆ (h : p i), f ⋯
@[simp]
theorem iInf_exists {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] {p : ι → Prop} {f : Exists p → α} :
⨅ (x : Exists p), f x = ⨅ (i : ι), ⨅ (h : p i), f ⋯
theorem iSup_and {α : Type u_1} [CompleteLattice α] {p q : Prop} {s : p ∧ q → α} :
iSup s = ⨆ (h₁ : p), ⨆ (h₂ : q), s ⋯
theorem iInf_and {α : Type u_1} [CompleteLattice α] {p q : Prop} {s : p ∧ q → α} :
iInf s = ⨅ (h₁ : p), ⨅ (h₂ : q), s ⋯
theorem iSup_and' {α : Type u_1} [CompleteLattice α] {p q : Prop} {s : p → q → α} :
⨆ (h₁ : p), ⨆ (h₂ : q), s h₁ h₂ = ⨆ (h : p ∧ q), s ⋯ ⋯

The symmetric case of iSup_and, useful for rewriting into a supremum over a conjunction

theorem iInf_and' {α : Type u_1} [CompleteLattice α] {p q : Prop} {s : p → q → α} :
⨅ (h₁ : p), ⨅ (h₂ : q), s h₁ h₂ = ⨅ (h : p ∧ q), s ⋯ ⋯

The symmetric case of iInf_and, useful for rewriting into an infimum over a conjunction.

theorem iSup_or {α : Type u_1} [CompleteLattice α] {p q : Prop} {s : p ∨ q → α} :
⨆ (x : p ∨ q), s x = (⨆ (i : p), s ⋯) ⊔ ⨆ (j : q), s ⋯
theorem iInf_or {α : Type u_1} [CompleteLattice α] {p q : Prop} {s : p ∨ q → α} :
⨅ (x : p ∨ q), s x = (⨅ (i : p), s ⋯) ⊓ ⨅ (j : q), s ⋯
theorem iSup_dite {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] (p : ι → Prop) [DecidablePred p] (f : (i : ι) → p i → α) (g : (i : ι) → ¬p i → α) :
(⨆ (i : ι), if h : p i then f i h else g i h) = (⨆ (i : ι), ⨆ (h : p i), f i h) ⊔ ⨆ (i : ι), ⨆ (h : ¬p i), g i h
theorem iInf_dite {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] (p : ι → Prop) [DecidablePred p] (f : (i : ι) → p i → α) (g : (i : ι) → ¬p i → α) :
(⨅ (i : ι), if h : p i then f i h else g i h) = (⨅ (i : ι), ⨅ (h : p i), f i h) ⊓ ⨅ (i : ι), ⨅ (h : ¬p i), g i h
theorem iSup_ite {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] (p : ι → Prop) [DecidablePred p] (f g : ι → α) :
(⨆ (i : ι), if p i then f i else g i) = (⨆ (i : ι), ⨆ (_ : p i), f i) ⊔ ⨆ (i : ι), ⨆ (_ : ¬p i), g i
theorem iInf_ite {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] (p : ι → Prop) [DecidablePred p] (f g : ι → α) :
(⨅ (i : ι), if p i then f i else g i) = (⨅ (i : ι), ⨅ (_ : p i), f i) ⊓ ⨅ (i : ι), ⨅ (_ : ¬p i), g i
theorem iSup_range {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [CompleteLattice α] {g : β → α} {f : ι → β} :
⨆ b ∈ Set.range f, g b = ⨆ (i : ι), g (f i)
theorem iInf_range {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [CompleteLattice α] {g : β → α} {f : ι → β} :
⨅ b ∈ Set.range f, g b = ⨅ (i : ι), g (f i)
theorem sSup_image {α : Type u_1} {β : Type u_2} [CompleteLattice α] {s : Set β} {f : β → α} :
sSup (f '' s) = ⨆ a ∈ s, f a
theorem sInf_image {α : Type u_1} {β : Type u_2} [CompleteLattice α] {s : Set β} {f : β → α} :
sInf (f '' s) = ⨅ a ∈ s, f a
theorem OrderIso.map_sSup_eq_sSup_symm_preimage {α : Type u_1} {β : Type u_2} [CompleteLattice α] [CompleteLattice β] (f : α ≃o β) (s : Set α) :
f (sSup s) = sSup (⇑f.symm ⁻¹' s)
theorem OrderIso.map_sInf_eq_sInf_symm_preimage {α : Type u_1} {β : Type u_2} [CompleteLattice α] [CompleteLattice β] (f : α ≃o β) (s : Set α) :
f (sInf s) = sInf (⇑f.symm ⁻¹' s)
theorem iSup_emptyset {α : Type u_1} {β : Type u_2} [CompleteLattice α] {f : β → α} :
⨆ x ∈ ∅, f x = ⊥
theorem iInf_emptyset {α : Type u_1} {β : Type u_2} [CompleteLattice α] {f : β → α} :
⨅ x ∈ ∅, f x = ⊤
theorem iSup_univ {α : Type u_1} {β : Type u_2} [CompleteLattice α] {f : β → α} :
⨆ x ∈ Set.univ, f x = ⨆ (x : β), f x
theorem iInf_univ {α : Type u_1} {β : Type u_2} [CompleteLattice α] {f : β → α} :
⨅ x ∈ Set.univ, f x = ⨅ (x : β), f x
theorem iSup_union {α : Type u_1} {β : Type u_2} [CompleteLattice α] {f : β → α} {s t : Set β} :
⨆ x ∈ s ∪ t, f x = (⨆ x ∈ s, f x) ⊔ ⨆ x ∈ t, f x
theorem iInf_union {α : Type u_1} {β : Type u_2} [CompleteLattice α] {f : β → α} {s t : Set β} :
⨅ x ∈ s ∪ t, f x = (⨅ x ∈ s, f x) ⊓ ⨅ x ∈ t, f x
theorem iSup_split {α : Type u_1} {β : Type u_2} [CompleteLattice α] (f : β → α) (p : β → Prop) :
⨆ (i : β), f i = (⨆ (i : β), ⨆ (_ : p i), f i) ⊔ ⨆ (i : β), ⨆ (_ : ¬p i), f i
theorem iInf_split {α : Type u_1} {β : Type u_2} [CompleteLattice α] (f : β → α) (p : β → Prop) :
⨅ (i : β), f i = (⨅ (i : β), ⨅ (_ : p i), f i) ⊓ ⨅ (i : β), ⨅ (_ : ¬p i), f i
theorem iSup_split_single {α : Type u_1} {β : Type u_2} [CompleteLattice α] (f : β → α) (i₀ : β) :
⨆ (i : β), f i = f i₀ ⊔ ⨆ (i : β), ⨆ (_ : i ≠ i₀), f i
theorem iInf_split_single {α : Type u_1} {β : Type u_2} [CompleteLattice α] (f : β → α) (i₀ : β) :
⨅ (i : β), f i = f i₀ ⊓ ⨅ (i : β), ⨅ (_ : i ≠ i₀), f i
theorem iSup_le_iSup_of_subset {α : Type u_1} {β : Type u_2} [CompleteLattice α] {f : β → α} {s t : Set β} :
s ⊆ t → ⨆ x ∈ s, f x ≤ ⨆ x ∈ t, f x
theorem iInf_le_iInf_of_subset {α : Type u_1} {β : Type u_2} [CompleteLattice α] {f : β → α} {s t : Set β} :
s ⊆ t → ⨅ x ∈ t, f x ≤ ⨅ x ∈ s, f x
theorem iSup_insert {α : Type u_1} {β : Type u_2} [CompleteLattice α] {f : β → α} {s : Set β} {b : β} :
⨆ x ∈ insert b s, f x = f b ⊔ ⨆ x ∈ s, f x
theorem iInf_insert {α : Type u_1} {β : Type u_2} [CompleteLattice α] {f : β → α} {s : Set β} {b : β} :
⨅ x ∈ insert b s, f x = f b ⊓ ⨅ x ∈ s, f x
theorem iSup_singleton {α : Type u_1} {β : Type u_2} [CompleteLattice α] {f : β → α} {b : β} :
⨆ x ∈ {b}, f x = f b
theorem iInf_singleton {α : Type u_1} {β : Type u_2} [CompleteLattice α] {f : β → α} {b : β} :
⨅ x ∈ {b}, f x = f b
theorem iSup_pair {α : Type u_1} {β : Type u_2} [CompleteLattice α] {f : β → α} {a b : β} :
⨆ x ∈ {a, b}, f x = f a ⊔ f b
theorem iInf_pair {α : Type u_1} {β : Type u_2} [CompleteLattice α] {f : β → α} {a b : β} :
⨅ x ∈ {a, b}, f x = f a ⊓ f b
theorem iSup_image {α : Type u_1} {β : Type u_2} [CompleteLattice α] {γ : Type u_8} {f : β → γ} {g : γ → α} {t : Set β} :
⨆ c ∈ f '' t, g c = ⨆ b ∈ t, g (f b)
theorem iInf_image {α : Type u_1} {β : Type u_2} [CompleteLattice α] {γ : Type u_8} {f : β → γ} {g : γ → α} {t : Set β} :
⨅ c ∈ f '' t, g c = ⨅ b ∈ t, g (f b)
theorem iSup_extend_bot {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [CompleteLattice α] {e : ι → β} (he : Function.Injective e) (f : ι → α) :
⨆ (j : β), Function.extend e f ⊥ j = ⨆ (i : ι), f i
theorem iInf_extend_top {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [CompleteLattice α] {e : ι → β} (he : Function.Injective e) (f : ι → α) :
⨅ (j : β), Function.extend e f ⊤ j = ⨅ (i : ι), f i
theorem Set.BijOn.iSup_comp {α : Type u_1} {β : Type u_2} {γ : Type u_3} [CompleteLattice α] {s : Set β} {t : Set γ} {f : β → γ} (g : γ → α) (hf : BijOn f s t) :
⨆ x ∈ s, g (f x) = ⨆ y ∈ t, g y
theorem Set.BijOn.iInf_comp {α : Type u_1} {β : Type u_2} {γ : Type u_3} [CompleteLattice α] {s : Set β} {t : Set γ} {f : β → γ} (g : γ → α) (hf : BijOn f s t) :
⨅ x ∈ s, g (f x) = ⨅ y ∈ t, g y
theorem Set.BijOn.iSup_congr {α : Type u_1} {β : Type u_2} {γ : Type u_3} [CompleteLattice α] {s : Set β} {t : Set γ} (f : β → α) (g : γ → α) {h : β → γ} (h1 : BijOn h s t) (h2 : ∀ (x : β), g (h x) = f x) :
⨆ x ∈ s, f x = ⨆ y ∈ t, g y
theorem Set.BijOn.iInf_congr {α : Type u_1} {β : Type u_2} {γ : Type u_3} [CompleteLattice α] {s : Set β} {t : Set γ} (f : β → α) (g : γ → α) {h : β → γ} (h1 : BijOn h s t) (h2 : ∀ (x : β), g (h x) = f x) :
⨅ x ∈ s, f x = ⨅ y ∈ t, g y
theorem biSup_le_eq_sup {α : Type u_1} [CompleteLattice α] {ι : Type u_8} [PartialOrder ι] (f : ι → α) (i : ι) :
⨆ (j : ι), ⨆ (_ : j ≤ i), f j = (⨆ (j : ι), ⨆ (_ : j < i), f j) ⊔ f i
theorem biInf_le_eq_inf {α : Type u_1} [CompleteLattice α] {ι : Type u_8} [PartialOrder ι] (f : ι → α) (i : ι) :
⨅ (j : ι), ⨅ (_ : j ≤ i), f j = (⨅ (j : ι), ⨅ (_ : j < i), f j) ⊓ f i
theorem biSup_ge_eq_sup {α : Type u_1} [CompleteLattice α] {ι : Type u_8} [PartialOrder ι] (f : ι → α) (i : ι) :
⨆ (j : ι), ⨆ (_ : j ≥ i), f j = f i ⊔ ⨆ (j : ι), ⨆ (_ : j > i), f j
theorem biInf_ge_eq_inf {α : Type u_1} [CompleteLattice α] {ι : Type u_8} [PartialOrder ι] (f : ι → α) (i : ι) :
⨅ (j : ι), ⨅ (_ : j ≥ i), f j = f i ⊓ ⨅ (j : ι), ⨅ (_ : j > i), f j

iSup and iInf under Type #

theorem iSup_of_empty' {α : Type u_8} {ι : Sort u_9} [SupSet α] [IsEmpty ι] (f : ι → α) :
theorem iInf_of_isEmpty {α : Type u_8} {ι : Sort u_9} [InfSet α] [IsEmpty ι] (f : ι → α) :
theorem iSup_of_empty {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] [IsEmpty ι] (f : ι → α) :
theorem iInf_of_empty {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] [IsEmpty ι] (f : ι → α) :
theorem isLUB_biSup {α : Type u_1} {β : Type u_2} [CompleteLattice α] {s : Set β} {f : β → α} :
IsLUB (f '' s) (⨆ x ∈ s, f x)
theorem isGLB_biInf {α : Type u_1} {β : Type u_2} [CompleteLattice α] {s : Set β} {f : β → α} :
IsGLB (f '' s) (⨅ x ∈ s, f x)
theorem iSup_sigma {α : Type u_1} {β : Type u_2} [CompleteLattice α] {p : β → Type u_8} {f : Sigma p → α} :
⨆ (x : Sigma p), f x = ⨆ (i : β), ⨆ (j : p i), f ⟨i, j⟩
theorem iInf_sigma {α : Type u_1} {β : Type u_2} [CompleteLattice α] {p : β → Type u_8} {f : Sigma p → α} :
⨅ (x : Sigma p), f x = ⨅ (i : β), ⨅ (j : p i), f ⟨i, j⟩
theorem iSup_sigma' {α : Type u_1} {β : Type u_2} [CompleteLattice α] {κ : β → Type u_8} (f : (i : β) → κ i → α) :
⨆ (i : β), ⨆ (j : κ i), f i j = ⨆ (x : (i : β) × κ i), f x.fst x.snd
theorem iInf_sigma' {α : Type u_1} {β : Type u_2} [CompleteLattice α] {κ : β → Type u_8} (f : (i : β) → κ i → α) :
⨅ (i : β), ⨅ (j : κ i), f i j = ⨅ (x : (i : β) × κ i), f x.fst x.snd
theorem iSup_psigma {α : Type u_1} [CompleteLattice α] {ι : Sort u_8} {κ : ι → Sort u_9} (f : (i : ι) ×' κ i → α) :
⨆ (ij : (i : ι) ×' κ i), f ij = ⨆ (i : ι), ⨆ (j : κ i), f ⟨i, j⟩
theorem iInf_psigma {α : Type u_1} [CompleteLattice α] {ι : Sort u_8} {κ : ι → Sort u_9} (f : (i : ι) ×' κ i → α) :
⨅ (ij : (i : ι) ×' κ i), f ij = ⨅ (i : ι), ⨅ (j : κ i), f ⟨i, j⟩
theorem iSup_psigma' {α : Type u_1} [CompleteLattice α] {ι : Sort u_8} {κ : ι → Sort u_9} (f : (i : ι) → κ i → α) :
⨆ (i : ι), ⨆ (j : κ i), f i j = ⨆ (ij : (i : ι) ×' κ i), f ij.fst ij.snd
theorem iInf_psigma' {α : Type u_1} [CompleteLattice α] {ι : Sort u_8} {κ : ι → Sort u_9} (f : (i : ι) → κ i → α) :
⨅ (i : ι), ⨅ (j : κ i), f i j = ⨅ (ij : (i : ι) ×' κ i), f ij.fst ij.snd
theorem iSup_prod {α : Type u_1} {β : Type u_2} {γ : Type u_3} [CompleteLattice α] {f : β × γ → α} :
⨆ (x : β × γ), f x = ⨆ (i : β), ⨆ (j : γ), f (i, j)
theorem iInf_prod {α : Type u_1} {β : Type u_2} {γ : Type u_3} [CompleteLattice α] {f : β × γ → α} :
⨅ (x : β × γ), f x = ⨅ (i : β), ⨅ (j : γ), f (i, j)
theorem iSup_prod' {α : Type u_1} {β : Type u_2} {γ : Type u_3} [CompleteLattice α] (f : β → γ → α) :
⨆ (i : β), ⨆ (j : γ), f i j = ⨆ (x : β × γ), f x.1 x.2
theorem iInf_prod' {α : Type u_1} {β : Type u_2} {γ : Type u_3} [CompleteLattice α] (f : β → γ → α) :
⨅ (i : β), ⨅ (j : γ), f i j = ⨅ (x : β × γ), f x.1 x.2
theorem biSup_prod {α : Type u_1} {β : Type u_2} {γ : Type u_3} [CompleteLattice α] {f : β × γ → α} {s : Set β} {t : Set γ} :
⨆ x ∈ s ×ˢ t, f x = ⨆ a ∈ s, ⨆ b ∈ t, f (a, b)
theorem biInf_prod {α : Type u_1} {β : Type u_2} {γ : Type u_3} [CompleteLattice α] {f : β × γ → α} {s : Set β} {t : Set γ} :
⨅ x ∈ s ×ˢ t, f x = ⨅ a ∈ s, ⨅ b ∈ t, f (a, b)
theorem biSup_prod' {α : Type u_1} {β : Type u_2} {γ : Type u_3} [CompleteLattice α] {f : β → γ → α} {s : Set β} {t : Set γ} :
⨆ x ∈ s ×ˢ t, f x.1 x.2 = ⨆ a ∈ s, ⨆ b ∈ t, f a b
theorem biInf_prod' {α : Type u_1} {β : Type u_2} {γ : Type u_3} [CompleteLattice α] {f : β → γ → α} {s : Set β} {t : Set γ} :
⨅ x ∈ s ×ˢ t, f x.1 x.2 = ⨅ a ∈ s, ⨅ b ∈ t, f a b
theorem iSup_image2 {α : Type u_1} {β : Type u_2} [CompleteLattice α] {γ : Type u_8} {δ : Type u_9} (f : β → γ → δ) (s : Set β) (t : Set γ) (g : δ → α) :
⨆ d ∈ Set.image2 f s t, g d = ⨆ b ∈ s, ⨆ c ∈ t, g (f b c)
theorem iInf_image2 {α : Type u_1} {β : Type u_2} [CompleteLattice α] {γ : Type u_8} {δ : Type u_9} (f : β → γ → δ) (s : Set β) (t : Set γ) (g : δ → α) :
⨅ d ∈ Set.image2 f s t, g d = ⨅ b ∈ s, ⨅ c ∈ t, g (f b c)
theorem iSup_sum {α : Type u_1} {β : Type u_2} {γ : Type u_3} [CompleteLattice α] {f : β ⊕ γ → α} :
⨆ (x : β ⊕ γ), f x = (⨆ (i : β), f (Sum.inl i)) ⊔ ⨆ (j : γ), f (Sum.inr j)
theorem iInf_sum {α : Type u_1} {β : Type u_2} {γ : Type u_3} [CompleteLattice α] {f : β ⊕ γ → α} :
⨅ (x : β ⊕ γ), f x = (⨅ (i : β), f (Sum.inl i)) ⊓ ⨅ (j : γ), f (Sum.inr j)
theorem iSup_option {α : Type u_1} {β : Type u_2} [CompleteLattice α] (f : Option β → α) :
⨆ (o : Option β), f o = f none ⊔ ⨆ (b : β), f (some b)
theorem iInf_option {α : Type u_1} {β : Type u_2} [CompleteLattice α] (f : Option β → α) :
⨅ (o : Option β), f o = f none ⊓ ⨅ (b : β), f (some b)
theorem iSup_option_elim {α : Type u_1} {β : Type u_2} [CompleteLattice α] (a : α) (f : β → α) :
⨆ (o : Option β), o.elim a f = a ⊔ ⨆ (b : β), f b

A version of iSup_option useful for rewriting right-to-left.

theorem iInf_option_elim {α : Type u_1} {β : Type u_2} [CompleteLattice α] (a : α) (f : β → α) :
⨅ (o : Option β), o.elim a f = a ⊓ ⨅ (b : β), f b

A version of iInf_option useful for rewriting right-to-left.

@[simp]
theorem iSup_ne_bot_subtype {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] (f : ι → α) :
⨆ (i : { i : ι // f i ≠ ⊥ }), f ↑i = ⨆ (i : ι), f i

When taking the supremum of f : ι → α, the elements of ι on which f gives ⊥ can be dropped, without changing the result.

theorem iInf_ne_top_subtype {α : Type u_1} {ι : Sort u_4} [CompleteLattice α] (f : ι → α) :
⨅ (i : { i : ι // f i ≠ ⊤ }), f ↑i = ⨅ (i : ι), f i

When taking the infimum of f : ι → α, the elements of ι on which f gives ⊤ can be dropped, without changing the result.

theorem sSup_image2 {α : Type u_1} {β : Type u_2} {γ : Type u_3} [CompleteLattice α] {f : β → γ → α} {s : Set β} {t : Set γ} :
sSup (Set.image2 f s t) = ⨆ a ∈ s, ⨆ b ∈ t, f a b
theorem sInf_image2 {α : Type u_1} {β : Type u_2} {γ : Type u_3} [CompleteLattice α] {f : β → γ → α} {s : Set β} {t : Set γ} :
sInf (Set.image2 f s t) = ⨅ a ∈ s, ⨅ b ∈ t, f a b
theorem iSup₂_eq_top {α : Type u_1} {ι : Sort u_4} {κ : ι → Sort u_6} [CompleteLinearOrder α] (f : (i : ι) → κ i → α) :
⨆ (i : ι), ⨆ (j : κ i), f i j = ⊤ ↔ ∀ b < ⊤, ∃ (i : ι) (j : κ i), b < f i j
theorem iInf₂_eq_bot {α : Type u_1} {ι : Sort u_4} {κ : ι → Sort u_6} [CompleteLinearOrder α] (f : (i : ι) → κ i → α) :
⨅ (i : ι), ⨅ (j : κ i), f i j = ⊥ ↔ ∀ (b : α), ⊥ < b → ∃ (i : ι) (j : κ i), f i j < b

Instances #

@[instance_reducible]
Equations
  • One or more equations did not get rendered due to their size.
@[instance_reducible]
Equations
  • One or more equations did not get rendered due to their size.
@[simp]
theorem sSup_Prop_eq {s : Set Prop} :
sSup s = ∃ p ∈ s, p
@[simp]
theorem sInf_Prop_eq {s : Set Prop} :
sInf s = ∀ p ∈ s, p
@[simp]
theorem iSup_Prop_eq {ι : Sort u_4} {p : ι → Prop} :
⨆ (i : ι), p i = ∃ (i : ι), p i
@[simp]
theorem iInf_Prop_eq {ι : Sort u_4} {p : ι → Prop} :
⨅ (i : ι), p i = ∀ (i : ι), p i
@[instance_reducible]
instance Pi.supSet {α : Type u_8} {β : α → Type u_9} [(i : α) → SupSet (β i)] :
SupSet ((i : α) → β i)
Equations
  • Pi.supSet = { sSup := fun (s : Set ((i : α) → β i)) (i : α) => ⨆ (f : ↑s), ↑f i }
@[instance_reducible]
instance Pi.infSet {α : Type u_8} {β : α → Type u_9} [(i : α) → InfSet (β i)] :
InfSet ((i : α) → β i)
Equations
  • Pi.infSet = { sInf := fun (s : Set ((i : α) → β i)) (i : α) => ⨅ (f : ↑s), ↑f i }
@[simp]
theorem sSup_apply {α : Type u_8} {β : α → Type u_9} [(i : α) → SupSet (β i)] {s : Set ((a : α) → β a)} {a : α} :
sSup s a = ⨆ (f : ↑s), ↑f a
@[simp]
theorem sInf_apply {α : Type u_8} {β : α → Type u_9} [(i : α) → InfSet (β i)] {s : Set ((a : α) → β a)} {a : α} :
sInf s a = ⨅ (f : ↑s), ↑f a
theorem sSup_apply_eq_sSup_image {α : Type u_8} {β : α → Type u_9} [(i : α) → SupSet (β i)] {s : Set ((a : α) → β a)} {a : α} :
theorem sInf_apply_eq_sInf_image {α : Type u_8} {β : α → Type u_9} [(i : α) → InfSet (β i)] {s : Set ((a : α) → β a)} {a : α} :
@[instance_reducible]
instance Pi.instCompleteLattice {α : Type u_8} {β : α → Type u_9} [(i : α) → CompleteLattice (β i)] :
CompleteLattice ((i : α) → β i)
Equations
@[simp]
theorem iSup_apply {α : Type u_8} {β : α → Type u_9} {ι : Sort u_10} [(i : α) → SupSet (β i)] {f : ι → (a : α) → β a} {a : α} :
(⨆ (i : ι), f i) a = ⨆ (i : ι), f i a
@[simp]
theorem iInf_apply {α : Type u_8} {β : α → Type u_9} {ι : Sort u_10} [(i : α) → InfSet (β i)] {f : ι → (a : α) → β a} {a : α} :
(⨅ (i : ι), f i) a = ⨅ (i : ι), f i a
theorem unary_relation_sSup_iff {α : Type u_8} (s : Set (α → Prop)) {a : α} :
sSup s a ↔ ∃ r ∈ s, r a
theorem unary_relation_sInf_iff {α : Type u_8} (s : Set (α → Prop)) {a : α} :
sInf s a ↔ ∀ r ∈ s, r a
theorem binary_relation_sSup_iff {α : Type u_8} {β : Type u_9} (s : Set (α → β → Prop)) {a : α} {b : β} :
sSup s a b ↔ ∃ r ∈ s, r a b
theorem binary_relation_sInf_iff {α : Type u_8} {β : Type u_9} (s : Set (α → β → Prop)) {a : α} {b : β} :
sInf s a b ↔ ∀ r ∈ s, r a b
theorem Monotone.sSup {α : Type u_1} {β : Type u_2} [Preorder α] [CompleteLattice β] {s : Set (α → β)} (hs : ∀ f ∈ s, Monotone f) :
theorem Monotone.sInf {α : Type u_1} {β : Type u_2} [Preorder α] [CompleteLattice β] {s : Set (α → β)} (hs : ∀ f ∈ s, Monotone f) :
theorem Antitone.sSup {α : Type u_1} {β : Type u_2} [Preorder α] [CompleteLattice β] {s : Set (α → β)} (hs : ∀ f ∈ s, Antitone f) :
theorem Antitone.sInf {α : Type u_1} {β : Type u_2} [Preorder α] [CompleteLattice β] {s : Set (α → β)} (hs : ∀ f ∈ s, Antitone f) :
theorem Monotone.iSup {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [Preorder α] [CompleteLattice β] {f : ι → α → β} (hf : ∀ (i : ι), Monotone (f i)) :
Monotone (⨆ (i : ι), f i)
theorem Monotone.iInf {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [Preorder α] [CompleteLattice β] {f : ι → α → β} (hf : ∀ (i : ι), Monotone (f i)) :
Monotone (⨅ (i : ι), f i)
theorem Antitone.iSup {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [Preorder α] [CompleteLattice β] {f : ι → α → β} (hf : ∀ (i : ι), Antitone (f i)) :
Antitone (⨆ (i : ι), f i)
theorem Antitone.iInf {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [Preorder α] [CompleteLattice β] {f : ι → α → β} (hf : ∀ (i : ι), Antitone (f i)) :
Antitone (⨅ (i : ι), f i)
@[instance_reducible]
instance Prod.supSet (α : Type u_1) (β : Type u_2) [SupSet α] [SupSet β] :
SupSet (α × β)
Equations
@[instance_reducible]
instance Prod.infSet (α : Type u_1) (β : Type u_2) [InfSet α] [InfSet β] :
InfSet (α × β)
Equations
theorem Prod.fst_sSup {α : Type u_1} {β : Type u_2} [SupSet α] [SupSet β] (s : Set (α × β)) :
(sSup s).1 = sSup (fst '' s)
theorem Prod.fst_sInf {α : Type u_1} {β : Type u_2} [InfSet α] [InfSet β] (s : Set (α × β)) :
(sInf s).1 = sInf (fst '' s)
theorem Prod.snd_sSup {α : Type u_1} {β : Type u_2} [SupSet α] [SupSet β] (s : Set (α × β)) :
(sSup s).2 = sSup (snd '' s)
theorem Prod.snd_sInf {α : Type u_1} {β : Type u_2} [InfSet α] [InfSet β] (s : Set (α × β)) :
(sInf s).2 = sInf (snd '' s)
theorem Prod.swap_sSup {α : Type u_1} {β : Type u_2} [SupSet α] [SupSet β] (s : Set (α × β)) :
(sSup s).swap = sSup (swap '' s)
theorem Prod.swap_sInf {α : Type u_1} {β : Type u_2} [InfSet α] [InfSet β] (s : Set (α × β)) :
(sInf s).swap = sInf (swap '' s)
theorem Prod.fst_iSup {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [SupSet α] [SupSet β] (f : ι → α × β) :
(iSup f).1 = ⨆ (i : ι), (f i).1
theorem Prod.fst_iInf {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [InfSet α] [InfSet β] (f : ι → α × β) :
(iInf f).1 = ⨅ (i : ι), (f i).1
theorem Prod.snd_iSup {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [SupSet α] [SupSet β] (f : ι → α × β) :
(iSup f).2 = ⨆ (i : ι), (f i).2
theorem Prod.snd_iInf {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [InfSet α] [InfSet β] (f : ι → α × β) :
(iInf f).2 = ⨅ (i : ι), (f i).2
theorem Prod.swap_iSup {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [SupSet α] [SupSet β] (f : ι → α × β) :
(iSup f).swap = ⨆ (i : ι), (f i).swap
theorem Prod.swap_iInf {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [InfSet α] [InfSet β] (f : ι → α × β) :
(iInf f).swap = ⨅ (i : ι), (f i).swap
theorem Prod.iSup_mk {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [SupSet α] [SupSet β] (f : ι → α) (g : ι → β) :
⨆ (i : ι), (f i, g i) = (⨆ (i : ι), f i, ⨆ (i : ι), g i)
theorem Prod.iInf_mk {α : Type u_1} {β : Type u_2} {ι : Sort u_4} [InfSet α] [InfSet β] (f : ι → α) (g : ι → β) :
⨅ (i : ι), (f i, g i) = (⨅ (i : ι), f i, ⨅ (i : ι), g i)
@[instance_reducible]
instance Prod.instCompleteLattice {α : Type u_1} {β : Type u_2} [CompleteLattice α] [CompleteLattice β] :
Equations
  • One or more equations did not get rendered due to their size.
theorem sSup_prod {α : Type u_1} {β : Type u_2} [SupSet α] [SupSet β] {s : Set α} {t : Set β} (hs : s.Nonempty) (ht : t.Nonempty) :
sSup (s ×ˢ t) = (sSup s, sSup t)
theorem sInf_prod {α : Type u_1} {β : Type u_2} [InfSet α] [InfSet β] {s : Set α} {t : Set β} (hs : s.Nonempty) (ht : t.Nonempty) :
sInf (s ×ˢ t) = (sInf s, sInf t)
@[reducible, inline]
abbrev Function.Injective.completeLattice {α : Type u_1} {β : Type u_2} [Max α] [Min α] [LE α] [LT α] [SupSet α] [InfSet α] [Top α] [Bot α] [CompleteLattice β] (f : α → β) (hf : Injective f) (le : ∀ {x y : α}, f x ≤ f y ↔ x ≤ y) (lt : ∀ {x y : α}, f x < f y ↔ x < y) (map_sup : ∀ (a b : α), f (a ⊔ b) = f a ⊔ f b) (map_inf : ∀ (a b : α), f (a ⊓ b) = f a ⊓ f b) (map_sSup : ∀ (s : Set α), f (sSup s) = ⨆ a ∈ s, f a) (map_sInf : ∀ (s : Set α), f (sInf s) = ⨅ a ∈ s, f a) (map_top : f ⊤ = ⊤) (map_bot : f ⊥ = ⊥) :

Pullback a CompleteLattice along an injection.

Equations
  • One or more equations did not get rendered due to their size.
Instances For
    @[reducible, inline]
    abbrev Equiv.completeLattice {α : Type u_1} {β : Type u_2} (e : α ≃ β) [CompleteLattice β] :

    Transfer CompleteLattice across an Equiv.

    Equations
    Instances For