English
The contSupp for Cont'.cons₁ fs k equals the union of the long move-trace and codeSupp fs along with contSupp fs on the tail, i.e., contSupp (Cont'.cons₁ fs k) = trace ∪ codeSupp fs (Cont'.cons₂ k).
Русский
Cont'.cons₁ fs k имеет contSupp, равный объединению длинного трека перемещения и codeSupp fs (Cont'.cons₂ k) вместе с contSupp fs (tail).
LaTeX
$$$\forall (fs:Code)(k:Cont'),\\; contSupp (Cont'.cons₁ fs k) =\\; trStmts₁( move\_2(\dots) ) ∪ codeSupp fs (Cont'.cons₂ k)$$$
Lean4
@[simp]
theorem codeSupp_tail (k) : codeSupp Code.tail k = trStmts₁ (trNormal Code.tail k) ∪ contSupp k :=
rfl