Constructing the General 3 × 3 Skew-Symmetric Matrix from First Principles
A skew-symmetric matrix is a square matrix whose transpose equals its negative. The construction below begins with an arbitrary 3 × 3 matrix, subtracts its transpose, and derives the complete general form without assuming the result in advance.
K is skew-symmetric precisely when Kᵀ = −K.
1. Begin with an arbitrary matrix
Let
| a | b | c |
| d | e | f |
| g | h | i |
| a | d | g |
| b | e | h |
| c | f | i |
Transposition reflects the entries across the main diagonal: rows become columns and columns become rows.
2. Subtract the transpose
Define
K = A − Aᵀ.
Subtract corresponding entries:
| a−a | b−d | c−g |
| d−b | e−e | f−h |
| g−c | h−f | i−i |
The diagonal entries cancel:
| 0 | b−d | c−g |
| d−b | 0 | f−h |
| g−c | h−f | 0 |
3. Expose the opposite signs
The entries below the diagonal are the negatives of the corresponding entries above it:
d−b = −(b−d),
g−c = −(c−g),
h−f = −(f−h).
Hence
| 0 | b−d | c−g |
| −(b−d) | 0 | f−h |
| −(c−g) | −(f−h) | 0 |
The diagonal is zero, and every reflected pair has opposite signs. The skew-symmetric pattern has emerged directly from subtraction.
4. Verify skew-symmetry
Transpose (K):
Kᵀ = (A − Aᵀ)ᵀ
= Aᵀ − (Aᵀ)ᵀ
= Aᵀ − A
= −(A − Aᵀ)
= −K.
Kᵀ = −K.
Therefore, (A − Aᵀ) is skew-symmetric for every (3 × 3) matrix (A). The same argument works for every square matrix of any size.
5. Obtain the general (3 × 3) form
Define
α = b−d, β = c−g, γ = f−h.
Substitution gives
| 0 | α | β |
| −α | 0 | γ |
| −β | −γ | 0 |
Conversely, every matrix of this form satisfies (Kᵀ = −K). It is therefore the general form of a (3 × 3) skew-symmetric matrix.
Important distinction: (A−Aᵀ) is always skew-symmetric. The expression ((A−Aᵀ)/2) is specifically called the skew-symmetric part of (A). Division by (2) is not required merely to construct a skew-symmetric matrix.