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 =
abc
def
ghi
and Aᵀ =
adg
beh
cfi

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:

K =
a−ab−dc−g
d−be−ef−h
g−ch−fi−i

The diagonal entries cancel:

K =
0b−dc−g
d−b0f−h
g−ch−f0

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

K =
0b−dc−g
−(b−d)0f−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

K =
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.

Popular posts from this blog

A Geometric Way to Visualise sin(x + y) and cos(x + y)

The Method of Differences — A Clean Proof of the Sum of Cubes

The Shortest Distance Between Two Skew Lines in ℝ³