모든 명령문 S와 상태 s에 대해,
만약
<S, s> → s'(big-step)이 성립하면,
<S, s> ⇒* s'(small-step의 multi-step closure)도 성립한다.
이걸 Structural Induction on S로 증명하려고 시도하되, **S = while b do S1**일 때 실패하게 될 거야.
귀납의 기준: S의 구조
S = skip<skip, s> → s (big-step)<skip, s> ⇒* s (0단계)S = S1; S2<S1, s> → s'' → <S1, s> ⇒* s''<S2, s''> → s' → <S2, s''> ⇒* s'<S1, s> → s'', <S2, s''> → s' ⟹ <S1; S2, s> → s'<S1; S2, s> ⇒* <S2, s''> ⇒* s'S = while b do S1big-step 규칙: