← Back to all lessons
Class 12Algebra10:25Published 15 Jul 2024

Sure Questions on Symmetric and Skew-Symmetric Matrices

Worked solutions to the sure questions on symmetric and skew-symmetric matrices: proving that a skew-symmetric matrix has zero diagonal entries, and expressing a square matrix as the sum of a symmetric and a skew-symmetric part.

This Class 12 lesson tackles the high-yield exam questions on symmetric and skew-symmetric matrices. It proves that every diagonal entry of a skew-symmetric matrix must be zero, then shows the general result that any square matrix can be written as the sum of a symmetric part and a skew-symmetric part. A two by two worked example puts the method into practice, ending with a check that the two parts add back to the original matrix.

What you'll learn

  • Why every diagonal entry of a skew-symmetric matrix has to be zero
  • How to split any square matrix into a symmetric part and a skew-symmetric part
  • How to build those two parts from a matrix and its transpose
  • How to confirm each part is symmetric or skew-symmetric and that they add back to the original

Lesson chapters

0:00Diagonal entries of a skew-symmetric matrix are zero
3:07Any square matrix as a symmetric plus skew-symmetric sum
5:44Worked example: setting up A and its transpose
6:51Building the symmetric part P
7:59Building the skew-symmetric part Q
9:38Checking that P plus Q recovers A

Lesson notes

This lesson works through the "sure questions" on symmetric and skew-symmetric matrices: a short proof that a skew-symmetric matrix has zeros all down its diagonal, the result that every square matrix splits into a symmetric and a skew-symmetric part, and a worked example carrying out that split.

Diagonal entries of a skew-symmetric matrix are zero

Let A=[aij]A = [a_{ij}] be a square matrix that is skew-symmetric, which means AT=AA^{\mathsf T} = -A. Entry by entry this says: aij=ajifor all i,j.a_{ij} = -a_{ji} \quad \text{for all } i, j.

Now look at a diagonal entry by setting i=ji = j: aii=aii    aii+aii=0    2aii=0    aii=0.a_{ii} = -a_{ii} \implies a_{ii} + a_{ii} = 0 \implies 2a_{ii} = 0 \implies a_{ii} = 0.

Since this holds for every ii, all of the diagonal entries a11,a22,a33,a_{11}, a_{22}, a_{33}, \dots are zero. So a skew-symmetric matrix always has a zero diagonal.

Any square matrix as a symmetric plus skew-symmetric sum

Let AA be any square matrix. We claim it can be written as A=12(A+AT)+12(AAT).A = \tfrac{1}{2}\left(A + A^{\mathsf T}\right) + \tfrac{1}{2}\left(A - A^{\mathsf T}\right).

Expanding the right side, the 12AT\tfrac{1}{2}A^{\mathsf T} terms cancel and the two 12A\tfrac{1}{2}A terms add, leaving AA, so the identity holds.

The first part is symmetric. Because (A+AT)T=AT+A=A+AT\left(A + A^{\mathsf T}\right)^{\mathsf T} = A^{\mathsf T} + A = A + A^{\mathsf T}, the matrix A+ATA + A^{\mathsf T} equals its own transpose, and so does 12(A+AT)\tfrac{1}{2}(A + A^{\mathsf T}).

The second part is skew-symmetric. Because (AAT)T=ATA=(AAT)\left(A - A^{\mathsf T}\right)^{\mathsf T} = A^{\mathsf T} - A = -\left(A - A^{\mathsf T}\right), the matrix AATA - A^{\mathsf T} is the negative of its transpose, and so is 12(AAT)\tfrac{1}{2}(A - A^{\mathsf T}).

Writing P=12(A+AT)P = \tfrac{1}{2}(A + A^{\mathsf T}) and Q=12(AAT)Q = \tfrac{1}{2}(A - A^{\mathsf T}), we have A=P+QA = P + Q with PP symmetric and QQ skew-symmetric.

Worked example: setting up A and its transpose

Express A=[3511]A = \begin{bmatrix} 3 & 5 \\ 1 & 1 \end{bmatrix} as the sum of a symmetric and a skew-symmetric matrix.

First write the transpose by interchanging rows and columns: AT=[3151].A^{\mathsf T} = \begin{bmatrix} 3 & 1 \\ 5 & 1 \end{bmatrix}.

Building the symmetric part P

Add AA and ATA^{\mathsf T}, then halve: A+AT=[6662],P=12[6662]=[3331].A + A^{\mathsf T} = \begin{bmatrix} 6 & 6 \\ 6 & 2 \end{bmatrix}, \qquad P = \tfrac{1}{2}\begin{bmatrix} 6 & 6 \\ 6 & 2 \end{bmatrix} = \begin{bmatrix} 3 & 3 \\ 3 & 1 \end{bmatrix}.

Checking, PT=[3331]=PP^{\mathsf T} = \begin{bmatrix} 3 & 3 \\ 3 & 1 \end{bmatrix} = P, so PP is symmetric.

Building the skew-symmetric part Q

Subtract ATA^{\mathsf T} from AA, then halve: AAT=[0440],Q=12[0440]=[0220].A - A^{\mathsf T} = \begin{bmatrix} 0 & 4 \\ -4 & 0 \end{bmatrix}, \qquad Q = \tfrac{1}{2}\begin{bmatrix} 0 & 4 \\ -4 & 0 \end{bmatrix} = \begin{bmatrix} 0 & 2 \\ -2 & 0 \end{bmatrix}.

Checking, QT=[0220]=QQ^{\mathsf T} = \begin{bmatrix} 0 & -2 \\ 2 & 0 \end{bmatrix} = -Q, so QQ is skew-symmetric.

Checking that P plus Q recovers A

Adding the two parts back together: P+Q=[3331]+[0220]=[3511]=A.P + Q = \begin{bmatrix} 3 & 3 \\ 3 & 1 \end{bmatrix} + \begin{bmatrix} 0 & 2 \\ -2 & 0 \end{bmatrix} = \begin{bmatrix} 3 & 5 \\ 1 & 1 \end{bmatrix} = A.

So A=P+Q=12(A+AT)+12(AAT)A = P + Q = \tfrac{1}{2}(A + A^{\mathsf T}) + \tfrac{1}{2}(A - A^{\mathsf T}), as required.

Key takeaways

  • A skew-symmetric matrix satisfies AT=AA^{\mathsf T} = -A, which forces every diagonal entry to be zero.
  • For any square matrix, 12(A+AT)\tfrac{1}{2}(A + A^{\mathsf T}) is symmetric and 12(AAT)\tfrac{1}{2}(A - A^{\mathsf T}) is skew-symmetric.
  • Every square matrix is the sum of these two parts, A=12(A+AT)+12(AAT)A = \tfrac{1}{2}(A + A^{\mathsf T}) + \tfrac{1}{2}(A - A^{\mathsf T}), and adding them back recovers the original matrix.