Bolzano82:
If you simply want to add an equation number to your tabular, it suffices a minimal change in your original code (see below). If you want to put the equation number at a specific row (say, the last one), then the align environment provides a simple solution. If you want a vertically centered equation number, then combine equation with split or aligned. See these alternatives here:
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{tabular}{rcl}
$a$
&$=$& $b$\\
&$=$& $c$\\
&$=$& $d$
\end{tabular}
\end{equation}
\begin{align}
a&= b \notag \\
&= c \notag \\
&= d
\end{align}
\begin{equation}
\begin{aligned}
a&= b \\
&= c \\
&= d
\end{aligned}
\end{equation}
\begin{equation}
\begin{split}
a&= b \\
&= c \\
&= d
\end{split}
\end{equation}
\end{document}
In my opinion, the AMS environments (align, aligned, split...) are much more better that array and, of course, tabular. For the purpose of comparison, just check the following simple example:
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{array}[b]{r@{\;=\;}l}
\int_a^b f(x)\, dx
& \left[F(x)\right]_{x=a}^{x=b} \\
& F(b)-F(a)
\end{array}
\end{equation}
\begin{align}
\int_a^b f(x)\, dx
& = \left[F(x)\right]_{x=a}^{x=b} \notag \\
& = F(b)-F(a)
\end{align}
\begin{equation}
\begin{aligned}
\int_a^b f(x)\, dx
& = \left[F(x)\right]_{x=a}^{x=b} \\
& = F(b)-F(a)
\end{aligned}
\end{equation}
\end{document}