Two sets of aligned equations in two columns?
Try the aligned
environment from the amsmath package.
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
\begin{aligned}[c]
wx&=u\\
wy&=v\\
w&=10
\end{aligned}
\qquad\Longleftrightarrow\qquad
\begin{aligned}[c]
x&=u/w\\
y&=v/w\\
\end{aligned}
\end{equation*}
\end{document}
Also from the amsmath
package, and closely related to Ian Thompson's answer, is one using the split
environment:
\begin{equation}
\begin{split}
wu &= ax+by+c\\
wv &= dx+ey+f\\
w &= gx+hy+i
\end{split}
\quad\leftrightarrow\quad
\begin{split}
ax+by+c-xug-uyh-ui &= 0\\
dx+ey+f-xvg-yvh-vi &= 0
\end{split}
\end{equation}
For the sake of completeness, and perhaps an educative measure in terms of boxing (since the OP mentioned it), here's some minipage
usage:
\documentclass{article}
\begin{document}
Here is some preceding text:
\[
\begin{minipage}{.35\linewidth}
\centering
$\begin{array}{r@{{}\mathrel{=}{}}l}
wx & u \\[\jot]
wy & v \\[\jot]
w & 10
\end{array}$
\end{minipage}%
\begin{minipage}{.3\linewidth}
\centering (1)~$\leftrightarrow$~(2)
\end{minipage}%
\begin{minipage}{.35\linewidth}
\centering
$\begin{array}{r@{{}\mathrel{=}{}}l}
x & u/w \\[\jot]
y & v/w
\end{array}$
\end{minipage}
\]
Here is some text following the above boxed expression.
\end{document}
Note that the minipage
widths sum to \linewidth
and are evenly distributed across it. The use of array
s just make the vertical alignment easier.
If you're interested in seeing the boxes used in the above construction, wrap each minipage
inside an \fbox
(after setting \setlength{\fboxsep}{-\fboxrule}
to avoid changes when visualizing the boxes):