English
Let α be a preorder and β a linear-ordered semilattice. If f,g are antitone on s, then their pointwise minimum h(x) = min{f(x), g(x)} is antitone on s.
Русский
Пусть α — предобразное множество, β — линейная полузамкнутая. Если f,g антимонотонны на s, то h(x) = min{f(x), g(x)} антимонотонна на s.
LaTeX
$$$\forall x,y\in s:\ x\le y\Rightarrow \min\{f(x),g(x)\}\ge \min\{f(y),g(y)\}$$$
Lean4
/-- Pointwise minimum of two antitone functions is an antitone function. -/
protected theorem min [Preorder α] [LinearOrder β] {f g : α → β} {s : Set α} (hf : AntitoneOn f s)
(hg : AntitoneOn g s) : AntitoneOn (fun x => min (f x) (g x)) s :=
hf.inf hg