The transpose of a matrix is obtained by interchanging its rows and columns. Although the operation is simple, it interacts beautifully with addition and multiplication, and it singles out two structurally important families: symmetric matrices, where AT=A, and skew-symmetric matrices, where AT=−A. Every square matrix can be uniquely decomposed into a symmetric and a skew-symmetric part , a fact you will use throughout the chapter.
Definition
If A=(aij)m×n, its transposeAT (also written A′) is the n×m matrix
(AT)ij=aji.
So row i of A becomes column i of AT.
Example
A=(142536)⇒AT=123456.
Algebraic properties of transpose
(AT)T=A.
(A+B)T=AT+BT.
(λA)T=λAT.
(AB)T=BTAT.
The reversal in (4) is the most-tested fact. It mirrors the inverse formula (AB)−1=B−1A−1.
Proof of (4). Both sides are n×m matrices (if A is m×p and B is p×n). The (i,j) entry of (AB)T is the (j,i) entry of AB, which is ∑kajkbki. The (i,j) entry of BTAT is ∑k(BT)ik(AT)kj=∑kbkiajk. Same expression. ■
Symmetric matrices
A square matrix A is symmetric if AT=A, i.e., aij=aji for all i,j. Symmetric matrices are precisely those that look the same when reflected across the main diagonal.
Examples: any diagonal matrix, (1223), the identity.
The set of n×n symmetric matrices is closed under addition and scalar multiplication, but not under multiplication: A,B symmetric does not imply AB symmetric.
Skew-symmetric matrices
A square matrix A is skew-symmetric if AT=−A, i.e., aij=−aji. Setting i=j shows aii=0: all diagonal entries are zero.
Examples: (0−220), 0−a−ba0−cbc0.
The decomposition theorem
Theorem. Every square matrix A can be written uniquely as A=P+Q, where P is symmetric and Q is skew-symmetric.
Proof. Set P=21(A+AT) and Q=21(A−AT). Then A=P+Q. Check PT=21(AT+A)=P, so P symmetric. Check QT=21(AT−A)=−Q, so Q skew-symmetric.
Uniqueness: suppose A=P1+Q1=P2+Q2. Then P1−P2=Q2−Q1. The left side is symmetric, the right side skew-symmetric. The only matrix that is both is the zero matrix. So P1=P2,Q1=Q2. ■