English
If f is monotone, the Ioc intervals with successive indices are pairwise disjoint.
Русский
Если f монотонна, интервалы Ioc соседних индексов попарно непересекаются.
LaTeX
$$PairwiseDisjoint( { Ioc (f i) (f (succ i)) } )$$
Lean4
/-- If `α` is a linear succ order, `β` is a preorder, and `f : α → β` is an antitone function, then
the intervals `Set.Ico (f (Order.succ n)) (f n)` are pairwise disjoint. -/
theorem pairwise_disjoint_on_Ico_succ [SuccOrder α] [Preorder β] {f : α → β} (hf : Antitone f) :
Pairwise (Disjoint on fun n => Ico (f (succ n)) (f n)) :=
hf.dual_left.pairwise_disjoint_on_Ico_pred