What is the right way to punctuate a sequence of steps that lead to a solution?
For example, consider this 3-step solution that solves the equation $ (x^2 - 4) = 0 $.
\begin{align*} x^2 - 4 & = 0 \\ (x + 2)(x - 2) & = 0 \\ x & \in \{2, -2\}. \\ \end{align*}
Is the manner in which the above steps are written correct or does it need to be punctuated more appropriately?
What bothers me in the above example is that the above steps do not read like a complete English sentence, but rather sentence fragments arranged vertically.
Discussions in the following URLs seem to make it pretty clear that mathematical text should read like complete and grammatically correct English sentences:
- https://tex.stackexchange.com/questions/7542/for-formal-articles-should-a-displayed-equation-be-followed-by-a-punctuation-to
- When writing in math, do you use a comma or colon preceding an equation?
But my example above seems to violate this principle. Consider this, would the following form be a better style?
\begin{align*} x^2 - 4 = 0 & \implies (x + 2)(x - 2) = 0 \\ & \implies x \in \{2, -2\}. \end{align*}
What is the correct and popular way of writing such mathematical steps?