Express Matrix as Sum of Symmetric and Skew-Symmetric Matrices
Given:
\[ A = \begin{bmatrix} 3 & -4 \\ 1 & -1 \end{bmatrix} \]
Formula Used:
\[ \text{Symmetric part } (S) = \frac{1}{2}(A + A^T), \quad \text{Skew-symmetric part } (K) = \frac{1}{2}(A – A^T) \]
Step 1: Find AT
\[ A^T = \begin{bmatrix} 3 & 1 \\ -4 & -1 \end{bmatrix} \]
Step 2: Find Symmetric Matrix S
\[ A + A^T = \begin{bmatrix} 6 & -3 \\ -3 & -2 \end{bmatrix} \]
\[ S = \begin{bmatrix} 3 & -\tfrac{3}{2} \\ -\tfrac{3}{2} & -1 \end{bmatrix} \]
Step 3: Find Skew-Symmetric Matrix K
\[ A – A^T = \begin{bmatrix} 0 & -5 \\ 5 & 0 \end{bmatrix} \]
\[ K = \begin{bmatrix} 0 & -\tfrac{5}{2} \\ \tfrac{5}{2} & 0 \end{bmatrix} \]
Final Result:
\[ A = S + K \]
Thus, the matrix is expressed as the sum of a symmetric and a skew-symmetric matrix.