[step:Show every parallel reduct reduces to the complete development]We prove that if $r \Rightarrow s$, then $s \Rightarrow r^\star$, by induction on the derivation of $r \Rightarrow s$.
For the variable rule, $r=s=x$ and $x^\star=x$, so $s \Rightarrow r^\star$ is $x \Rightarrow x$.
For abstraction, write $r=\lambda x.a$ and $s=\lambda x.a'$ with $a \Rightarrow a'$. By induction, $a' \Rightarrow a^\star$. Hence
\begin{align*}
\lambda x.a' \Rightarrow \lambda x.a^\star = (\lambda x.a)^\star.
\end{align*}
For application, write $r=a\,b$ and $s=a'\,b'$ with $a \Rightarrow a'$ and $b \Rightarrow b'$. By induction,
\begin{align*}
a' \Rightarrow a^\star
\end{align*}
and
\begin{align*}
b' \Rightarrow b^\star.
\end{align*}
If $a$ is not an abstraction, the application rule gives
\begin{align*}
a'\,b' \Rightarrow a^\star\,b^\star = (a\,b)^\star.
\end{align*}
If $a=\lambda x.c$, then the parallel beta rule gives
\begin{align*}
a'\,b' \Rightarrow c^\star[b^\star/x] = ((\lambda x.c)\,b)^\star,
\end{align*}
because $a' \Rightarrow \lambda x.c^\star$ follows from the abstraction case of the induction.
For the parallel beta rule, write $r=(\lambda x.a)\,b$ and $s=a'[b'/x]$, with $a \Rightarrow a'$ and $b \Rightarrow b'$. By induction,
\begin{align*}
a' \Rightarrow a^\star
\end{align*}
and
\begin{align*}
b' \Rightarrow b^\star.
\end{align*}
By substitution compatibility,
\begin{align*}
a'[b'/x] \Rightarrow a^\star[b^\star/x].
\end{align*}
Since $((\lambda x.a)\,b)^\star=a^\star[b^\star/x]$, this proves $s \Rightarrow r^\star$.[/step]