Is there an easy way to get an accurate count of the number of equations that have identifiers? If they are all auto generated than \arabic{equation} does the job, but equations can also have manually specified identifiers using \tag.
One solution would be to simply redefine \tag to increment some other counter and then sum that counter and \arabic{equation} at the end. However, it turns out that this is not quite as simple as my failed attempt below shows.
The MWE below yields an incorrect count of one when it should be two. Also, not sure if there any other common way to add identifiers to equations.
Code
\documentclass{article}
\usepackage{amsmath}
\newcounter{taggedEquations}
\let\OldTag\tag
\renewcommand*{\tag}[1]{\stepcounter{taggedEquations}\OldTag{#1}}
\begin{document}
Auto numbered
\begin{align}
y &= 2x
\end{align}
Manually labelled
\begin{align}
y &= x \tag{x}\label{eq:foo}
\end{align}
\addtocounter{taggedEquations}{\arabic{equation}}
Numbered Equations = \arabic{taggedEquations}
\end{document}


\labels. Or do you mean\labels?. – Steven B. Segletes Jan 03 '17 at 13:54\labelas you can "number" an equation but never refer to it (so don't need a\label). Does that make sense? Have edited the question to not use "label". – Peter Grill Jan 03 '17 at 13:56align. Try\arabic{taggedEquations}after your last equation. It will print zero. – Ruben Jan 03 '17 at 14:12