I would like to number a multi-line multi-column equation group with one number. If I use
\documentclass{scrartcl}
\usepackage{amsmath}
\begin{document}
\begin{align}
x&=1 & x&=2\\
y&=3 & y&=4
\end{align}
\end{document}
I get an equation number per row. When using the split environment
\documentclass{scrartcl}
\usepackage{amsmath}
\begin{document}
\begin{align}
\begin{split}
x&=1 & x&=2\\
y&=3 & y&=4
\end{split}
\end{align}
\end{document}
the groups are omitted and I have one number for four rows.
How can I number the first example with one number?
Edit:
I used the equation and aligned environments proposed by @daleif and got the following results in equation (3). Equation (1) and (2) are typeset by an align environment:

The align environment uses the whole width of the document. Is this possible with aligned, too?


alignedinsideequation. – Sigur Jan 13 '15 at 13:34splitinsidealign!!!!!!!!!!!!! – karlkoeller Jan 13 '15 at 13:46splitinsidealign? Though I tend to go forequationplusaligned– daleif Jan 13 '15 at 13:49splitin any case, see the example in my answer. – daleif Jan 13 '15 at 13:55alignis meant to be a standalone environment,splitandalignedare meant to be used insideequation– karlkoeller Jan 13 '15 at 13:56align, I use it quite often withinalign*, when soemthing is broken across lines within pairs of braces. – daleif Jan 13 '15 at 13:58alignor not. – daleif Jan 14 '15 at 10:25