StepWorking
01Given
A,B,C are 3×3 matrices with AT=A, BT=−B, and CT=−C.
02Goal
Determine the truth values of (S1): M1=A13B26−B26A13 is symmetric, and (S2): M2=A26C13−C13A26 is symmetric.
03Approach
Apply the transpose operation using (X−Y)T=XT−YT, (XY)T=YTXT, and (Xk)T=(XT)k. If MT=M, it is symmetric; if MT=−M, it is skew-symmetric.
04Execute
Evaluate M1T:
M1T=(A13B26−B26A13)T=(B26)T(A13)T−(A13)T(B26)T.
Since (BT)26=(−B)26=B26 and (AT)13=A13, we have:
M1T=B26A13−A13B26=−(A13B26−B26A13)=−M1.
Thus, M1 is skew-symmetric, so S1 is false.
05Execute
Evaluate M2T:
M2T=(A26C13−C13A26)T=(C13)T(A26)T−(A26)T(C13)T.
Since (CT)13=(−C)13=−C13 and (AT)26=A26, we have:
M2T=(−C13)A26−A26(−C13)=−C13A26+A26C13=A26C13−C13A26=M2.
Thus, M2 is symmetric, so S2 is true.
✓Verify
Observe the structure: for any symmetric X and skew-symmetric Y, [X,Y]=XY−YX satisfies [X,Y]T=YTXT−XTYT=(−Y)X−X(−Y)=−(YX−XY)=XY−YX=[X,Y] (symmetric). Here, B26 is symmetric, so [A13,B26] is the commutator of two symmetric matrices, which is always skew-symmetric. In contrast, C13 is skew-symmetric while A26 is symmetric, so [A26,C13] is the commutator of a symmetric and a skew-symmetric matrix, which is always symmetric. This confirms S1 is false and S2 is true.