I can align different lines of the same equation in Latex with this code:
\begin{equation}
\begin{align}
\frac{\partial a}{\partial b}(x)&=\frac{\partial a}{\partial c}\times \frac{\partial c}{\partial b} = \\
&= \frac{\partial a}{\partial c}(x)\times \frac{\partial c}{\partial b}
\end{align}
\end{equation}

but I couldn't find any solution for aligning different numbered equations like these:
\begin{equation}
q_{new} = q \times q(\omega + \Omega) \Delta t
\end{equation}
\begin{equation}
v_{new} = v + V
\end{equation}
\begin{equation}
\omega_{new} = \omega + \Omega
\end{equation}
I get this output, which is not aligned by equal sign:

Which is the right way to proceed?
EDIT
The solution was using
\begin{align}
\end{align}
Numeration is managed at the same time as equation environment so I can mix both, I didn't know that. Simpler and cleaner.
