English
Let i and j be elements of Fin n. The image of the interval Ico(i, j) under castSucc equals Ico(i.castSucc, j.castSucc) in Fin(n+1).
Русский
Пусть i и j ∈ Fin n. Образ интервала Ico(i, j) под castSucc равен Ico(i.castSucc, j.castSucc) в Fin(n+1).
LaTeX
$$$\operatorname{Set.image}(\mathrm{Fin.castSucc}, \mathrm{Set.Ico}(i, j)) = \mathrm{Set.Ico}(i.castSucc, j.castSucc)$$$
Lean4
@[simp]
theorem image_castSucc_Ico (i j : Fin n) : castSucc '' Ico i j = Ico i.castSucc j.castSucc :=
image_castAdd_Ico ..