Please help me with my Latex code. I've been trying to get this running but I don't understand the error:
_Runaway argument?
h \in ZWEI-PAAR \iff \exists k1,k2,k3,k4 \in h: (k1\neq k2 \\ \wedge \ETC.
Paragraph ended before \split was complete.
<to be read again>
\par
l.63_
Here's the code snippet.
\begin{equation*}
\begin{split}
h \in ZWEI-PAAR \iff \exists k1,k2,k3,k4 \in h: (k1\neq k2 \\
\wedge k1 \neq k3
\wedge k3 \neq k4
\wedge wert(k1)= wert(k2) \\
\wedge wert(k3) = wert(k4) \\
\wedge \nexists k \in h \backslash \{k1,k2,k3,k4,k5\}:
wert(k) = wert(k1)
\wedge wert(k) = wert(k3) ) \\
\end{split}
\end{equation*}
Thanks in advance.
EDIT: I fixed the new lines. However, now I got a new problem:
*Undefined control sequence.
<argument> ...t {wert}(k_{4}) \\ {}\land \nexists
k \in h \setminus \{\,k_{1...
l.64 \end{split}*
Translated code snippet:
\documentclass{article}
\usepackage{amsmath}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\begin{document}
\subsection{b)}
\begin{equation*}
\begin{split}
h \in \mathit{TWO} - \mathit{PAIR} \iff \exists k_{1}, k_{2},
k_{3}, k_{4} \in h : (k_{1} \neq k_{2} \\
{}\land k_{1} \neq k_{3} \land k_{3} \neq k_{4}
\land \mathit{value}(k_{1}) = \mathit{value}(k_{2}) \\
{}\land \mathit{value}(k_{3}) = \mathit{value}(k_{4}) \\
{}\land \nexists k \in h \setminus \{\,k_{1}, k_{2}, k_{3}, k_{4},
k_{5}\,\} : \mathit{value}(k) =
\mathit{value}(k_{1})
\land \mathit{value}(k) = \mathit{value}(k_{3}))
\end{split}
\end{equation*}
\subsection
\end{document}


splitenvironment. – Zarko Oct 29 '16 at 14:49\nexistsis undefined. This is because\nexistsis provided byamssymband you have not loaded the package – Au101 Oct 29 '16 at 16:00