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