How can I create a vector like this one?

It is similar to this question, but with additional columns.
How can I create a vector like this one?

It is similar to this question, but with additional columns.
Quick and dirty approach with pmatrix environment
The individual columns are separated by a & character, the next linebreak is achieved with \\
If one replaces pmatrix with bmatrix, the [ ] version is obtained
\documentclass[12pt]{article}
\usepackage{mathtools}
\begin{document}
\begin{equation*}
A = \begin{pmatrix}
3 & 5 \\
5 & 2 \\
2 & 1 \\
1 & 4 \\
7 & 9
\end{pmatrix}
\end{equation*}
\end{document}

amsmath there's a description of \cr? Possibly I didn't read them carefully enough. Out of joke: *DON'T* use \cr in LaTeX documents.
– egreg
Oct 08 '14 at 17:55
\cr way ;-)
–
Oct 08 '14 at 18:01
\matrix{1 & 2\cr 3 & 4\cr} using the LaTeX command inherited from Plain, that's supplanted by matrix of amsmath (and the other environments adding parentheses). See http://tex.stackexchange.com/questions/57658/misplaced-alignment-tab-character-when-building-a-matrix
– egreg
Oct 08 '14 at 18:04