I have a proof of the form
Theorem. $A \iff \forall x D$.
Proof. \begin{align} A &\iff \forall x B \\ & \iff \forall x C \\ & \iff \dots \\ & \iff \forall x D \end{align} QED.
Note that $A$, $B$, $C$, etc are simply placeholders for more complex expressions/full sentences occuring in an real proof. What is the best way to write such a proof as English opposed to symbolically? This is my first attempt:
Proof. $A$ is true if and only if for all $x$ \begin{align} B, && \text{(by definition 1)} \end{align} if and only if for all $x$ \begin{align} C \end{align} if and only if for all $x$ \begin{align} \dots \end{align} if and only if for all $x$ \begin{align} D. && \text{(by lemma 3)} \end{align} QED.
The proof feels too verbose and monotonous. I also find it tiresome to repeat the clause "if and ony if for all $x$" for every step.
I considered using the following style:
Proof. $A$ is true if and only if for all $x$ \begin{align} & B, && \text{(by definition 1)} \\ &\text{if and only if}\quad C, \\ &\text{if and only if}\quad \dots \\ &\text{if and only if}\quad D. && \text{(by lemma 3)} \end{align} QED.
But I'm not sure this says the same thing, because $\textrm{false} \iff \textrm{false}$.
Is there any way to streamline my proof?
(i) $A \iff \forall x B \iff \forall x C$
and
(ii) $A \iff \forall x (B \iff C)$
Isn't it the case that:
sentence (i) is false if $A$ is true and both $\forall x B$ and $\forall x C$ are false.
sentence (ii) is true if $A$ is true and both $\forall x B$ and $\forall x C$ are false.
– MyComputer May 06 '21 at 16:12