- #1
rputra
- 35
- 0
I am working on a two-by-two real matrix $M$, with a linear mapping $F$ that returns the sum of $M$ and its transpose. I need to find out the matrix that is associated with the mapping. To the best of my understanding:
$$
M + M^T =
\begin{bmatrix}
r &s\\
t &u
\end{bmatrix}
+
\begin{bmatrix}
r &t\\
s &u
\end{bmatrix}
=
\begin{bmatrix}
2r &s+t\\
s+t &2u
\end{bmatrix}
,$$
therefore I need to find $A$ of two-by-two of real entries, such that for any $M,$
$$
F(M) = AM =
\begin{bmatrix}
2r &s+t\\
s+t &2u
\end{bmatrix}
.$$
But I am lost on finding the $A,$ any hints or help would be very much appreciated. Thank you in advance for your time and effort.
$$
M + M^T =
\begin{bmatrix}
r &s\\
t &u
\end{bmatrix}
+
\begin{bmatrix}
r &t\\
s &u
\end{bmatrix}
=
\begin{bmatrix}
2r &s+t\\
s+t &2u
\end{bmatrix}
,$$
therefore I need to find $A$ of two-by-two of real entries, such that for any $M,$
$$
F(M) = AM =
\begin{bmatrix}
2r &s+t\\
s+t &2u
\end{bmatrix}
.$$
But I am lost on finding the $A,$ any hints or help would be very much appreciated. Thank you in advance for your time and effort.