2
votes

I have a group of equations and I'd like to show under some transformation, the system looks like something else. So I'd like to group the AMS Align environment inside a pair of brackets such that the align environment is vertically centered on the line and I can do something like:

alt text

(That uses the matrix environment, so the alignment is centered.)

I am using LyX.

2
Then why not use matrix like the example?Steve Tjoa
Actually, that is the array environment in LyX. To insert a matrix in math mode, type \matrix or one of the AMS variants. (like \bmatrix) but I still do not see how to set the column alignment.Gus

2 Answers

2
votes
\begin{equation}
  \left\{
    \begin{matrix}
      x = &  y \\
      y = & -x-\mu(x^4-1)y
    \end{matrix}
  \right\} 
  \Rightarrow  
  \left\{ 
    \begin{matrix}
      w = & -x \\
      x = & w-\mu F(x)
    \end{matrix}
\right\}
\end{equation}

Produces something closely to the thing shown above.

1
votes

To have the right spacing appropriate for equations, you can use the aligned environment (instead of matrix):

\begin{equation}
  \left\{
    \begin{aligned}
      x & =  y \\
      y & = -x-\mu(x^4-1)y
    \end{matrix}
  \right\} 
  \Rightarrow  
  \left\{ 
    \begin{aligned}
      w & = -x \\
      x & = w-\mu F(x)
    \end{aligned}
  \right\}
\end{equation}

I have no idea how to input this in LyX.