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}



align: trya &= (a_1,a_2) \\and similarly for the other lines; then& \mathrel{\:\vdots} \\will be aligned under the equals signs. – egreg Apr 18 '12 at 22:59\begin{gather*} a = (a_1, a_2) \ b = (b_1, b_2) \ \vdots \ z = (z_1, z_2) \end{gather*}– David Carlisle Apr 18 '12 at 23:01