English
Let h be a natural equality h: n = m and i,j ∈ Fin n. The image of the half-open interval Ico(i,j) under Fin.cast h is Ico(i.cast h, j.cast h).
Русский
Пусть h : n = m и i, j ∈ Fin n. Образ полузакрытого интервала Ico(i,j) при приведении Fin.cast h равен Ico(i.cast h, j.cast h).
LaTeX
$$$$ \operatorname{Finset.image}(\operatorname{Fin.cast} h)(\operatorname{Finset.Ico}(i, j)) = \operatorname{Finset.Ico}(\operatorname{Fin.cast} h\, i) (\operatorname{Fin.cast} h\, j) $$$$
Lean4
@[simp]
theorem finsetImage_cast_Ico (h : n = m) (i j : Fin n) : (Ico i j).image (.cast h) = Ico (i.cast h) (j.cast h) := by
simp [← coe_inj]