The fourth is the reversal law — the transpose of a product reverses the order (like the inverse's socks-shoes rule). Orders force it: if A is m×n and B is n×p, then (AB)′ is p×m, and only B′A′=(p×n)(n×m) has that shape — A′B′ generally is not even defined.
Numerical check of the reversal law. For A=(1023), C=(2114):
AC=(43912)⟹(AC)′=(49312),C′A′=(2114)(1203)=(49312)
both agree ✓.
Common mistakes to avoid
Mistake 1 — (AB)′=A′B′. The order must reverse; the wrong version usually is not even conformable.
Mistake 2 — forgetting the order flip. The transpose of a 2×3 matrix is 3×2; entries do not just "reflect in place" unless the matrix is square.
Mistake 3 — transposing only part of an expression:(2A+3B)′=2A′+3B′ — the transpose distributes over the whole linear combination.
Symmetric and Skew-Symmetric Matrices
The two families
Definitions (square matrices only).A is symmetric if A′=A (mirror symmetry across the diagonal: aij=aji). A is skew-symmetric if A′=−A (i.e. aij=−aji).
Diagonal entries of a skew-symmetric matrix vanish: putting j=i in aij=−aji gives aii=−aii, so aii=0 — every skew-symmetric matrix has a zero diagonal.
Two building lemmas
For any square matrix A:
A+A′ is always symmetric,A−A′ is always skew-symmetric
Proof of the first:(A+A′)′=A′+(A′)′=A′+A=A+A′ ✓ — it equals its own transpose. The second is identical with a sign: (A−A′)′=A′−A=−(A−A′).
The decomposition theorem
Theorem. Every square matrix is expressible, uniquely, as the sum of a symmetric and a skew-symmetric matrix:
A=Psymmetric21(A+A′)+Qskew-symmetric21(A−A′)
Worked decomposition.B=2−11−23−2−44−3:
Step 1 — compute B+B′ and halve:P=214−3−3−362−32−6=2−23−23−2331−231−3(symmetric)
Step 2 — compute B−B′ and halve:Q=21015−10−6−560=02125−210−3−2530(skew, zero diagonal)
Step 3 — check:P+Q=B ✓.
Products of symmetric matrices (the subtle facts)
For symmetric A and B (same order):
AB is symmetric⟺AB=BAAB+BA is always symmetric,AB−BA is always skew-symmetric
Why the first:(AB)′=B′A′=BA, so (AB)′=AB exactly when BA=AB. The other two follow the same one-line transpose computation. These three statements are the section's favourite MCQs.
Common mistakes to avoid
Mistake 1 — applying 'symmetric' to non-square matrices.A′=A forces the order to be square before anything else.
Mistake 2 — forgetting the 21's in the decomposition — A+A′ alone is symmetric but does not sum with A−A′ to A.
Mistake 3 — assuming a product of symmetric matrices is symmetric. Only when they commute.
Mistake 4 — nonzero diagonal in a claimed skew-symmetric matrix — instant contradiction.
Solved Examples
Example 1 — Transposing and combining
For A=3−10421 (order 3×2), write A′ and state its order.
Step 1 — rows become columns:A′=(34−1201)
Answer:A′ has order 2×3 — the order always flips.
Example 2 — Verifying the reversal law
For A=(1023) and C=(2114), verify that (AC)′=C′A′.
Step 1 — the product:AC=(43912), so (AC)′=(49312).
Step 2 — the reversed product of transposes:C′A′=(2114)(1203)=(49312)
Answer: the two agree ✓ — and note A′C′ would give a different matrix: the reversal is essential.
Example 3 — Why skew diagonals vanish
Show that every diagonal entry of a skew-symmetric matrix is zero.
Step 1 — apply the definition at a diagonal address:aij=−aji with j=i reads aii=−aii.
Step 2 — solve:2aii=0, so aii=0.
Answer: all diagonal entries vanish — the fastest way to disqualify a matrix from being skew-symmetric is one nonzero diagonal entry.
Example 4 — A+A′ and A−A′
For any square matrix A, prove that A+A′ is symmetric and A−A′ is skew-symmetric.
Step 1 — transpose the sum:(A+A′)′=A′+(A′)′=A′+A=A+A′⟹symmetric
Step 2 — transpose the difference:(A−A′)′=A′−A=−(A−A′)⟹skew-symmetric
Answer: proved in two lines each — the building blocks of the decomposition theorem.
Example 5 — The full decomposition
Express B=2−11−23−2−44−3 as the sum of a symmetric and a skew-symmetric matrix.
Step 3 — verify:P′=P ✓, Q′=−Q with zero diagonal ✓, P+Q=B ✓.
Answer:B=P+Q as above — the standard 5-mark presentation, checks included.
Example 6 — Products of symmetric matrices
If A and B are symmetric matrices of the same order, show that AB is symmetric if and only if A and B commute.
Step 1 — transpose the product with the reversal law:(AB)′=B′A′=BA(using A′=A,B′=B)
Step 2 — read off both directions:(AB)′=AB⟺BA=AB.
Answer: symmetric times symmetric is symmetric exactly when the factors commute — and since matrices usually do not commute, AB is usually not symmetric.
Example 7 — Always-symmetric and always-skew combinations
For symmetric A and B, classify AB+BA and AB−BA.
Step 1 — transpose the first:(AB+BA)′=(AB)′+(BA)′=BA+AB=AB+BA⟹symmetric
Step 2 — transpose the second:(AB−BA)′=BA−AB=−(AB−BA)⟹skew-symmetric
Answer:AB+BA is always symmetric; AB−BA is always skew-symmetric — the symmetrised and antisymmetrised products, a favourite one-line MCQ pair.
Ready to test your knowledge?
Take a quick interactive quiz on this topic —
free, works without login.