Maybe what I want is sinful, but let me explain:
I use aligned* environments, because I usually don't need equation numbers. When I need one, I use \addtocounter{equation}{1}\tag{\theequation} from align* but show one equation number at the end.
Furthermore, I don't use the proof environment, but just set my own tombstones at the end of equations. In align* this works nicely with \tag*{\qedsymbol}.
Now I need one equation number for a whole set of equations, like in How to get only one vertically centered equation number in align environment with two equations, but still want my self-made tombstone. I like the split solution, but all solutions clash with either my tombstone or my equation numbering.
Here is an MWE (or rather not, since the tombstone is missing):
\documentclass{article}
\usepackage{amsmath}
\newcommand\numberthis{\addtocounter{equation}{1}\tag{\theequation}}
\def\tombstone{\tag*{\qedsymbol}}
\begin{document}
\begin{align*}
\begin{split}
T(n) = {} & 2T(n/2) + 3n/2 \\
{} & \vdots \\
= {} & 3n/2 \cdot \log_2n . %\tombstone
\end{split} \label{fftcost} \numberthis
\end{align*}
\end{document}
Can anybody tell me how to get one equation number for all equations and still have my tombstone?
