Loogle!
Result
Found 237 declarations mentioning Set.image2. Of these, only the first 200 are shown.
- Set.image2 📋 Mathlib.Data.Set.Operations
{α : Type u} {β : Type v} {γ : Type w} (f : α → β → γ) (s : Set α) (t : Set β) : Set γ - Set.seq_eq_image2 📋 Mathlib.Data.Set.Operations
{α : Type u} {β : Type v} (s : Set (α → β)) (t : Set α) : s.seq t = Set.image2 (fun f a => f a) s t - Set.mem_image2_of_mem 📋 Mathlib.Data.Set.Operations
{α : Type u} {β : Type v} {γ : Type w} {f : α → β → γ} {s : Set α} {t : Set β} {a : α} {b : β} (ha : a ∈ s) (hb : b ∈ t) : f a b ∈ Set.image2 f s t - Set.mem_image2 📋 Mathlib.Data.Set.Operations
{α : Type u} {β : Type v} {γ : Type w} {f : α → β → γ} {s : Set α} {t : Set β} {c : γ} : c ∈ Set.image2 f s t ↔ ∃ a ∈ s, ∃ b ∈ t, f a b = c - Set.image2_left 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {s : Set α} {t : Set β} (h : t.Nonempty) : Set.image2 (fun x x_1 => x) s t = s - Set.image2_right 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {s : Set α} {t : Set β} (h : s.Nonempty) : Set.image2 (fun x y => y) s t = t - Set.Nonempty.of_image2_left 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t : Set β} (h : (Set.image2 f s t).Nonempty) : s.Nonempty - Set.Nonempty.of_image2_right 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t : Set β} (h : (Set.image2 f s t).Nonempty) : t.Nonempty - Set.Nonempty.image2 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t : Set β} : s.Nonempty → t.Nonempty → (Set.image2 f s t).Nonempty - Set.Subsingleton.image2 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {s : Set α} {t : Set β} (hs : s.Subsingleton) (ht : t.Subsingleton) (f : α → β → γ) : (Set.image2 f s t).Subsingleton - Set.image2_empty_left 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {t : Set β} : Set.image2 f ∅ t = ∅ - Set.image2_empty_right 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} : Set.image2 f s ∅ = ∅ - Set.image2_nonempty_iff 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t : Set β} : (Set.image2 f s t).Nonempty ↔ s.Nonempty ∧ t.Nonempty - Set.image2_singleton_left 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {t : Set β} {a : α} : Set.image2 f {a} t = f a '' t - Set.image2_swap 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} (f : α → β → γ) (s : Set α) (t : Set β) : Set.image2 f s t = Set.image2 (fun a b => f b a) t s - Set.image2_left_identity 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {f : α → β → β} {a : α} (h : ∀ (b : β), f a b = b) (t : Set β) : Set.image2 f {a} t = t - Set.image2_right_identity 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {f : α → β → α} {b : β} (h : ∀ (a : α), f a b = a) (s : Set α) : Set.image2 f s {b} = s - Set.image2_singleton_right 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {b : β} : Set.image2 f s {b} = (fun a => f a b) '' s - Set.image2_mk_eq_prod 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {s : Set α} {t : Set β} : Set.image2 Prod.mk s t = s ×ˢ t - Set.image_subset_image2_right 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t : Set β} {a : α} (ha : a ∈ s) : f a '' t ⊆ Set.image2 f s t - Set.image2_subset_left 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t t' : Set β} (ht : t ⊆ t') : Set.image2 f s t ⊆ Set.image2 f s t' - Set.image2_subset_right 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s s' : Set α} {t : Set β} (hs : s ⊆ s') : Set.image2 f s t ⊆ Set.image2 f s' t - Set.image2_image_left 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {δ : Type u_7} {s : Set α} {t : Set β} (f : γ → β → δ) (g : α → γ) : Set.image2 f (g '' s) t = Set.image2 (fun a b => f (g a) b) s t - Set.image2_image_right 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {δ : Type u_7} {s : Set α} {t : Set β} (f : α → γ → δ) (g : β → γ) : Set.image2 f s (g '' t) = Set.image2 (fun a b => f a (g b)) s t - Set.image2_singleton 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {a : α} {b : β} : Set.image2 f {a} {b} = {f a b} - Set.image_image2 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {δ : Type u_7} {s : Set α} {t : Set β} (f : α → β → γ) (g : γ → δ) : g '' Set.image2 f s t = Set.image2 (fun a b => g (f a b)) s t - Set.image_subset_image2_left 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t : Set β} {b : β} (hb : b ∈ t) : (fun a => f a b) '' s ⊆ Set.image2 f s t - Set.image2_comm 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t : Set β} {g : β → α → γ} (h_comm : ∀ (a : α) (b : β), f a b = g b a) : Set.image2 f s t = Set.image2 g t s - Set.image2_congr' 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f f' : α → β → γ} {s : Set α} {t : Set β} (h : ∀ (a : α) (b : β), f a b = f' a b) : Set.image2 f s t = Set.image2 f' s t - Set.image_uncurry_prod 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} (f : α → β → γ) (s : Set α) (t : Set β) : Function.uncurry f '' s ×ˢ t = Set.image2 f s t - Set.image2_eq_empty_iff 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t : Set β} : Set.image2 f s t = ∅ ↔ s = ∅ ∨ t = ∅ - Set.image2_range 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {α' : Type u_2} {β : Type u_3} {β' : Type u_4} {γ : Type u_5} (f : α' → β' → γ) (g : α → α') (h : β → β') : Set.image2 f (Set.range g) (Set.range h) = Set.range fun x => f (g x.1) (h x.2) - Set.image2_subset 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s s' : Set α} {t t' : Set β} (hs : s ⊆ s') (ht : t ⊆ t') : Set.image2 f s t ⊆ Set.image2 f s' t' - Set.image2_union_left 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s s' : Set α} {t : Set β} : Set.image2 f (s ∪ s') t = Set.image2 f s t ∪ Set.image2 f s' t - Set.image2_union_right 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t t' : Set β} : Set.image2 f s (t ∪ t') = Set.image2 f s t ∪ Set.image2 f s t' - Set.image2_curry 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} (f : α × β → γ) (s : Set α) (t : Set β) : Set.image2 (fun a b => f (a, b)) s t = f '' s ×ˢ t - Set.image2_insert_left 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t : Set β} {a : α} : Set.image2 f (insert a s) t = (fun b => f a b) '' t ∪ Set.image2 f s t - Set.image2_insert_right 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t : Set β} {b : β} : Set.image2 f s (insert b t) = (fun a => f a b) '' s ∪ Set.image2 f s t - Set.image2_inter_subset_left 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s s' : Set α} {t : Set β} : Set.image2 f (s ∩ s') t ⊆ Set.image2 f s t ∩ Set.image2 f s' t - Set.image2_inter_subset_right 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t t' : Set β} : Set.image2 f s (t ∩ t') ⊆ Set.image2 f s t ∩ Set.image2 f s t' - Set.image2_subset_iff_left 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t : Set β} {u : Set γ} : Set.image2 f s t ⊆ u ↔ ∀ a ∈ s, (fun b => f a b) '' t ⊆ u - Set.image2_subset_iff_right 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t : Set β} {u : Set γ} : Set.image2 f s t ⊆ u ↔ ∀ b ∈ t, (fun a => f a b) '' s ⊆ u - Set.subset_image2_diff_left 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s s' : Set α} {t : Set β} : Set.image2 f s t \ Set.image2 f s' t ⊆ Set.image2 f (s \ s') t - Set.subset_image2_diff_right 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t t' : Set β} : Set.image2 f s t \ Set.image2 f s t' ⊆ Set.image2 f s (t \ t') - Set.subset_image2_sdiff_left 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s s' : Set α} {t : Set β} : Set.image2 f s t \ Set.image2 f s' t ⊆ Set.image2 f (s \ s') t - Set.subset_image2_sdiff_right 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t t' : Set β} : Set.image2 f s t \ Set.image2 f s t' ⊆ Set.image2 f s (t \ t') - Set.image2_inter_union_subset 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {f : α → α → β} {s t : Set α} (hf : ∀ (a b : α), f a b = f b a) : Set.image2 f (s ∩ t) (s ∪ t) ⊆ Set.image2 f s t - Set.image2_union_inter_subset 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {f : α → α → β} {s t : Set α} (hf : ∀ (a b : α), f a b = f b a) : Set.image2 f (s ∪ t) (s ∩ t) ⊆ Set.image2 f s t - Set.image_prod 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} (f : α → β → γ) {s : Set α} {t : Set β} : (fun x => f x.1 x.2) '' s ×ˢ t = Set.image2 f s t - Set.mem_image2_iff 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t : Set β} {a : α} {b : β} (hf : Function.Injective2 f) : f a b ∈ Set.image2 f s t ↔ a ∈ s ∧ b ∈ t - Set.forall_mem_image2 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t : Set β} {p : γ → Prop} : (∀ z ∈ Set.image2 f s t, p z) ↔ ∀ x ∈ s, ∀ y ∈ t, p (f x y) - Set.image2_inter_left 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s s' : Set α} {t : Set β} (hf : Function.Injective2 f) : Set.image2 f (s ∩ s') t = Set.image2 f s t ∩ Set.image2 f s' t - Set.image2_inter_right 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t t' : Set β} (hf : Function.Injective2 f) : Set.image2 f s (t ∩ t') = Set.image2 f s t ∩ Set.image2 f s t' - Set.image2_subset_iff 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t : Set β} {u : Set γ} : Set.image2 f s t ⊆ u ↔ ∀ x ∈ s, ∀ y ∈ t, f x y ∈ u - Set.image2_congr 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f f' : α → β → γ} {s : Set α} {t : Set β} (h : ∀ a ∈ s, ∀ b ∈ t, f a b = f' a b) : Set.image2 f s t = Set.image2 f' s t - Set.image2_image_left_anticomm 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {α' : Type u_2} {β : Type u_3} {γ : Type u_5} {δ : Type u_7} {s : Set α} {t : Set β} {f : α' → β → γ} {g : α → α'} {f' : β → α → δ} {g' : δ → γ} (h_left_anticomm : ∀ (a : α) (b : β), f (g a) b = g' (f' b a)) : Set.image2 f (g '' s) t = g' '' Set.image2 f' t s - Set.image2_image_left_comm 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {α' : Type u_2} {β : Type u_3} {γ : Type u_5} {δ : Type u_7} {s : Set α} {t : Set β} {f : α' → β → γ} {g : α → α'} {f' : α → β → δ} {g' : δ → γ} (h_left_comm : ∀ (a : α) (b : β), f (g a) b = g' (f' a b)) : Set.image2 f (g '' s) t = g' '' Set.image2 f' s t - Set.image_image2_antidistrib_left 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {β' : Type u_4} {γ : Type u_5} {δ : Type u_7} {f : α → β → γ} {s : Set α} {t : Set β} {g : γ → δ} {f' : β' → α → δ} {g' : β → β'} (h_antidistrib : ∀ (a : α) (b : β), g (f a b) = f' (g' b) a) : g '' Set.image2 f s t = Set.image2 f' (g' '' t) s - Set.image_image2_antidistrib_right 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {α' : Type u_2} {β : Type u_3} {γ : Type u_5} {δ : Type u_7} {f : α → β → γ} {s : Set α} {t : Set β} {g : γ → δ} {f' : β → α' → δ} {g' : α → α'} (h_antidistrib : ∀ (a : α) (b : β), g (f a b) = f' b (g' a)) : g '' Set.image2 f s t = Set.image2 f' t (g' '' s) - Set.image_image2_distrib_left 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {α' : Type u_2} {β : Type u_3} {γ : Type u_5} {δ : Type u_7} {f : α → β → γ} {s : Set α} {t : Set β} {g : γ → δ} {f' : α' → β → δ} {g' : α → α'} (h_distrib : ∀ (a : α) (b : β), g (f a b) = f' (g' a) b) : g '' Set.image2 f s t = Set.image2 f' (g' '' s) t - Set.image_image2_distrib_right 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {β' : Type u_4} {γ : Type u_5} {δ : Type u_7} {f : α → β → γ} {s : Set α} {t : Set β} {g : γ → δ} {f' : α → β' → δ} {g' : β → β'} (h_distrib : ∀ (a : α) (b : β), g (f a b) = f' a (g' b)) : g '' Set.image2 f s t = Set.image2 f' s (g' '' t) - Set.image_image2_right_anticomm 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {β' : Type u_4} {γ : Type u_5} {δ : Type u_7} {s : Set α} {t : Set β} {f : α → β' → γ} {g : β → β'} {f' : β → α → δ} {g' : δ → γ} (h_right_anticomm : ∀ (a : α) (b : β), f a (g b) = g' (f' b a)) : Set.image2 f s (g '' t) = g' '' Set.image2 f' t s - Set.image_image2_right_comm 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {β' : Type u_4} {γ : Type u_5} {δ : Type u_7} {s : Set α} {t : Set β} {f : α → β' → γ} {g : β → β'} {f' : α → β → δ} {g' : δ → γ} (h_right_comm : ∀ (a : α) (b : β), f a (g b) = g' (f' a b)) : Set.image2 f s (g '' t) = g' '' Set.image2 f' s t - Set.image2_inter_union_subset_union 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s s' : Set α} {t t' : Set β} : Set.image2 f (s ∩ s') (t ∪ t') ⊆ Set.image2 f s t ∪ Set.image2 f s' t' - Set.image2_union_inter_subset_union 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s s' : Set α} {t t' : Set β} : Set.image2 f (s ∪ s') (t ∩ t') ⊆ Set.image2 f s t ∪ Set.image2 f s' t' - Set.exists_mem_image2 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : α → β → γ} {s : Set α} {t : Set β} {p : γ → Prop} : (∃ z ∈ Set.image2 f s t, p z) ↔ ∃ x ∈ s, ∃ y ∈ t, p (f x y) - Set.image_image2_antidistrib 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {α' : Type u_2} {β : Type u_3} {β' : Type u_4} {γ : Type u_5} {δ : Type u_7} {f : α → β → γ} {s : Set α} {t : Set β} {g : γ → δ} {f' : β' → α' → δ} {g₁ : β → β'} {g₂ : α → α'} (h_antidistrib : ∀ (a : α) (b : β), g (f a b) = f' (g₁ b) (g₂ a)) : g '' Set.image2 f s t = Set.image2 f' (g₁ '' t) (g₂ '' s) - Set.image_image2_distrib 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {α' : Type u_2} {β : Type u_3} {β' : Type u_4} {γ : Type u_5} {δ : Type u_7} {f : α → β → γ} {s : Set α} {t : Set β} {g : γ → δ} {f' : α' → β' → δ} {g₁ : α → α'} {g₂ : β → β'} (h_distrib : ∀ (a : α) (b : β), g (f a b) = f' (g₁ a) (g₂ b)) : g '' Set.image2 f s t = Set.image2 f' (g₁ '' s) (g₂ '' t) - Set.image2_assoc 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {δ : Type u_7} {ε : Type u_9} {ε' : Type u_10} {s : Set α} {t : Set β} {u : Set γ} {f : δ → γ → ε} {g : α → β → δ} {f' : α → ε' → ε} {g' : β → γ → ε'} (h_assoc : ∀ (a : α) (b : β) (c : γ), f (g a b) c = f' a (g' b c)) : Set.image2 f (Set.image2 g s t) u = Set.image2 f' s (Set.image2 g' t u) - Set.image2_left_comm 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {δ : Type u_7} {δ' : Type u_8} {ε : Type u_9} {s : Set α} {t : Set β} {u : Set γ} {f : α → δ → ε} {g : β → γ → δ} {f' : α → γ → δ'} {g' : β → δ' → ε} (h_left_comm : ∀ (a : α) (b : β) (c : γ), f a (g b c) = g' b (f' a c)) : Set.image2 f s (Set.image2 g t u) = Set.image2 g' t (Set.image2 f' s u) - Set.image2_right_comm 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {δ : Type u_7} {δ' : Type u_8} {ε : Type u_9} {s : Set α} {t : Set β} {u : Set γ} {f : δ → γ → ε} {g : α → β → δ} {f' : α → γ → δ'} {g' : δ' → β → ε} (h_right_comm : ∀ (a : α) (b : β) (c : γ), f (g a b) c = g' (f' a c) b) : Set.image2 f (Set.image2 g s t) u = Set.image2 g' (Set.image2 f' s u) t - Set.image2_distrib_subset_left 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {β' : Type u_4} {γ : Type u_5} {γ' : Type u_6} {δ : Type u_7} {ε : Type u_9} {s : Set α} {t : Set β} {u : Set γ} {f : α → δ → ε} {g : β → γ → δ} {f₁ : α → β → β'} {f₂ : α → γ → γ'} {g' : β' → γ' → ε} (h_distrib : ∀ (a : α) (b : β) (c : γ), f a (g b c) = g' (f₁ a b) (f₂ a c)) : Set.image2 f s (Set.image2 g t u) ⊆ Set.image2 g' (Set.image2 f₁ s t) (Set.image2 f₂ s u) - Set.image2_distrib_subset_right 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {α' : Type u_2} {β : Type u_3} {β' : Type u_4} {γ : Type u_5} {δ : Type u_7} {ε : Type u_9} {s : Set α} {t : Set β} {u : Set γ} {f : δ → γ → ε} {g : α → β → δ} {f₁ : α → γ → α'} {f₂ : β → γ → β'} {g' : α' → β' → ε} (h_distrib : ∀ (a : α) (b : β) (c : γ), f (g a b) c = g' (f₁ a c) (f₂ b c)) : Set.image2 f (Set.image2 g s t) u ⊆ Set.image2 g' (Set.image2 f₁ s u) (Set.image2 f₂ t u) - Set.image2_image2_image2_comm 📋 Mathlib.Data.Set.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {δ : Type u_7} {ε : Type u_9} {ε' : Type u_10} {ζ : Type u_11} {ζ' : Type u_12} {ν : Type u_13} {s : Set α} {t : Set β} {u : Set γ} {v : Set δ} {f : ε → ζ → ν} {g : α → β → ε} {h : γ → δ → ζ} {f' : ε' → ζ' → ν} {g' : α → γ → ε'} {h' : β → δ → ζ'} (h_comm : ∀ (a : α) (b : β) (c : γ) (d : δ), f (g a b) (h c d) = f' (g' a c) (h' b d)) : Set.image2 f (Set.image2 g s t) (Set.image2 h u v) = Set.image2 f' (Set.image2 g' s u) (Set.image2 h' t v) - BddAbove.bddAbove_image2_of_bddBelow 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} (h₀ : ∀ (b : β), Monotone (Function.swap f b)) (h₁ : ∀ (a : α), Antitone (f a)) : BddAbove s → BddBelow t → BddAbove (Set.image2 f s t) - BddAbove.bddBelow_image2_of_bddBelow 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} (h₀ : ∀ (b : β), Antitone (Function.swap f b)) (h₁ : ∀ (a : α), Monotone (f a)) : BddAbove s → BddBelow t → BddBelow (Set.image2 f s t) - BddAbove.image2 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} (h₀ : ∀ (b : β), Monotone (Function.swap f b)) (h₁ : ∀ (a : α), Monotone (f a)) : BddAbove s → BddAbove t → BddAbove (Set.image2 f s t) - BddAbove.image2_bddBelow 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} (h₀ : ∀ (b : β), Antitone (Function.swap f b)) (h₁ : ∀ (a : α), Antitone (f a)) : BddAbove s → BddAbove t → BddBelow (Set.image2 f s t) - BddBelow.bddAbove_image2_of_bddAbove 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} (h₀ : ∀ (b : β), Antitone (Function.swap f b)) (h₁ : ∀ (a : α), Monotone (f a)) : BddBelow s → BddAbove t → BddAbove (Set.image2 f s t) - BddBelow.bddBelow_image2_of_bddAbove 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} (h₀ : ∀ (b : β), Monotone (Function.swap f b)) (h₁ : ∀ (a : α), Antitone (f a)) : BddBelow s → BddAbove t → BddBelow (Set.image2 f s t) - BddBelow.image2 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} (h₀ : ∀ (b : β), Monotone (Function.swap f b)) (h₁ : ∀ (a : α), Monotone (f a)) : BddBelow s → BddBelow t → BddBelow (Set.image2 f s t) - BddBelow.image2_bddAbove 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} (h₀ : ∀ (b : β), Antitone (Function.swap f b)) (h₁ : ∀ (a : α), Antitone (f a)) : BddBelow s → BddBelow t → BddAbove (Set.image2 f s t) - IsGreatest.image2 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} {a : α} {b : β} (h₀ : ∀ (b : β), Monotone (Function.swap f b)) (h₁ : ∀ (a : α), Monotone (f a)) (ha : IsGreatest s a) (hb : IsGreatest t b) : IsGreatest (Set.image2 f s t) (f a b) - IsGreatest.isGreatest_image2_of_isLeast 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} {a : α} {b : β} (h₀ : ∀ (b : β), Monotone (Function.swap f b)) (h₁ : ∀ (a : α), Antitone (f a)) (ha : IsGreatest s a) (hb : IsLeast t b) : IsGreatest (Set.image2 f s t) (f a b) - IsGreatest.isLeast_image2 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} {a : α} {b : β} (h₀ : ∀ (b : β), Antitone (Function.swap f b)) (h₁ : ∀ (a : α), Antitone (f a)) (ha : IsGreatest s a) (hb : IsGreatest t b) : IsLeast (Set.image2 f s t) (f a b) - IsGreatest.isLeast_image2_of_isLeast 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} {a : α} {b : β} (h₀ : ∀ (b : β), Antitone (Function.swap f b)) (h₁ : ∀ (a : α), Monotone (f a)) (ha : IsGreatest s a) (hb : IsLeast t b) : IsLeast (Set.image2 f s t) (f a b) - IsLeast.image2 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} {a : α} {b : β} (h₀ : ∀ (b : β), Monotone (Function.swap f b)) (h₁ : ∀ (a : α), Monotone (f a)) (ha : IsLeast s a) (hb : IsLeast t b) : IsLeast (Set.image2 f s t) (f a b) - IsLeast.isGreatest_image2 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} {a : α} {b : β} (h₀ : ∀ (b : β), Antitone (Function.swap f b)) (h₁ : ∀ (a : α), Antitone (f a)) (ha : IsLeast s a) (hb : IsLeast t b) : IsGreatest (Set.image2 f s t) (f a b) - IsLeast.isGreatest_image2_of_isGreatest 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} {a : α} {b : β} (h₀ : ∀ (b : β), Antitone (Function.swap f b)) (h₁ : ∀ (a : α), Monotone (f a)) (ha : IsLeast s a) (hb : IsGreatest t b) : IsGreatest (Set.image2 f s t) (f a b) - IsLeast.isLeast_image2_of_isGreatest 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} {a : α} {b : β} (h₀ : ∀ (b : β), Monotone (Function.swap f b)) (h₁ : ∀ (a : α), Antitone (f a)) (ha : IsLeast s a) (hb : IsGreatest t b) : IsLeast (Set.image2 f s t) (f a b) - image2_lowerBounds_lowerBounds_subset 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} (h₀ : ∀ (b : β), Monotone (Function.swap f b)) (h₁ : ∀ (a : α), Monotone (f a)) : Set.image2 f (lowerBounds s) (lowerBounds t) ⊆ lowerBounds (Set.image2 f s t) - image2_lowerBounds_lowerBounds_subset_lowerBounds_image2 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} (h₀ : ∀ (b : β), Antitone (Function.swap f b)) (h₁ : ∀ (a : α), Antitone (f a)) : Set.image2 f (upperBounds s) (upperBounds t) ⊆ lowerBounds (Set.image2 f s t) - image2_lowerBounds_upperBounds_subset_lowerBounds_image2 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} (h₀ : ∀ (b : β), Monotone (Function.swap f b)) (h₁ : ∀ (a : α), Antitone (f a)) : Set.image2 f (lowerBounds s) (upperBounds t) ⊆ lowerBounds (Set.image2 f s t) - image2_lowerBounds_upperBounds_subset_upperBounds_image2 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} (h₀ : ∀ (b : β), Antitone (Function.swap f b)) (h₁ : ∀ (a : α), Monotone (f a)) : Set.image2 f (lowerBounds s) (upperBounds t) ⊆ upperBounds (Set.image2 f s t) - image2_upperBounds_lowerBounds_subset_lowerBounds_image2 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} (h₀ : ∀ (b : β), Antitone (Function.swap f b)) (h₁ : ∀ (a : α), Monotone (f a)) : Set.image2 f (upperBounds s) (lowerBounds t) ⊆ lowerBounds (Set.image2 f s t) - image2_upperBounds_lowerBounds_subset_upperBounds_image2 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} (h₀ : ∀ (b : β), Monotone (Function.swap f b)) (h₁ : ∀ (a : α), Antitone (f a)) : Set.image2 f (upperBounds s) (lowerBounds t) ⊆ upperBounds (Set.image2 f s t) - image2_upperBounds_upperBounds_subset 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} (h₀ : ∀ (b : β), Monotone (Function.swap f b)) (h₁ : ∀ (a : α), Monotone (f a)) : Set.image2 f (upperBounds s) (upperBounds t) ⊆ upperBounds (Set.image2 f s t) - image2_upperBounds_upperBounds_subset_upperBounds_image2 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} (h₀ : ∀ (b : β), Antitone (Function.swap f b)) (h₁ : ∀ (a : α), Antitone (f a)) : Set.image2 f (lowerBounds s) (lowerBounds t) ⊆ upperBounds (Set.image2 f s t) - mem_lowerBounds_image2 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} {a : α} {b : β} (h₀ : ∀ (b : β), Monotone (Function.swap f b)) (h₁ : ∀ (a : α), Monotone (f a)) (ha : a ∈ lowerBounds s) (hb : b ∈ lowerBounds t) : f a b ∈ lowerBounds (Set.image2 f s t) - mem_lowerBounds_image2_of_mem_lowerBounds_of_mem_lowerBounds 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} {a : α} {b : β} (h₀ : ∀ (b : β), Antitone (Function.swap f b)) (h₁ : ∀ (a : α), Monotone (f a)) (ha : a ∈ upperBounds s) (hb : b ∈ lowerBounds t) : f a b ∈ lowerBounds (Set.image2 f s t) - mem_lowerBounds_image2_of_mem_lowerBounds_of_mem_upperBounds 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} {a : α} {b : β} (h₀ : ∀ (b : β), Monotone (Function.swap f b)) (h₁ : ∀ (a : α), Antitone (f a)) (ha : a ∈ lowerBounds s) (hb : b ∈ upperBounds t) : f a b ∈ lowerBounds (Set.image2 f s t) - mem_lowerBounds_image2_of_mem_upperBounds 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} {a : α} {b : β} (h₀ : ∀ (b : β), Antitone (Function.swap f b)) (h₁ : ∀ (a : α), Antitone (f a)) (ha : a ∈ upperBounds s) (hb : b ∈ upperBounds t) : f a b ∈ lowerBounds (Set.image2 f s t) - mem_upperBounds_image2 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} {a : α} {b : β} (h₀ : ∀ (b : β), Monotone (Function.swap f b)) (h₁ : ∀ (a : α), Monotone (f a)) (ha : a ∈ upperBounds s) (hb : b ∈ upperBounds t) : f a b ∈ upperBounds (Set.image2 f s t) - mem_upperBounds_image2_of_mem_lowerBounds 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} {a : α} {b : β} (h₀ : ∀ (b : β), Antitone (Function.swap f b)) (h₁ : ∀ (a : α), Antitone (f a)) (ha : a ∈ lowerBounds s) (hb : b ∈ lowerBounds t) : f a b ∈ upperBounds (Set.image2 f s t) - mem_upperBounds_image2_of_mem_upperBounds_of_mem_lowerBounds 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} {a : α} {b : β} (h₀ : ∀ (b : β), Monotone (Function.swap f b)) (h₁ : ∀ (a : α), Antitone (f a)) (ha : a ∈ upperBounds s) (hb : b ∈ lowerBounds t) : f a b ∈ upperBounds (Set.image2 f s t) - mem_upperBounds_image2_of_mem_upperBounds_of_mem_upperBounds 📋 Mathlib.Order.Bounds.Image
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {f : α → β → γ} {s : Set α} {t : Set β} {a : α} {b : β} (h₀ : ∀ (b : β), Antitone (Function.swap f b)) (h₁ : ∀ (a : α), Monotone (f a)) (ha : a ∈ lowerBounds s) (hb : b ∈ upperBounds t) : f a b ∈ upperBounds (Set.image2 f s t) - sInf_image2 📋 Mathlib.Order.CompleteLattice.Basic
{α : 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 - sSup_image2 📋 Mathlib.Order.CompleteLattice.Basic
{α : 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 - iInf_image2 📋 Mathlib.Order.CompleteLattice.Basic
{α : 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) - iSup_image2 📋 Mathlib.Order.CompleteLattice.Basic
{α : 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) - isGLB_image2_of_isGLB_isGLB 📋 Mathlib.Order.GaloisConnection.Basic
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {s : Set α} {t : Set β} {u : α → β → γ} {u₁ : β → γ → α} {u₂ : α → γ → β} {a₀ : α} {b₀ : β} (h₁ : ∀ (b : β), GaloisConnection (u₁ b) (Function.swap u b)) (h₂ : ∀ (a : α), GaloisConnection (u₂ a) (u a)) (ha₀ : IsGLB s a₀) (hb₀ : IsGLB t b₀) : IsGLB (Set.image2 u s t) (u a₀ b₀) - isLUB_image2_of_isLUB_isLUB 📋 Mathlib.Order.GaloisConnection.Basic
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {s : Set α} {t : Set β} {l : α → β → γ} {u₁ : β → γ → α} {u₂ : α → γ → β} {a₀ : α} {b₀ : β} (h₁ : ∀ (b : β), GaloisConnection (Function.swap l b) (u₁ b)) (h₂ : ∀ (a : α), GaloisConnection (l a) (u₂ a)) (ha₀ : IsLUB s a₀) (hb₀ : IsLUB t b₀) : IsLUB (Set.image2 l s t) (l a₀ b₀) - sInf_image2_eq_sInf_sInf 📋 Mathlib.Order.GaloisConnection.Basic
{α : Type u} {β : Type v} {γ : Type w} [CompleteLattice α] [CompleteLattice β] [CompleteLattice γ] {s : Set α} {t : Set β} {u : α → β → γ} {u₁ : β → γ → α} {u₂ : α → γ → β} (h₁ : ∀ (b : β), GaloisConnection (u₁ b) (Function.swap u b)) (h₂ : ∀ (a : α), GaloisConnection (u₂ a) (u a)) : sInf (Set.image2 u s t) = u (sInf s) (sInf t) - sSup_image2_eq_sSup_sSup 📋 Mathlib.Order.GaloisConnection.Basic
{α : Type u} {β : Type v} {γ : Type w} [CompleteLattice α] [CompleteLattice β] [CompleteLattice γ] {s : Set α} {t : Set β} {l : α → β → γ} {u₁ : β → γ → α} {u₂ : α → γ → β} (h₁ : ∀ (b : β), GaloisConnection (Function.swap l b) (u₁ b)) (h₂ : ∀ (a : α), GaloisConnection (l a) (u₂ a)) : sSup (Set.image2 l s t) = l (sSup s) (sSup t) - isGLB_image2_of_isGLB_isLUB 📋 Mathlib.Order.GaloisConnection.Basic
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {s : Set α} {t : Set β} {u : α → β → γ} {u₁ : β → γ → α} {u₂ : α → γ → β} {a₀ : α} {b₀ : β} (h₁ : ∀ (b : β), GaloisConnection (u₁ b) (Function.swap u b)) (h₂ : ∀ (a : α), GaloisConnection (⇑OrderDual.toDual ∘ u₂ a) (u a ∘ ⇑OrderDual.ofDual)) (ha₀ : IsGLB s a₀) (hb₀ : IsLUB t b₀) : IsGLB (Set.image2 u s t) (u a₀ b₀) - isGLB_image2_of_isLUB_isGLB 📋 Mathlib.Order.GaloisConnection.Basic
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {s : Set α} {t : Set β} {u : α → β → γ} {u₁ : β → γ → α} {u₂ : α → γ → β} {a₀ : α} {b₀ : β} (h₁ : ∀ (b : β), GaloisConnection (⇑OrderDual.toDual ∘ u₁ b) (Function.swap u b ∘ ⇑OrderDual.ofDual)) (h₂ : ∀ (a : α), GaloisConnection (u₂ a) (u a)) (ha₀ : IsLUB s a₀) (hb₀ : IsGLB t b₀) : IsGLB (Set.image2 u s t) (u a₀ b₀) - isLUB_image2_of_isGLB_isLUB 📋 Mathlib.Order.GaloisConnection.Basic
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {s : Set α} {t : Set β} {l : α → β → γ} {u₁ : β → γ → α} {u₂ : α → γ → β} {a₀ : α} {b₀ : β} (h₁ : ∀ (b : β), GaloisConnection (Function.swap l b ∘ ⇑OrderDual.ofDual) (⇑OrderDual.toDual ∘ u₁ b)) (h₂ : ∀ (a : α), GaloisConnection (l a) (u₂ a)) (ha₀ : IsGLB s a₀) (hb₀ : IsLUB t b₀) : IsLUB (Set.image2 l s t) (l a₀ b₀) - isLUB_image2_of_isLUB_isGLB 📋 Mathlib.Order.GaloisConnection.Basic
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {s : Set α} {t : Set β} {l : α → β → γ} {u₁ : β → γ → α} {u₂ : α → γ → β} {a₀ : α} {b₀ : β} (h₁ : ∀ (b : β), GaloisConnection (Function.swap l b) (u₁ b)) (h₂ : ∀ (a : α), GaloisConnection (l a ∘ ⇑OrderDual.ofDual) (⇑OrderDual.toDual ∘ u₂ a)) (ha₀ : IsLUB s a₀) (hb₀ : IsGLB t b₀) : IsLUB (Set.image2 l s t) (l a₀ b₀) - sInf_image2_eq_sInf_sSup 📋 Mathlib.Order.GaloisConnection.Basic
{α : Type u} {β : Type v} {γ : Type w} [CompleteLattice α] [CompleteLattice β] [CompleteLattice γ] {s : Set α} {t : Set β} {u : α → β → γ} {u₁ : β → γ → α} {u₂ : α → γ → β} (h₁ : ∀ (b : β), GaloisConnection (u₁ b) (Function.swap u b)) (h₂ : ∀ (a : α), GaloisConnection (⇑OrderDual.toDual ∘ u₂ a) (u a ∘ ⇑OrderDual.ofDual)) : sInf (Set.image2 u s t) = u (sInf s) (sSup t) - sInf_image2_eq_sSup_sInf 📋 Mathlib.Order.GaloisConnection.Basic
{α : Type u} {β : Type v} {γ : Type w} [CompleteLattice α] [CompleteLattice β] [CompleteLattice γ] {s : Set α} {t : Set β} {u : α → β → γ} {u₁ : β → γ → α} {u₂ : α → γ → β} (h₁ : ∀ (b : β), GaloisConnection (⇑OrderDual.toDual ∘ u₁ b) (Function.swap u b ∘ ⇑OrderDual.ofDual)) (h₂ : ∀ (a : α), GaloisConnection (u₂ a) (u a)) : sInf (Set.image2 u s t) = u (sSup s) (sInf t) - sSup_image2_eq_sInf_sSup 📋 Mathlib.Order.GaloisConnection.Basic
{α : Type u} {β : Type v} {γ : Type w} [CompleteLattice α] [CompleteLattice β] [CompleteLattice γ] {s : Set α} {t : Set β} {l : α → β → γ} {u₁ : β → γ → α} {u₂ : α → γ → β} (h₁ : ∀ (b : β), GaloisConnection (Function.swap l b ∘ ⇑OrderDual.ofDual) (⇑OrderDual.toDual ∘ u₁ b)) (h₂ : ∀ (a : α), GaloisConnection (l a) (u₂ a)) : sSup (Set.image2 l s t) = l (sInf s) (sSup t) - sSup_image2_eq_sSup_sInf 📋 Mathlib.Order.GaloisConnection.Basic
{α : Type u} {β : Type v} {γ : Type w} [CompleteLattice α] [CompleteLattice β] [CompleteLattice γ] {s : Set α} {t : Set β} {l : α → β → γ} {u₁ : β → γ → α} {u₂ : α → γ → β} (h₁ : ∀ (b : β), GaloisConnection (Function.swap l b) (u₁ b)) (h₂ : ∀ (a : α), GaloisConnection (l a ∘ ⇑OrderDual.ofDual) (⇑OrderDual.toDual ∘ u₂ a)) : sSup (Set.image2 l s t) = l (sSup s) (sInf t) - isGLB_image2_of_isLUB_isLUB 📋 Mathlib.Order.GaloisConnection.Basic
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {s : Set α} {t : Set β} {u : α → β → γ} {u₁ : β → γ → α} {u₂ : α → γ → β} {a₀ : α} {b₀ : β} (h₁ : ∀ (b : β), GaloisConnection (⇑OrderDual.toDual ∘ u₁ b) (Function.swap u b ∘ ⇑OrderDual.ofDual)) (h₂ : ∀ (a : α), GaloisConnection (⇑OrderDual.toDual ∘ u₂ a) (u a ∘ ⇑OrderDual.ofDual)) (ha₀ : IsLUB s a₀) (hb₀ : IsLUB t b₀) : IsGLB (Set.image2 u s t) (u a₀ b₀) - isLUB_image2_of_isGLB_isGLB 📋 Mathlib.Order.GaloisConnection.Basic
{α : Type u} {β : Type v} {γ : Type w} [Preorder α] [Preorder β] [Preorder γ] {s : Set α} {t : Set β} {l : α → β → γ} {u₁ : β → γ → α} {u₂ : α → γ → β} {a₀ : α} {b₀ : β} (h₁ : ∀ (b : β), GaloisConnection (Function.swap l b ∘ ⇑OrderDual.ofDual) (⇑OrderDual.toDual ∘ u₁ b)) (h₂ : ∀ (a : α), GaloisConnection (l a ∘ ⇑OrderDual.ofDual) (⇑OrderDual.toDual ∘ u₂ a)) (ha₀ : IsGLB s a₀) (hb₀ : IsGLB t b₀) : IsLUB (Set.image2 l s t) (l a₀ b₀) - sInf_image2_eq_sSup_sSup 📋 Mathlib.Order.GaloisConnection.Basic
{α : Type u} {β : Type v} {γ : Type w} [CompleteLattice α] [CompleteLattice β] [CompleteLattice γ] {s : Set α} {t : Set β} {u : α → β → γ} {u₁ : β → γ → α} {u₂ : α → γ → β} (h₁ : ∀ (b : β), GaloisConnection (⇑OrderDual.toDual ∘ u₁ b) (Function.swap u b ∘ ⇑OrderDual.ofDual)) (h₂ : ∀ (a : α), GaloisConnection (⇑OrderDual.toDual ∘ u₂ a) (u a ∘ ⇑OrderDual.ofDual)) : sInf (Set.image2 u s t) = u (sSup s) (sSup t) - sSup_image2_eq_sInf_sInf 📋 Mathlib.Order.GaloisConnection.Basic
{α : Type u} {β : Type v} {γ : Type w} [CompleteLattice α] [CompleteLattice β] [CompleteLattice γ] {s : Set α} {t : Set β} {l : α → β → γ} {u₁ : β → γ → α} {u₂ : α → γ → β} (h₁ : ∀ (b : β), GaloisConnection (Function.swap l b ∘ ⇑OrderDual.ofDual) (⇑OrderDual.toDual ∘ u₁ b)) (h₂ : ∀ (a : α), GaloisConnection (l a ∘ ⇑OrderDual.ofDual) (⇑OrderDual.toDual ∘ u₂ a)) : sSup (Set.image2 l s t) = l (sInf s) (sInf t) - sSup_symmDiff_sSup_le 📋 Mathlib.Order.CompleteBooleanAlgebra
{α : Type u} [CompleteBooleanAlgebra α] {s t : Set α} (hs : s.Nonempty) (ht : t.Nonempty) : symmDiff (sSup s) (sSup t) ≤ sSup (Set.image2 (fun x1 x2 => symmDiff x1 x2) s t) - Set.sUnion_symmDiff_sUnion_subset 📋 Mathlib.Data.Set.Lattice.Indexed
{α : Type u_1} {S T : Set (Set α)} (hS : S.Nonempty) (hT : T.Nonempty) : symmDiff (⋃₀ S) (⋃₀ T) ⊆ ⋃₀ Set.image2 (fun x1 x2 => symmDiff x1 x2) S T - csInf_image2_eq_csInf_csInf 📋 Mathlib.Order.ConditionallyCompleteLattice.Basic
{α : Type u_1} {β : Type u_2} {γ : Type u_3} [ConditionallyCompleteLattice α] [ConditionallyCompleteLattice β] [ConditionallyCompleteLattice γ] {s : Set α} {t : Set β} {u : α → β → γ} {l₁ : β → γ → α} {l₂ : α → γ → β} (h₁ : ∀ (b : β), GaloisConnection (l₁ b) (Function.swap u b)) (h₂ : ∀ (a : α), GaloisConnection (l₂ a) (u a)) (hs₀ : s.Nonempty) (hs₁ : BddBelow s) (ht₀ : t.Nonempty) (ht₁ : BddBelow t) : sInf (Set.image2 u s t) = u (sInf s) (sInf t) - csSup_image2_eq_csSup_csSup 📋 Mathlib.Order.ConditionallyCompleteLattice.Basic
{α : Type u_1} {β : Type u_2} {γ : Type u_3} [ConditionallyCompleteLattice α] [ConditionallyCompleteLattice β] [ConditionallyCompleteLattice γ] {s : Set α} {t : Set β} {l : α → β → γ} {u₁ : β → γ → α} {u₂ : α → γ → β} (h₁ : ∀ (b : β), GaloisConnection (Function.swap l b) (u₁ b)) (h₂ : ∀ (a : α), GaloisConnection (l a) (u₂ a)) (hs₀ : s.Nonempty) (hs₁ : BddAbove s) (ht₀ : t.Nonempty) (ht₁ : BddAbove t) : sSup (Set.image2 l s t) = l (sSup s) (sSup t) - csInf_image2_eq_csInf_csSup 📋 Mathlib.Order.ConditionallyCompleteLattice.Basic
{α : Type u_1} {β : Type u_2} {γ : Type u_3} [ConditionallyCompleteLattice α] [ConditionallyCompleteLattice β] [ConditionallyCompleteLattice γ] {s : Set α} {t : Set β} {u : α → β → γ} {l₁ : β → γ → α} {l₂ : α → γ → β} (h₁ : ∀ (b : β), GaloisConnection (l₁ b) (Function.swap u b)) (h₂ : ∀ (a : α), GaloisConnection (⇑OrderDual.toDual ∘ l₂ a) (u a ∘ ⇑OrderDual.ofDual)) : s.Nonempty → BddBelow s → t.Nonempty → BddAbove t → sInf (Set.image2 u s t) = u (sInf s) (sSup t) - csInf_image2_eq_csSup_csInf 📋 Mathlib.Order.ConditionallyCompleteLattice.Basic
{α : Type u_1} {β : Type u_2} {γ : Type u_3} [ConditionallyCompleteLattice α] [ConditionallyCompleteLattice β] [ConditionallyCompleteLattice γ] {s : Set α} {t : Set β} {u : α → β → γ} {l₁ : β → γ → α} {l₂ : α → γ → β} (h₁ : ∀ (b : β), GaloisConnection (⇑OrderDual.toDual ∘ l₁ b) (Function.swap u b ∘ ⇑OrderDual.ofDual)) (h₂ : ∀ (a : α), GaloisConnection (l₂ a) (u a)) : s.Nonempty → BddAbove s → t.Nonempty → BddBelow t → sInf (Set.image2 u s t) = u (sSup s) (sInf t) - csSup_image2_eq_csInf_csSup 📋 Mathlib.Order.ConditionallyCompleteLattice.Basic
{α : Type u_1} {β : Type u_2} {γ : Type u_3} [ConditionallyCompleteLattice α] [ConditionallyCompleteLattice β] [ConditionallyCompleteLattice γ] {s : Set α} {t : Set β} {l : α → β → γ} {u₁ : β → γ → α} {u₂ : α → γ → β} (h₁ : ∀ (b : β), GaloisConnection (Function.swap l b ∘ ⇑OrderDual.ofDual) (⇑OrderDual.toDual ∘ u₁ b)) (h₂ : ∀ (a : α), GaloisConnection (l a) (u₂ a)) : s.Nonempty → BddBelow s → t.Nonempty → BddAbove t → sSup (Set.image2 l s t) = l (sInf s) (sSup t) - csSup_image2_eq_csSup_csInf 📋 Mathlib.Order.ConditionallyCompleteLattice.Basic
{α : Type u_1} {β : Type u_2} {γ : Type u_3} [ConditionallyCompleteLattice α] [ConditionallyCompleteLattice β] [ConditionallyCompleteLattice γ] {s : Set α} {t : Set β} {l : α → β → γ} {u₁ : β → γ → α} {u₂ : α → γ → β} (h₁ : ∀ (b : β), GaloisConnection (Function.swap l b) (u₁ b)) (h₂ : ∀ (a : α), GaloisConnection (l a ∘ ⇑OrderDual.ofDual) (⇑OrderDual.toDual ∘ u₂ a)) : s.Nonempty → BddAbove s → t.Nonempty → BddBelow t → sSup (Set.image2 l s t) = l (sSup s) (sInf t) - csInf_image2_eq_csSup_csSup 📋 Mathlib.Order.ConditionallyCompleteLattice.Basic
{α : Type u_1} {β : Type u_2} {γ : Type u_3} [ConditionallyCompleteLattice α] [ConditionallyCompleteLattice β] [ConditionallyCompleteLattice γ] {s : Set α} {t : Set β} {u : α → β → γ} {l₁ : β → γ → α} {l₂ : α → γ → β} (h₁ : ∀ (b : β), GaloisConnection (⇑OrderDual.toDual ∘ l₁ b) (Function.swap u b ∘ ⇑OrderDual.ofDual)) (h₂ : ∀ (a : α), GaloisConnection (⇑OrderDual.toDual ∘ l₂ a) (u a ∘ ⇑OrderDual.ofDual)) : s.Nonempty → BddAbove s → t.Nonempty → BddAbove t → sInf (Set.image2 u s t) = u (sSup s) (sSup t) - csSup_image2_eq_csInf_csInf 📋 Mathlib.Order.ConditionallyCompleteLattice.Basic
{α : Type u_1} {β : Type u_2} {γ : Type u_3} [ConditionallyCompleteLattice α] [ConditionallyCompleteLattice β] [ConditionallyCompleteLattice γ] {s : Set α} {t : Set β} {l : α → β → γ} {u₁ : β → γ → α} {u₂ : α → γ → β} (h₁ : ∀ (b : β), GaloisConnection (Function.swap l b ∘ ⇑OrderDual.ofDual) (⇑OrderDual.toDual ∘ u₁ b)) (h₂ : ∀ (a : α), GaloisConnection (l a ∘ ⇑OrderDual.ofDual) (⇑OrderDual.toDual ∘ u₂ a)) : s.Nonempty → BddBelow s → t.Nonempty → BddBelow t → sSup (Set.image2 l s t) = l (sInf s) (sInf t) - Set.image2_sdiv 📋 Mathlib.Algebra.Group.Pointwise.Set.Scalar
{α : Type u_1} {β : Type u_2} [SDiv α β] {s t : Set β} : Set.image2 (fun x1 x2 => x1 /ₛ x2) s t = s /ₛ t - Set.image2_vsub 📋 Mathlib.Algebra.Group.Pointwise.Set.Scalar
{α : Type u_1} {β : Type u_2} [VSub α β] {s t : Set β} : Set.image2 (fun x1 x2 => x1 -ᵥ x2) s t = s -ᵥ t - Set.image2_smul 📋 Mathlib.Algebra.Group.Pointwise.Set.Scalar
{α : Type u_1} {β : Type u_2} [SMul α β] {s : Set α} {t : Set β} : Set.image2 (fun x1 x2 => x1 • x2) s t = s • t - Set.image2_vadd 📋 Mathlib.Algebra.Group.Pointwise.Set.Scalar
{α : Type u_1} {β : Type u_2} [VAdd α β] {s : Set α} {t : Set β} : Set.image2 (fun x1 x2 => x1 +ᵥ x2) s t = s +ᵥ t - Set.image2_add 📋 Mathlib.Algebra.Group.Pointwise.Set.Basic
{α : Type u_2} [Add α] {s t : Set α} : Set.image2 (fun x1 x2 => x1 + x2) s t = s + t - Set.image2_div 📋 Mathlib.Algebra.Group.Pointwise.Set.Basic
{α : Type u_2} [Div α] {s t : Set α} : Set.image2 (fun x1 x2 => x1 / x2) s t = s / t - Set.image2_mul 📋 Mathlib.Algebra.Group.Pointwise.Set.Basic
{α : Type u_2} [Mul α] {s t : Set α} : Set.image2 (fun x1 x2 => x1 * x2) s t = s * t - Set.image2_sub 📋 Mathlib.Algebra.Group.Pointwise.Set.Basic
{α : Type u_2} [Sub α] {s t : Set α} : Set.image2 (fun x1 x2 => x1 - x2) s t = s - t - Set.Finite.image2 📋 Mathlib.Basic.Finite.Prod
{α : Type u_1} {β : Type u_2} {γ : Type u_3} {s : Set α} {t : Set β} (f : α → β → γ) (hs : s.Finite) (ht : t.Finite) : (Set.image2 f s t).Finite - Finite.Set.finite_image2 📋 Mathlib.Basic.Finite.Prod
{α : Type u_1} {β : Type u_2} {γ : Type u_3} (f : α → β → γ) (s : Set α) (t : Set β) [Finite ↑s] [Finite ↑t] : Finite ↑(Set.image2 f s t) - Set.fintypeImage2 📋 Mathlib.Basic.Finite.Prod
{α : Type u_1} {β : Type u_2} {γ : Type u_3} [DecidableEq γ] (f : α → β → γ) (s : Set α) (t : Set β) [hs : Fintype ↑s] [ht : Fintype ↑t] : Fintype ↑(Set.image2 f s t) - Set.Infinite.image2_right 📋 Mathlib.Basic.Finite.Prod
{α : Type u_1} {β : Type u_2} {γ : Type u_3} {f : α → β → γ} {s : Set α} {t : Set β} {a : α} (ht : t.Infinite) (ha : a ∈ s) (hf : Set.InjOn (f a) t) : (Set.image2 f s t).Infinite - Set.Infinite.image2_left 📋 Mathlib.Basic.Finite.Prod
{α : Type u_1} {β : Type u_2} {γ : Type u_3} {f : α → β → γ} {s : Set α} {t : Set β} {b : β} (hs : s.Infinite) (hb : b ∈ t) (hf : Set.InjOn (fun a => f a b) s) : (Set.image2 f s t).Infinite - Set.infinite_image2 📋 Mathlib.Basic.Finite.Prod
{α : Type u_1} {β : Type u_2} {γ : Type u_3} {f : α → β → γ} {s : Set α} {t : Set β} (hfs : ∀ b ∈ t, Set.InjOn (fun a => f a b) s) (hft : ∀ a ∈ s, Set.InjOn (f a) t) : (Set.image2 f s t).Infinite ↔ s.Infinite ∧ t.Nonempty ∨ t.Infinite ∧ s.Nonempty - Set.finite_image2 📋 Mathlib.Basic.Finite.Prod
{α : Type u_1} {β : Type u_2} {γ : Type u_3} {f : α → β → γ} {s : Set α} {t : Set β} (hfs : ∀ b ∈ t, Set.InjOn (fun x => f x b) s) (hft : ∀ a ∈ s, Set.InjOn (f a) t) : (Set.image2 f s t).Finite ↔ s.Finite ∧ t.Finite ∨ s = ∅ ∨ t = ∅ - Set.sInter_image2 📋 Mathlib.Data.Set.Lattice.Bounded
{α : Type u_1} {β : Type u_2} {γ : Type u_3} (f : α → β → Set γ) (s : Set α) (t : Set β) : ⋂₀ Set.image2 f s t = ⋂ a ∈ s, ⋂ b ∈ t, f a b - Set.sUnion_image2 📋 Mathlib.Data.Set.Lattice.Bounded
{α : Type u_1} {β : Type u_2} {γ : Type u_3} (f : α → β → Set γ) (s : Set α) (t : Set β) : ⋃₀ Set.image2 f s t = ⋃ a ∈ s, ⋃ b ∈ t, f a b - Set.image2_eq_seq 📋 Mathlib.Data.Set.Lattice.Image
{α : Type u_1} {β : Type u_2} {γ : Type u_3} (f : α → β → γ) (s : Set α) (t : Set β) : Set.image2 f s t = (f '' s).seq t - Set.image2_iUnion_left 📋 Mathlib.Data.Set.Lattice.Image
{α : Type u_1} {β : Type u_2} {γ : Type u_3} {ι : Sort u_5} (f : α → β → γ) (s : ι → Set α) (t : Set β) : Set.image2 f (⋃ i, s i) t = ⋃ i, Set.image2 f (s i) t - Set.image2_iUnion_right 📋 Mathlib.Data.Set.Lattice.Image
{α : Type u_1} {β : Type u_2} {γ : Type u_3} {ι : Sort u_5} (f : α → β → γ) (s : Set α) (t : ι → Set β) : Set.image2 f s (⋃ i, t i) = ⋃ i, Set.image2 f s (t i) - Set.image2_iInter_subset_left 📋 Mathlib.Data.Set.Lattice.Image
{α : Type u_1} {β : Type u_2} {γ : Type u_3} {ι : Sort u_5} (f : α → β → γ) (s : ι → Set α) (t : Set β) : Set.image2 f (⋂ i, s i) t ⊆ ⋂ i, Set.image2 f (s i) t - Set.image2_iInter_subset_right 📋 Mathlib.Data.Set.Lattice.Image
{α : Type u_1} {β : Type u_2} {γ : Type u_3} {ι : Sort u_5} (f : α → β → γ) (s : Set α) (t : ι → Set β) : Set.image2 f s (⋂ i, t i) ⊆ ⋂ i, Set.image2 f s (t i) - Set.iUnion_image_left 📋 Mathlib.Data.Set.Lattice.Image
{α : Type u_1} {β : Type u_2} {γ : Type u_3} (f : α → β → γ) {s : Set α} {t : Set β} : ⋃ a ∈ s, f a '' t = Set.image2 f s t - Set.iUnion_image_right 📋 Mathlib.Data.Set.Lattice.Image
{α : Type u_1} {β : Type u_2} {γ : Type u_3} (f : α → β → γ) {s : Set α} {t : Set β} : ⋃ b ∈ t, (fun x => f x b) '' s = Set.image2 f s t - Set.image2_iUnion₂_left 📋 Mathlib.Data.Set.Lattice.Image
{α : Type u_1} {β : Type u_2} {γ : Type u_3} {ι : Sort u_5} {κ : ι → Sort u_8} (f : α → β → γ) (s : (i : ι) → κ i → Set α) (t : Set β) : Set.image2 f (⋃ i, ⋃ j, s i j) t = ⋃ i, ⋃ j, Set.image2 f (s i j) t - Set.image2_iUnion₂_right 📋 Mathlib.Data.Set.Lattice.Image
{α : Type u_1} {β : Type u_2} {γ : Type u_3} {ι : Sort u_5} {κ : ι → Sort u_8} (f : α → β → γ) (s : Set α) (t : (i : ι) → κ i → Set β) : Set.image2 f s (⋃ i, ⋃ j, t i j) = ⋃ i, ⋃ j, Set.image2 f s (t i j) - Set.image2_iInter₂_subset_left 📋 Mathlib.Data.Set.Lattice.Image
{α : Type u_1} {β : Type u_2} {γ : Type u_3} {ι : Sort u_5} {κ : ι → Sort u_8} (f : α → β → γ) (s : (i : ι) → κ i → Set α) (t : Set β) : Set.image2 f (⋂ i, ⋂ j, s i j) t ⊆ ⋂ i, ⋂ j, Set.image2 f (s i j) t - Set.image2_iInter₂_subset_right 📋 Mathlib.Data.Set.Lattice.Image
{α : Type u_1} {β : Type u_2} {γ : Type u_3} {ι : Sort u_5} {κ : ι → Sort u_8} (f : α → β → γ) (s : Set α) (t : (i : ι) → κ i → Set β) : Set.image2 f s (⋂ i, ⋂ j, t i j) ⊆ ⋂ i, ⋂ j, Set.image2 f s (t i j) - Set.image2_sUnion_left 📋 Mathlib.Data.Set.Lattice.Image
{α : Type u_1} {β : Type u_2} {γ : Type u_3} (f : α → β → γ) (S : Set (Set α)) (t : Set β) : Set.image2 f (⋃₀ S) t = ⋃ s ∈ S, Set.image2 f s t - Set.image2_sUnion_right 📋 Mathlib.Data.Set.Lattice.Image
{α : Type u_1} {β : Type u_2} {γ : Type u_3} (f : α → β → γ) (s : Set α) (T : Set (Set β)) : Set.image2 f s (⋃₀ T) = ⋃ t ∈ T, Set.image2 f s t - Set.image2_sInter_left_subset 📋 Mathlib.Data.Set.Lattice.Image
{α : Type u_1} {β : Type u_2} {γ : Type u_3} (S : Set (Set α)) (t : Set β) (f : α → β → γ) : Set.image2 f (⋂₀ S) t ⊆ ⋂ s ∈ S, Set.image2 f s t - Set.image2_sInter_right_subset 📋 Mathlib.Data.Set.Lattice.Image
{α : Type u_1} {β : Type u_2} {γ : Type u_3} (t : Set α) (S : Set (Set β)) (f : α → β → γ) : Set.image2 f t (⋂₀ S) ⊆ ⋂ s ∈ S, Set.image2 f t s - Set.image2_sInter_subset_left 📋 Mathlib.Data.Set.Lattice.Image
{α : Type u_1} {β : Type u_2} {γ : Type u_3} (f : α → β → γ) (S : Set (Set α)) (t : Set β) : Set.image2 f (⋂₀ S) t ⊆ ⋂ s ∈ S, Set.image2 f s t - Set.image2_sInter_subset_right 📋 Mathlib.Data.Set.Lattice.Image
{α : Type u_1} {β : Type u_2} {γ : Type u_3} (f : α → β → γ) (s : Set α) (T : Set (Set β)) : Set.image2 f s (⋂₀ T) ⊆ ⋂ t ∈ T, Set.image2 f s t - Set.image2_eq_iUnion 📋 Mathlib.Data.Set.Lattice.Image
{α : Type u_1} {β : Type u_2} {γ : Type u_3} (f : α → β → γ) (s : Set α) (t : Set β) : Set.image2 f s t = ⋃ i ∈ s, ⋃ j ∈ t, {f i j} - Set.biInter_image2 📋 Mathlib.Data.Set.Lattice.Image
{α : Type u_1} {β : Type u_2} {γ : Type u_3} {δ : Type u_4} (s : Set α) (t : Set β) (f : α → β → γ) (g : γ → Set δ) : ⋂ c ∈ Set.image2 f s t, g c = ⋂ a ∈ s, ⋂ b ∈ t, g (f a b) - Set.biUnion_image2 📋 Mathlib.Data.Set.Lattice.Image
{α : Type u_1} {β : Type u_2} {γ : Type u_3} {δ : Type u_4} (s : Set α) (t : Set β) (f : α → β → γ) (g : γ → Set δ) : ⋃ c ∈ Set.image2 f s t, g c = ⋃ a ∈ s, ⋃ b ∈ t, g (f a b) - Set.Countable.image2 📋 Mathlib.Data.Set.Countable
{α : Type u} {β : Type v} {γ : Type w} {s : Set α} {t : Set β} (hs : s.Countable) (ht : t.Countable) (f : α → β → γ) : (Set.image2 f s t).Countable - small_image2 📋 Mathlib.Logic.Small.Set
{α : Type u1} {β : Type u2} {γ : Type u3} (f : α → β → γ) (s : Set α) (t : Set β) [Small.{u, u1} ↑s] [Small.{u, u2} ↑t] : Small.{u, u3} ↑(Set.image2 f s t) - Cardinal.mk_image2_le 📋 Mathlib.SetTheory.Cardinal.Basic
{α β γ : Type u} {f : α → β → γ} {s : Set α} {t : Set β} : Cardinal.mk ↑(Set.image2 f s t) ≤ Cardinal.mk ↑s * Cardinal.mk ↑t - Finset.coe_image₂ 📋 Mathlib.Data.Finset.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} [DecidableEq γ] (f : α → β → γ) (s : Finset α) (t : Finset β) : ↑(Finset.image₂ f s t) = Set.image2 f ↑s ↑t - Set.toFinset_image2 📋 Mathlib.Data.Finset.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} [DecidableEq γ] (f : α → β → γ) (s : Set α) (t : Set β) [Fintype ↑s] [Fintype ↑t] [Fintype ↑(Set.image2 f s t)] : (Set.image2 f s t).toFinset = Finset.image₂ f s.toFinset t.toFinset - Set.Finite.toFinset_image2 📋 Mathlib.Data.Finset.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} [DecidableEq γ] {s : Set α} {t : Set β} (f : α → β → γ) (hs : s.Finite) (ht : t.Finite) (hf : (Set.image2 f s t).Finite := ⋯) : hf.toFinset = Finset.image₂ f hs.toFinset ht.toFinset - Finset.subset_set_image₂ 📋 Mathlib.Data.Finset.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} [DecidableEq γ] {f : α → β → γ} {u : Finset γ} {s : Set α} {t : Set β} (hu : ↑u ⊆ Set.image2 f s t) : ∃ s' t', ↑s' ⊆ s ∧ ↑t' ⊆ t ∧ u ⊆ Finset.image₂ f s' t' - Submodule.map₂_span_span 📋 Mathlib.Algebra.Module.Submodule.Bilinear
(R : Type u_1) {M : Type u_2} {N : Type u_3} {P : Type u_4} [CommSemiring R] [AddCommMonoid M] [AddCommMonoid N] [AddCommMonoid P] [Module R M] [Module R N] [Module R P] (f : M →ₗ[R] N →ₗ[R] P) (s : Set M) (t : Set N) : Submodule.map₂ f (Submodule.span R s) (Submodule.span R t) = Submodule.span R (Set.image2 (fun m n => (f m) n) s t) - Submodule.map₂_eq_span_image2 📋 Mathlib.Algebra.Module.Submodule.Bilinear
{R : Type u_1} {M : Type u_2} {N : Type u_3} {P : Type u_4} [CommSemiring R] [AddCommMonoid M] [AddCommMonoid N] [AddCommMonoid P] [Module R M] [Module R N] [Module R P] (f : M →ₗ[R] N →ₗ[R] P) (p : Submodule R M) (q : Submodule R N) : Submodule.map₂ f p q = Submodule.span R (Set.image2 (fun m n => (f m) n) ↑p ↑q) - Submodule.image2_subset_map₂ 📋 Mathlib.Algebra.Module.Submodule.Bilinear
{R : Type u_1} {M : Type u_2} {N : Type u_3} {P : Type u_4} [CommSemiring R] [AddCommMonoid M] [AddCommMonoid N] [AddCommMonoid P] [Module R M] [Module R N] [Module R P] (f : M →ₗ[R] N →ₗ[R] P) (p : Submodule R M) (q : Submodule R N) : Set.image2 (fun m n => (f m) n) ↑p ↑q ⊆ ↑(Submodule.map₂ f p q) - Filter.image2_mem_map₂ 📋 Mathlib.Order.Filter.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {m : α → β → γ} {f : Filter α} {g : Filter β} {s : Set α} {t : Set β} (hs : s ∈ f) (ht : t ∈ g) : Set.image2 m s t ∈ Filter.map₂ m f g - Filter.le_map₂_iff 📋 Mathlib.Order.Filter.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {m : α → β → γ} {f : Filter α} {g : Filter β} {h : Filter γ} : h ≤ Filter.map₂ m f g ↔ ∀ ⦃s : Set α⦄, s ∈ f → ∀ ⦃t : Set β⦄, t ∈ g → Set.image2 m s t ∈ h - Filter.mem_map₂_iff 📋 Mathlib.Order.Filter.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {m : α → β → γ} {f : Filter α} {g : Filter β} {u : Set γ} : u ∈ Filter.map₂ m f g ↔ ∃ s ∈ f, ∃ t ∈ g, Set.image2 m s t ⊆ u - Filter.HasBasis.map₂ 📋 Mathlib.Order.Filter.NAry
{α : Type u_1} {β : Type u_3} {γ : Type u_5} {f : Filter α} {g : Filter β} {ι : Type u_11} {ι' : Type u_12} {p : ι → Prop} {q : ι' → Prop} {s : ι → Set α} {t : ι' → Set β} (m : α → β → γ) (hf : f.HasBasis p s) (hg : g.HasBasis q t) : (Filter.map₂ m f g).HasBasis (fun i => p i.1 ∧ q i.2) fun i => Set.image2 m (s i.1) (t i.2) - prod_generateFrom_generateFrom_eq 📋 Mathlib.Topology.Constructions.SumProd
{X : Type u_5} {Y : Type u_6} {s : Set (Set X)} {t : Set (Set Y)} (hs : ⋃₀ s = Set.univ) (ht : ⋃₀ t = Set.univ) : instTopologicalSpaceProd = TopologicalSpace.generateFrom (Set.image2 (fun x1 x2 => x1 ×ˢ x2) s t) - TopologicalSpace.IsTopologicalBasis.prod 📋 Mathlib.Topology.Bases
{α : Type u} {β : Type u_1} [t : TopologicalSpace α] [TopologicalSpace β] {B₁ : Set (Set α)} {B₂ : Set (Set β)} (h₁ : TopologicalSpace.IsTopologicalBasis B₁) (h₂ : TopologicalSpace.IsTopologicalBasis B₂) : TopologicalSpace.IsTopologicalBasis (Set.image2 (fun x1 x2 => x1 ×ˢ x2) B₁ B₂) - TopologicalSpace.IsTopologicalBasis.inf 📋 Mathlib.Topology.Bases
{β : Type u_1} {t₁ t₂ : TopologicalSpace β} {B₁ B₂ : Set (Set β)} (h₁ : TopologicalSpace.IsTopologicalBasis B₁) (h₂ : TopologicalSpace.IsTopologicalBasis B₂) : TopologicalSpace.IsTopologicalBasis (Set.image2 (fun x1 x2 => x1 ∩ x2) B₁ B₂) - TopologicalSpace.IsTopologicalBasis.inf_induced 📋 Mathlib.Topology.Bases
{α : Type u} {β : Type u_1} [t : TopologicalSpace α] {γ : Type u_2} [s : TopologicalSpace β] {B₁ : Set (Set α)} {B₂ : Set (Set β)} (h₁ : TopologicalSpace.IsTopologicalBasis B₁) (h₂ : TopologicalSpace.IsTopologicalBasis B₂) (f₁ : γ → α) (f₂ : γ → β) : TopologicalSpace.IsTopologicalBasis (Set.image2 (fun x1 x2 => f₁ ⁻¹' x1 ∩ f₂ ⁻¹' x2) B₁ B₂) - Set.image2_def 📋 Mathlib.Data.Set.Functor
{α β γ : Type u} (f : α → β → γ) (s : Set α) (t : Set β) : Set.image2 f s t = f <$> s <*> t - Metric.ediam_eq_sSup 📋 Mathlib.Topology.EMetricSpace.Diam
{X : Type u_2} [TopologicalSpace X] [WeakPseudoEMetricSpace X] (s : Set X) : Metric.ediam s = sSup (Set.image2 edist s s) - LipschitzOnWith.ediam_image2_le 📋 Mathlib.Topology.EMetricSpace.Lipschitz
{α : Type u} {β : Type v} {γ : Type w} [PseudoEMetricSpace α] [PseudoEMetricSpace β] [PseudoEMetricSpace γ] (f : α → β → γ) {K₁ K₂ : NNReal} (s : Set α) (t : Set β) (hf₁ : ∀ b ∈ t, LipschitzOnWith K₁ (fun x => f x b) s) (hf₂ : ∀ a ∈ s, LipschitzOnWith K₂ (f a) t) : Metric.ediam (Set.image2 f s t) ≤ ↑K₁ * Metric.ediam s + ↑K₂ * Metric.ediam t - AntilipschitzWith.isBounded_of_image2_right 📋 Mathlib.Topology.MetricSpace.Antilipschitz
{α : Type u_1} {β : Type u_2} {γ : Type u_3} [PseudoMetricSpace α] [PseudoMetricSpace β] [PseudoMetricSpace γ] {f : α → β → γ} {K₂ : NNReal} (hf : ∀ (a : α), AntilipschitzWith K₂ (f a)) {s : Set α} {t : Set β} (hst : Bornology.IsBounded (Set.image2 f s t)) : Bornology.IsBounded s ∨ Bornology.IsBounded t - AntilipschitzWith.isBounded_of_image2_left 📋 Mathlib.Topology.MetricSpace.Antilipschitz
{α : Type u_1} {β : Type u_2} {γ : Type u_3} [PseudoMetricSpace α] [PseudoMetricSpace β] [PseudoMetricSpace γ] (f : α → β → γ) {K₁ : NNReal} (hf : ∀ (b : β), AntilipschitzWith K₁ fun a => f a b) {s : Set α} {t : Set β} (hst : Bornology.IsBounded (Set.image2 f s t)) : Bornology.IsBounded s ∨ Bornology.IsBounded t - LipschitzOnWith.isBounded_image2 📋 Mathlib.Topology.MetricSpace.Lipschitz
{α : Type u} {β : Type v} {γ : Type w} [PseudoMetricSpace α] [PseudoMetricSpace β] [PseudoMetricSpace γ] (f : α → β → γ) {K₁ K₂ : NNReal} {s : Set α} {t : Set β} (hs : Bornology.IsBounded s) (ht : Bornology.IsBounded t) (hf₁ : ∀ b ∈ t, LipschitzOnWith K₁ (fun a => f a b) s) (hf₂ : ∀ a ∈ s, LipschitzOnWith K₂ (f a) t) : Bornology.IsBounded (Set.image2 f s t) - IsCountablySpanning.prod 📋 Mathlib.MeasureTheory.MeasurableSpace.Basic
{α : Type u_1} {β : Type u_2} {C : Set (Set α)} {D : Set (Set β)} (hC : IsCountablySpanning C) (hD : IsCountablySpanning D) : IsCountablySpanning (Set.image2 (fun x1 x2 => x1 ×ˢ x2) C D) - IsPiSystem.prod 📋 Mathlib.MeasureTheory.PiSystem
{α : Type u_1} {β : Type u_2} {C : Set (Set α)} {D : Set (Set β)} (hC : IsPiSystem C) (hD : IsPiSystem D) : IsPiSystem (Set.image2 (fun x1 x2 => x1 ×ˢ x2) C D) - isPiSystem_prod 📋 Mathlib.MeasureTheory.MeasurableSpace.Prod
{α : Type u_1} {β : Type u_2} [MeasurableSpace α] [MeasurableSpace β] : IsPiSystem (Set.image2 (fun x1 x2 => x1 ×ˢ x2) {s | MeasurableSet s} {t | MeasurableSet t})
About
Loogle searches Lean and Mathlib definitions and theorems.
You can use Loogle from within the Lean4 VSCode language extension
using the Loogle command from the command palette. You can also try the
#loogle command from LeanSearchClient,
the CLI version, the Loogle
VS Code extension, the lean.nvim
integration or the Zulip bot.
Usage
Loogle finds definitions and lemmas in various ways:
By constant:
🔍Real.sin
finds all lemmas whose statement somehow mentions the sine function.By lemma name substring:
🔍"differ"
finds all lemmas that have"differ"somewhere in their lemma name.By subexpression:
🔍_ * (_ ^ _)
finds all lemmas whose statements somewhere include a product where the second argument is raised to some power.The pattern can also be non-linear, as in
🔍Real.sqrt ?a * Real.sqrt ?aIf the pattern has parameters, they are matched in any order. Both of these will find
List.map:
🔍(?a -> ?b) -> List ?a -> List ?b
🔍List ?a -> (?a -> ?b) -> List ?bBy main conclusion:
🔍|- tsum _ = _ * tsum _
finds all lemmas where the conclusion (the subexpression to the right of all→and∀) has the given shape.As before, if the pattern has parameters, they are matched against the hypotheses of the lemma in any order; for example,
🔍|- _ < _ → tsum _ < tsum _
will findtsum_lt_tsumeven though the hypothesisf i < g iis not the last.You can filter for definitions vs theorems: Using
⊢ (_ : Type _)finds all definitions which provide data while⊢ (_ : Prop)finds all theorems (and definitions of proofs).
If you pass more than one such search filter, separated by commas
Loogle will return lemmas which match all of them. The
search
🔍 Real.sin, "two", tsum, _ * _, _ ^ _, |- _ < _ → _
would find all lemmas which mention the constants Real.sin
and tsum, have "two" as a substring of the
lemma name, include a product and a power somewhere in the type,
and have a hypothesis of the form _ < _ (if
there were any such lemmas). Metavariables (?a) are
assigned independently in each filter.
The #lucky button will directly send you to the
documentation of the first hit.
Source code
You can find the source code for this service at https://github.com/nomeata/loogle. The https://loogle.lean-lang.org/ service is provided by the Lean FRO. Please review the Lean FRO Terms of Use and Privacy Policy.
This is Loogle revision 9f11169 serving mathlib revision ce5dd8c