[step:Record the quantifier movement equivalences]
Let $A$ and $B$ be $\mathcal{L}$-formulas, let $x$ be a variable not occurring free in $B$, and let $\star \in \{\land,\lor\}$. Then
\begin{align*}
(\forall x\,A)\star B &\equiv \forall x\,(A\star B),\\
(\exists x\,A)\star B &\equiv \exists x\,(A\star B),\\
B\star(\forall x\,A) &\equiv \forall x\,(B\star A),\\
B\star(\exists x\,A) &\equiv \exists x\,(B\star A).
\end{align*}
We verify one representative case; the others follow from the same semantic calculation using the truth tables for $\land$ and $\lor$. Suppose $\star=\land$ and consider $(\forall x\,A)\land B$. For any $\mathcal{L}$-structure $\mathcal{M}$ and assignment $s$,
\begin{align*}
\mathcal{M},s \models (\forall x\,A)\land B
&\iff \mathcal{M},s \models \forall x\,A \text{ and } \mathcal{M},s \models B \\
&\iff \text{for every } a \in M,\ \mathcal{M},s[x\mapsto a]\models A,\text{ and } \mathcal{M},s\models B.
\end{align*}
Because $x$ is not free in $B$, the satisfaction of $B$ is unchanged when only the value assigned to $x$ is altered. Hence
\begin{align*}
\mathcal{M},s \models (\forall x\,A)\land B
&\iff \text{for every } a \in M,\ \mathcal{M},s[x\mapsto a]\models A\land B \\
&\iff \mathcal{M},s \models \forall x\,(A\land B).
\end{align*}
Negation dualizes quantifiers:
\begin{align*}
\neg\forall x\,A &\equiv \exists x\,\neg A,\\
\neg\exists x\,A &\equiv \forall x\,\neg A.
\end{align*}
Indeed, for every $\mathcal{M}$ and $s$,
\begin{align*}
\mathcal{M},s \models \neg\forall x\,A
&\iff \text{not for every } a\in M,\ \mathcal{M},s[x\mapsto a]\models A \\
&\iff \text{there exists } a\in M \text{ such that } \mathcal{M},s[x\mapsto a]\models \neg A \\
&\iff \mathcal{M},s \models \exists x\,\neg A,
\end{align*}
and the existential case is analogous.
[/step]