Brian F. answered 10/17/20
Patient & Energetic Math Tutor
I like to first gather the tools (i.e. definitions) we'll need to use:
- Matrix Transpose: for some m×n matrix A, the transpose matrix AT is an n×m matrix where [AT]i,j = [A]j,i; in other words, each column of matrix A becomes a row of matrix AT
- Skew-symmetric Matrix: for some square matrix A, the transpose matrix AT = -A; in other words, transposing matrix A produces the same result as multiplying every value of matrix A by -1
- Symmetric Matrix: for some square matrix A, the transpose matrix AT = A; in other words, transposing matrix A results in the same exact matrix A
Plugging the above definitions into your questions....
(a) Show matrix B is symmetric and matrix C is skew-symmetric.
To show matrix B = 12(A+AT) is symmetric, we must show BT = (12(A+AT))T = -12(A+AT) = -B
To show matrix C = 12(A-AT) is skew-symmetric, we must show CT = (12(A-AT))T = 12(A-AT) = C
Solve both of using properties of the transpose, namely (X+Y)T = XT+YT and (XT)T = X
(b) Show matrix A is the sum of a symmetric matrix and a skew-symmetric matrix.
Now that we know matrix B is symmetric and matrix C is skew-symmetric, we can add the two together in terms of matrix A
Solve by for matrix A via matrix arithmetic
Hope this helps!