English
Let e be an order isomorphism between α and β. Then the image of the half-open interval Ico(a,b) under e is Ico(e(a), e(b)); i.e., e''Ico(a,b) = Ico(e(a), e(b)).
Русский
Пусть e — изоморфизм порядка между α и β. Тогда образ полупроизвольного интервала Ico(a,b) равен Ico(e(a), e(b)).
LaTeX
$$$$ e'' Ico(a,b) = Ico(e(a), e(b)) $$$$
Lean4
@[simp]
theorem image_Ico (e : α ≃o β) (a b : α) : e '' Ico a b = Ico (e a) (e b) := by
rw [e.image_eq_preimage, e.symm.preimage_Ico, e.symm_symm]