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