\documentclass{amsart}
\usepackage{amsmath}%
\usepackage{amsfonts}%
\usepackage{amssymb}%
\begin{document}
\begin{align*}
\tau_A
\begin{pmatrix}
x \\
y
\end{pmatrix}
=
\begin{pmatrix}
\frac{4+5x+6y}{1+2x+3y} \\
\frac{7+8x+8y}{1+2x+3y}
\end{pmatrix}
\end{align*}
\end{document}
This code has the following output:

Is there anyway to separate the elements in the right hand column vector in order to make the fractions clearer to distinguish?


\renewcommand*{\arraystretch}{1.5}before the matrix http://tex.stackexchange.com/questions/14071/how-can-i-increase-the-line-spacing-in-a-matrix – Konne Sep 09 '15 at 12:21