[Tex/LaTex] Centering in the \align* environment

alignamsmath

I'm using the \align* environment from the amsmath package. How can I center one of the lines inside the environment?

In the following example, I want to the \vdots to be centered, instead of awkwardly aligned with the b above it.

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}
& a = (a_1, a_2) \\
& b = (b_1, b_2) \\
& \vdots \\
& z = (z_1, z_2)
\end{align*}
\end{document}

Best Answer

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}
 a &= (a_1, a_2) \\
 b &= (b_1, b_2) \\
 &\phantom{b=\,} \vdots \\
 z &= (z_1, z_2)
\end{align*}
\end{document}

enter image description here