The math optional, made finite. Daily Practice

Symmetric and Skew-Symmetric Matrices

At a Glance

Why This Chapter Matters

Symmetric and skew-symmetric matrices are the two canonical self-adjoint structures in real linear algebra: every square matrix decomposes uniquely into these two parts. UPSC 2021 asked an 8-mark Section A question — most likely a proof of a property (e.g., the unique decomposition, reality of eigenvalues, or the orthogonality of eigenvectors) or a decomposition exercise. Mastery here also directly supports the spectral theorem and quadratic forms, which recur across the syllabus.

Minimum Theory

Definitions.

Unique decomposition. Every n×nn\times n real matrix AA decomposes as A=S+K,S=A+AT2,K=AAT2,A = S + K, \quad S = \frac{A + A^T}{2}, \quad K = \frac{A - A^T}{2}, where SS is symmetric and KK is skew-symmetric. The decomposition is unique.

Proof of uniqueness: If A=S+KA = S' + K' is another such decomposition, then SS=KKS - S' = K' - K. The left side is symmetric and the right side is skew-symmetric; the only matrix that is both is 00. Hence S=SS = S' and K=KK = K'. \square

Properties of real symmetric matrices.

Properties of real skew-symmetric matrices.

Proof that eigenvalues of a real symmetric matrix are real. Let Av=λvAv = \lambda v with v0v \neq 0, vCnv \in \mathbb{C}^n. Then λvˉTv=vˉT(λv)=vˉTAv=(Avˉ)Tv=(Av)Tv=(λv)Tv=λˉvˉTv.\lambda \bar{v}^T v = \bar{v}^T(\lambda v) = \bar{v}^T A v = (A\bar{v})^T v = \overline{(Av)}^T v = \overline{(\lambda v)}^T v = \bar\lambda \bar{v}^T v. Since vˉTv=v2>0\bar{v}^T v = \|v\|^2 > 0, we get λ=λˉ\lambda = \bar\lambda, so λR\lambda \in \mathbb{R}. \square

Proof that eigenvectors of a real symmetric matrix for distinct eigenvalues are orthogonal. Suppose Av1=λ1v1Av_1 = \lambda_1 v_1 and Av2=λ2v2Av_2 = \lambda_2 v_2 with λ1λ2\lambda_1 \neq \lambda_2. Then λ1v1Tv2=(Av1)Tv2=v1TATv2=v1TAv2=λ2v1Tv2.\lambda_1 v_1^T v_2 = (Av_1)^T v_2 = v_1^T A^T v_2 = v_1^T A v_2 = \lambda_2 v_1^T v_2. Since λ1λ2\lambda_1 \neq \lambda_2, we conclude v1Tv2=0v_1^T v_2 = 0. \square

Question Archetypes

ArchetypeRecognition
unique-decomposition-proof”Prove every matrix is uniquely the sum of symmetric and skew-symmetric parts”
decompose-given-matrix”Express AA as the sum of a symmetric and a skew-symmetric matrix”
eigenvalue-property-proof”Prove eigenvalues of a real symmetric matrix are real”
orthogonality-proof”Prove eigenvectors for distinct eigenvalues of a symmetric matrix are orthogonal”

unique-decomposition-proof (1 question(s); 2021)

Recognition Cues

Solution Template

  1. Define S=(A+AT)/2S = (A + A^T)/2 and K=(AAT)/2K = (A - A^T)/2; verify A=S+KA = S + K.
  2. Check ST=SS^T = S: (A+AT)T/2=(AT+A)/2=S(A + A^T)^T/2 = (A^T + A)/2 = S. Check KT=KK^T = -K: (AAT)T/2=(ATA)/2=K(A - A^T)^T/2 = (A^T - A)/2 = -K.
  3. Prove uniqueness: assume another decomposition A=S+KA = S' + K'; derive SS=KKS - S' = K' - K is both symmetric and skew-symmetric, hence zero.
  4. (If asked for a concrete decomposition) Apply the formulas to the given AA.

Worked Example

2021 Paper 1, 2021-P1-Q1e (8 marks)

Prove that every square matrix can be uniquely expressed as the sum of a symmetric matrix and a skew-symmetric matrix. Hence decompose A=(352146037)A = \begin{pmatrix} 3 & 5 & -2 \\ 1 & 4 & 6 \\ 0 & -3 & 7 \end{pmatrix} into its symmetric and skew-symmetric parts.

Part 1: Existence.

Define S=A+AT2,K=AAT2.S = \frac{A + A^T}{2}, \qquad K = \frac{A - A^T}{2}.

Then S+K=(A+AT)+(AAT)2=AS + K = \dfrac{(A+A^T) + (A-A^T)}{2} = A. We verify:

ST=(A+AT2)T=AT+A2=S,so S is symmetric.S^T = \left(\frac{A+A^T}{2}\right)^T = \frac{A^T + A}{2} = S, \quad \text{so } S \text{ is symmetric.}

KT=(AAT2)T=ATA2=K,so K is skew-symmetric.K^T = \left(\frac{A-A^T}{2}\right)^T = \frac{A^T - A}{2} = -K, \quad \text{so } K \text{ is skew-symmetric.}

Part 2: Uniqueness.

Suppose A=S1+K1A = S_1 + K_1 where S1T=S1S_1^T = S_1 and K1T=K1K_1^T = -K_1. Then AT=S1K1A^T = S_1 - K_1, giving

S1=A+AT2=S,K1=AAT2=K.S_1 = \frac{A + A^T}{2} = S, \qquad K_1 = \frac{A - A^T}{2} = K.

The decomposition is unique. \square

Part 3: Explicit decomposition.

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

S=12(6626832314)=(33134321327).S = \frac{1}{2}\begin{pmatrix}6 & 6 & -2\\ 6 & 8 & 3\\ -2 & 3 & 14\end{pmatrix} = \begin{pmatrix}3 & 3 & -1\\ 3 & 4 & \frac{3}{2}\\ -1 & \frac{3}{2} & 7\end{pmatrix}.

K=12(042409290)=(02120921920).K = \frac{1}{2}\begin{pmatrix}0 & 4 & -2\\ -4 & 0 & 9\\ 2 & -9 & 0\end{pmatrix} = \begin{pmatrix}0 & 2 & -1\\ -2 & 0 & \frac{9}{2}\\ 1 & -\frac{9}{2} & 0\end{pmatrix}.

Verification: S+K=AS + K = A. \checkmark

A=S+K as above, uniquely.\boxed{A = S + K \text{ as above, uniquely.}}

Common Traps

Marks-Aware Writing

At 8 marks (Section A, ~12 min), split roughly: 2 marks for defining SS and KK and showing A=S+KA = S+K; 2 marks for verifying ST=SS^T = S and KT=KK^T = -K; 2 marks for the uniqueness argument; 2 marks for the concrete decomposition (if asked). Write the uniqueness proof as a clean 3-line derivation — do not merely assert it. For eigenvalue-property questions, the Hermitian inner product argument above is the canonical 4-line proof worth 4–5 marks.

Practice Set

Only one historical question on this atom (shown above).

We've mapped all 13 years of this exam. Get new chapters, tools, and solutions as we release them — free.