From a mathematical viewpoint, I don't find convenient to number each term of a chain of relations, but the chain as a whole. So, in this case, I would suppress numbering, using align* instead of align, or I would assign a unique number, by means of equation and split:
Code: Select all
\begin{equation}
\begin{split}
\Gamma(x) &\equiv \lim_{n\to\infty}\prod_{v=0}^{n-1}\frac{n!\,n^{x-1}}{x+v} \\
&=\lim_{n\to\infty} \frac{n!\,n^{x-1}}{x(x + 1)\cdots(x+n-1)} \\
&=\int_{0}^{\infty} e^{-t}t^{x-1}\,dt
\end{split}
\end{equation}
Let us also remark the following points:
- In your code, there is a missprint in the denominator of the first fraction, which should be x+v instead of x=v.
- Ellipsis in binary relations or operations (sum, product, < or >...) is represented by centered dots, obtained with \cdots. For example, write $a+\cdots+z$, but not $a+\ldots+z$ nor $a+...+z$.
- You can use \to instead of \rightarrow, which requires fewer keystrokes.
- The \displaystyle command in your code is superfluous.
- It is convenient to add small spaces (for example, with \,) for fine tuning of some expressions.
- Formulas should be punctuated as ordinary text. At the end, after dt, there should surely be a comma or a point, depending on the text which follows the math expression.
Perhaps you may like the := symbol instead of \equiv to denote definitions. If this were the case, you may get that symbol through the txfonts/pxfonts. Or simply through the following code:
Code: Select all
\newcommand{\coloneqq}{\mathrel{\mathop:}=}
\begin{equation}
\begin{split}
\Gamma(x) \coloneqq{}& \lim_{n\to\infty}\prod_{v=0}^{n-1}\frac{n!\,n^{x-1}}{x+v} \\
={}& \lim_{n\to\infty} \frac{n!\,n^{x-1}}{x(x + 1)\cdots(x + n - 1) }\\
={}&\int_{0}^{\infty} e^{-t}t^{x-1}\,dt
\end{split}
\end{equation}
I've rewritten the formula to show that, if \coloneqq is used, I find better to align
after the symbols (remark that \coloneqq and = have different lenghts). The pairs of braces are required (if they where absent, LaTeX would not interpret = and \coloneqq as binary relations, leading to improper spacing after those symbols.