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