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 arrays 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):

\label? – Werner Feb 24 '12 at 17:17