Types of Matrices — Symmetric, Skew-Symmetric, Orthogonal

easy CBSE JEE-MAIN NCERT Class 12 4 min read

Question

Identify and verify the type of each matrix below:

A=(231304145),B=(031304140)A = \begin{pmatrix} 2 & 3 & -1 \\ 3 & 0 & 4 \\ -1 & 4 & 5 \end{pmatrix}, \quad B = \begin{pmatrix} 0 & -3 & 1 \\ 3 & 0 & -4 \\ -1 & 4 & 0 \end{pmatrix}

Also, state the defining condition for an orthogonal matrix.


Solution — Step by Step

Write ATA^T by swapping rows and columns — the (i,j)(i,j) entry of ATA^T is the (j,i)(j,i) entry of AA.

AT=(231304145)A^T = \begin{pmatrix} 2 & 3 & -1 \\ 3 & 0 & 4 \\ -1 & 4 & 5 \end{pmatrix}

We see AT=AA^T = A, so AA is a symmetric matrix.

BT=(031304140)B^T = \begin{pmatrix} 0 & 3 & -1 \\ -3 & 0 & 4 \\ 1 & -4 & 0 \end{pmatrix}

Compare with BB: every entry of BTB^T equals 1-1 times the corresponding entry of BB. That is, BT=BB^T = -B. So BB is a skew-symmetric matrix.

For a skew-symmetric matrix, the diagonal entries satisfy aii=aiia_{ii} = -a_{ii}, which forces aii=0a_{ii} = 0. Check BB: all three diagonal entries are indeed 00. This is a mandatory property — if even one diagonal entry is non-zero, the matrix cannot be skew-symmetric.

A square matrix PP is orthogonal if:

PTP=PPT=IP^T P = P P^T = I

Equivalently, PT=P1P^T = P^{-1}. The rows (and columns) of PP form an orthonormal set — mutually perpendicular unit vectors. Neither AA nor BB above is orthogonal.


Why This Works

The key is the transpose operation. Symmetric means the matrix is a mirror image of itself across the main diagonal — so aij=ajia_{ij} = a_{ji} for all i,ji, j. Geometrically, symmetric matrices represent self-adjoint transformations, which is why they appear so often in physics and engineering (moment of inertia tensors, covariance matrices).

Skew-symmetric means the matrix is the negative mirror image: aij=ajia_{ij} = -a_{ji}. This forces every diagonal entry to be zero because aii=aiia_{ii} = -a_{ii} has only one solution. In CBSE 12 and JEE, skew-symmetric matrices almost always appear with this zero-diagonal check as a quick verification step.

Orthogonal matrices are a different beast — they preserve lengths and angles. The condition PTP=IP^TP = I is the algebraic way of saying “columns are orthonormal.” In JEE, orthogonal matrices mostly appear in rotation problems and the spectral theorem.


Alternative Method

Decomposition approach — any square matrix MM can be split uniquely into a symmetric part and a skew-symmetric part:

M=M+MT2symmetric+MMT2skew-symmetricM = \underbrace{\frac{M + M^T}{2}}_{\text{symmetric}} + \underbrace{\frac{M - M^T}{2}}_{\text{skew-symmetric}}

If MM itself equals M+MT2\frac{M+M^T}{2}, it is symmetric. If it equals MMT2\frac{M-M^T}{2}, it is skew-symmetric.

This decomposition is a regular CBSE 12 long-answer question (3–4 marks). Given any matrix, write it as sum of symmetric and skew-symmetric — it’s mechanical once you know the formula.

For matrix BB above, compute BBT2\frac{B - B^T}{2}:

BBT2=12(062608280)=(031304140)=B\frac{B - B^T}{2} = \frac{1}{2}\begin{pmatrix} 0 & -6 & 2 \\ 6 & 0 & -8 \\ -2 & 8 & 0 \end{pmatrix} = \begin{pmatrix} 0 & -3 & 1 \\ 3 & 0 & -4 \\ -1 & 4 & 0 \end{pmatrix} = B

Since B=BBT2B = \frac{B - B^T}{2}, confirmed skew-symmetric. Final answers: AA is symmetric, BB is skew-symmetric.


Common Mistake

Students often write AT=AA^T = A correctly but then forget to actually verify entry by entry — they just say “it looks symmetric” from the diagonal. In exams, the verification step carries marks. Write out ATA^T explicitly and show the equality. Also, many students confuse the orthogonal condition: they write PT=PP^T = P (symmetric) instead of PT=P1P^T = P^{-1}. Symmetric \neq orthogonal. A symmetric matrix can be orthogonal only if it is also an involution (P2=IP^2 = I), which is a rare special case.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next