What 2 × 2 matrix M satisfies M ∗ [x, y]=[y, x] for all vectors [x, y]?

1.6k Views Asked by At

What 2 × 2 matrix M satisfies M ∗ [x, y]=[y, x] for all vectors [x, y]?

Could someone explain to me, step by step, what I should do here? I have an exam but I am stuck with this one. I am a newbie, but I like it to be honest, although the teachers explanation are way too complex for me at the moment.

I would appreciate a step by step approach, because that's what I am missing at the moment.

4

There are 4 best solutions below

6
On BEST ANSWER

You're looking for a $2 \times 2$ matrix so that

$$\begin{pmatrix} a & b \\ c & d \end{pmatrix} \begin{pmatrix} x \\ y \end{pmatrix} = \begin{pmatrix} y \\ x \end{pmatrix}$$

You could start by seeing what happens when this matrix acts on the basis vectors of $\mathbb{R}^2$, $\begin{pmatrix} 1 \\ 0 \end{pmatrix}$ and $\begin{pmatrix} 0 \\ 1 \end{pmatrix}$.

$$\begin{pmatrix} a & b \\ c & d \end{pmatrix} \begin{pmatrix} 1 \\ 0 \end{pmatrix} = \begin{pmatrix} a \\ c \end{pmatrix}$$

$$\begin{pmatrix} a & b \\ c & d \end{pmatrix} \begin{pmatrix} 0 \\ 1 \end{pmatrix} = \begin{pmatrix} b \\ d \end{pmatrix}$$

2
On

$$M = \begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix} $$ This is because for any $x = \begin{pmatrix} x_1 \\ x_2 \end{pmatrix} \in \mathbb{R}^{2}$ we have that $$Mx = \begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix} \begin{pmatrix} x_1 \\ x_2 \end{pmatrix} = \begin{pmatrix} x_2 \\ x_1 \end{pmatrix}$$

2
On

For any ($2 \times 2$) matrix $M$ you can see from the definition of matrix multiplication that $M \begin{pmatrix} 1 \\ 0 \end{pmatrix}$ equals the first column of $M$. Also, $M \begin{pmatrix} 0 \\ 1 \end{pmatrix}$ equals the second column of $M$. But the requirements say what these should equal, namely the vector with interchanged coordinates. So we get

$$ M = \begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix}$$

1
On

The assignment is probably $M \times \begin{pmatrix} x\\y\end{pmatrix} = \begin{pmatrix} y\\x\end{pmatrix}$. (Note, that vectors must be column, otherwise the multiplivation does not make sense.)

A general $2\times 2$ matrix matrix is of the form $\begin{pmatrix} a&b\\c&d\end{pmatrix}$, so the LHS of the equation is $M \times \begin{pmatrix} x\\y\end{pmatrix} = \begin{pmatrix} a&b\\c&d\end{pmatrix} \times \begin{pmatrix} x\\y\end{pmatrix} = \begin{pmatrix} ax+by\\cx+dy\end{pmatrix} $ and comparing this to the RHS you get system of 2 equations and 4 parameters $$ax + by = y \, \&\, cx+ dy = x.$$

Now, the equation has to work for column vectors $\begin{pmatrix} 0\\1\end{pmatrix}$ and $\begin{pmatrix} 1\\0\end{pmatrix}$, which gives the result $a=d=0$ and $b=c=1$.