This might be more of a typography question. Say have two equations, and I put them in an aligned environment.
\documentclass{article}
\usepackage{amsmath}
\begin{document}
The following equations are true:
\begin{align}
a^2 + b^2 & = c^2 \
x^2 + y^2 & = z^2.
\end{align}
\end{document}
Do I need to add a semicolon or a comma after c^2? I know that in the case of a cases environment it is recommended to do so.

