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