I'm pretty new to Latex and I am working with a bunch of formulae. I'd like to give each of them different numbering and this is what I've got:
\begin{align}
\begin{split}
&|\Theta_P| = {|P| \choose 2} \land P \not= \emptyset
\end{split} \\
\begin{split}
& \forall D_n \in \Theta_P \\
& \qquad \left(d_n,\delta_n\right) := D_n \\
& \qquad\qquad |d_n| =2\\
& \qquad\qquad d_n\in \mathcal{P}(P)\\
& \qquad\qquad |\delta_n| = 2 \\
& \qquad\qquad \bigcup \delta_n = P \setminus d_n \\
& \qquad\qquad \bigcap \delta_n = \emptyset \\
\end{split} \\
\begin{split}
& \forall D_n, D_m \in \Theta_P \\
& \qquad \left(d_n,\delta_n\right):= D_n \\
& \qquad \left(d_m,\delta_m\right):= D_m \\
& \qquad\qquad d_n=d_m \iff D_n=D_m \\
\end{split}
\end{align}
It is working good.
However, after some read-up I figured perhaps I should be using equation for my formulae instead of align. But when I changed align to equation above I run into this error:
Missing number, treated as zero
and it mentioned something about \relax \end{split} \\.
I tried removing the \\ between split blocks but it would make the 3 formulae aligned horizontally, which is not what I want.
Why am I running into this error and what should I do to use equation in this scenario?



equationI think.gathermight be more appropriate thanalignthough, you're not aligning the three splits. – Torbjørn T. Aug 29 '15 at 19:43equationsmost of the times since it helps to squeeze the symbols together. – Archy Will He 何魏奇 Aug 29 '15 at 19:48splitis redundant; you shouldn't have\\before\end{split}. Also{|P|\choose 2}should be\binom{|P|}{2}. Note thatequationis wrong andalignis right. – egreg Aug 29 '15 at 20:18