How can I number a set of equations separately from another set?
For example, if we have a file with this contents:
\documentclass{report}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\label{Equation:1}
0+0=0
\end{equation}
\begin{equation}
\label{Result:1}
1*1=1
\end{equation}
\begin{equation}
\label{Equation:2}
0+1=1
\end{equation}
\begin{equation}
\label{Result:2}
1*2=2
\end{equation}
Equation \ref{Equation:1} and Equation \ref{Equation:2}.
Result \ref{Result:1} and Result \ref{Result:2}.
\end{document}
How to number the Equations separately from the Results?
In this example the output is:
Equation 1 and Equation 3.Result 2 and Result 4.
but I would like:
Equation 1 and Equation 2.Result 1 and Result 2.
How can I do this?
What's the best way to do this?