JEE Mains Maths · Matrices

Symmetric, Skew-Symmetric and Orthogonal Matrices

Three matrix families defined by how A relates to its transpose — symmetric (A = Aᵀ), skew-symmetric (A = −Aᵀ, forcing a zero diagonal), and orthogonal (AAᵀ = I, so A⁻¹ = Aᵀ) — each carrying tell-tale determinant and structure facts JEE tests relentlessly.

Why this matters

Fourteen PYQs, every one MODERATE — this is one of the most reliably recurring Matrices themes in JEE Mains. The questions cluster into a few fixed shapes: counting symmetric/skew matrices over an entry set, splitting A into its symmetric and skew parts, tracking whether a product like ABᵀ or A¹³B²⁶ comes out symmetric or skew, the XᵀAX = 0 characterisation of skew matrices, and orthogonal/rotation matrices where the inverse is just the transpose. Learn the five recognition patterns below and most of these answer themselves with a one-line transpose argument rather than grinding entries.

Concept 1 of 5

Definitions, entry patterns, and counting

Intuition

A symmetric matrix mirrors across its main diagonal (aij=ajia_{ij}=a_{ji}); a skew-symmetric matrix anti-mirrors (aij=ajia_{ij}=-a_{ji}), which forces every diagonal entry to be 0. Because the lower triangle is fully determined by the upper, you only get to choose the diagonal plus the upper off-diagonal entries — that count is what JEE's 'how many such matrices?' problems hinge on.

Definition

AA is symmetric if AT=AA^T = A and skew-symmetric if AT=AA^T = -A (so aii=0a_{ii}=0). For an n×nn\times n matrix the number of free entries is:

  • symmetric: the nn diagonal entries ++ the n(n1)2\tfrac{n(n-1)}{2} upper off-diagonal entries =n(n+1)2= \tfrac{n(n+1)}{2};
  • skew-symmetric: only the n(n1)2\tfrac{n(n-1)}{2} upper off-diagonal entries (diagonal is forced to 0).

So if each free entry is chosen from a set of kk values, there are kn(n+1)/2k^{\,n(n+1)/2} symmetric matrices — and **0 skew-symmetric matrices unless 00 is in the value set** (the diagonal must be 0).

Free-entry counts for order n

#{symmetric}=kn(n+1)/2,#{skew}={kn(n1)/20value set00value set\#\{\text{symmetric}\} = k^{\,n(n+1)/2}, \qquad \#\{\text{skew}\} = \begin{cases} k^{\,n(n-1)/2} & 0 \in \text{value set}\\[2pt] 0 & 0 \notin \text{value set}\end{cases}
  • norder of the square matrix
  • knumber of allowed values per entry

Worked example

How many symmetric 2×22\times 2 matrices have all entries drawn from {1,2,3}\{1,2,3\}?
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 1MatricesMODERATE
The number of symmetric matrices of order 3 , with all the entries from the set {0,1,2,3,4,5,6,7,8,9}\mathbf{\{ 0,1,2,3,4,5,6,7,8,9\}}, is :

[Q71 · 13 April 2023 · 2023]

A symmetric matrix is NOT determined by n2n^2 free choices

For a symmetric 3×33\times3 matrix you choose only 342=6\tfrac{3\cdot4}{2}=6 entries (3 diagonal + 3 upper), not 99. Counting all 99 entries freely over-counts massively — the lower triangle is a mirror, not a free choice.

Skew-symmetric over a set missing 00 gives ZERO matrices

The diagonal of a skew matrix is forced to 00. If the allowed value set does not contain 00 (e.g. {3,2,1,1,2}\{-3,-2,-1,1,2\}), the skew count collapses to 00 — a favourite JEE curveball hidden inside a union count.

Concept 2 of 5

The symmetric-plus-skew decomposition

Intuition

Every square matrix splits uniquely into a symmetric part plus a skew-symmetric part. The symmetric part is P=12(A+AT)P=\tfrac12(A+A^T) and the skew part is Q=12(AAT)Q=\tfrac12(A-A^T). JEE loves asking for detP\det P or detQ\det Q, which for a 2×22\times2 come out as clean expressions in the entries.

Definition

For any square AA, A=P+QA = P + Q with P=12(A+AT)P=\tfrac12(A+A^T) symmetric and Q=12(AAT)Q=\tfrac12(A-A^T) skew-symmetric; this splitting is unique. For a 2×22\times2 A=(abcd)A=\begin{pmatrix}a&b\\c&d\end{pmatrix}: P=(ab+c2b+c2d)P=\begin{pmatrix}a&\frac{b+c}{2}\\\frac{b+c}{2}&d\end{pmatrix}, Q=(0bc2bc20)Q=\begin{pmatrix}0&\frac{b-c}{2}\\-\frac{b-c}{2}&0\end{pmatrix}, so detQ=(bc2)2\det Q=\left(\tfrac{b-c}{2}\right)^2 and detP=ad(b+c2)2\det P = ad-\left(\tfrac{b+c}{2}\right)^2.

Unique symmetric + skew split

A=12(A+AT)P symmetric+12(AAT)Q skewA = \underbrace{\tfrac12(A+A^T)}_{P\ \text{symmetric}} + \underbrace{\tfrac12(A-A^T)}_{Q\ \text{skew}}

Worked example

Write A=(4206)A=\begin{pmatrix}4&2\\0&6\end{pmatrix} as P+QP+Q with PP symmetric and QQ skew-symmetric.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 2MatricesMODERATE
Let A=[23a0],aRA =\begin{bmatrix} 2 & 3 \\ a & 0 \end{bmatrix},a \in R be written as P+QP + Q where PP is a symmetric matrix and QQ is skew symmetric matrix. If det(Q)=9det(Q) = 9, then the modulus of the sum of all possible values of determinant of PP is equal to:

[Q47 · Paper 11 · 2021]

Concept 3 of 5

Transposing products of symmetric and skew matrices

Intuition

Almost every 'is this expression symmetric or skew?' question is solved by one move: take the transpose using (XY)T=YTXT(XY)^T=Y^TX^T, replace ATA^T by AA (symmetric) and BTB^T by B-B (skew), and read off the overall sign. A crucial parity fact drives it: for skew BB, (Bn)T=(B)n(B^n)^T=(-B)^n, so BnB^n is **skew when nn is odd, symmetric when nn is even**.

Definition

Use (XY)T=YTXT(XY)^T=Y^TX^T and (X±Y)T=XT±YT(X\pm Y)^T=X^T\pm Y^T. With AT=AA^T=A (symmetric), BT=BB^T=-B (skew): powers obey (An)T=An(A^n)^T=A^n (always symmetric) and (Bn)T=(1)nBn(B^n)^T=(-1)^n B^n. A result is symmetric if its transpose equals itself, skew if its transpose equals its negative. Handy commutator facts: for symmetric AA and skew BB, ABBAAB-BA is symmetric while AB+BAAB+BA is skew.

Transpose rules and skew-power parity

(XY)T=YTXT,(Bn)T=(1)nBn  (B skew)(XY)^T = Y^T X^T, \qquad (B^n)^T = (-1)^n B^n \ \ (B\ \text{skew})

Worked example

If AA is symmetric and BB is skew-symmetric (same order), determine whether AB+BAAB+BA is symmetric or skew-symmetric.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 3MatricesMODERATE
Let AA and BB be any two 3×33 \times 3 symmetric and skew symmetric matrices respectively. Then which of the following is NOT true?

[Q153 · 28 July 2022 · 2022]

BnB^n flips type with the parity of nn

For skew BB, B26B^{26} is symmetric but B5B^{5} is skew. Students who assume every power of a skew matrix stays skew mis-answer questions like B5A5B^{5}-A^{5}: since (B5)T=B5(B^5)^T=-B^5 and (A5)T=A5(A^5)^T=A^5, the difference is neither symmetric nor skew in general.

A product of symmetric matrices need not be symmetric

(AB)T=BTAT=BA(AB)^T=B^TA^T=BA for symmetric A,BA,B — which equals ABAB only if they commute. Don't declare ABAB symmetric automatically; it is symmetric iff AB=BAAB=BA.

Concept 4 of 5

The quadratic form test for skew-symmetry

Intuition

If a matrix AA satisfies XTAX=0X^TAX=0 for every column vector XX, that is a strong structural clue: AA must be skew-symmetric (in particular its diagonal is all zeros). It does NOT mean A=0A=0 — the vanishing quadratic form only kills the symmetric part of AA.

Definition

The scalar XTAXX^TAX equals its own transpose XTATXX^TA^TX, so XT(A+AT)X=0X^T(A+A^T)X=0 for all XX. Since A+ATA+A^T is symmetric, its quadratic form vanishing for all XX forces A+AT=OA+A^T=O, i.e. AT=AA^T=-A. Taking X=eiX=e_i (a standard basis vector) directly gives aii=0a_{ii}=0.

Quadratic-form characterisation

XTAX=0  X    AT=A  (A skew-symmetric)X^TAX = 0 \ \ \forall X \;\Longrightarrow\; A^T = -A \ \ (A\ \text{skew-symmetric})

Worked example

Verify that A=(0220)A=\begin{pmatrix}0&2\\-2&0\end{pmatrix} gives XTAX=0X^TAX=0 for every X=(xy)X=\begin{pmatrix}x\\y\end{pmatrix}.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 4MatricesMODERATE
Let be a 3×33 \times 3 matrix such that XTAX=OX^{T}AX = O for all nonzero 3×13 \times 1 matrices X=[xyz]X =\begin{bmatrix} x \\ y \\ z \end{bmatrix}. If A[111]=[145],A[121]=[048]A\begin{bmatrix} 1 \\ 1 \\ 1 \end{bmatrix}=\begin{bmatrix} 1 \\ 4 \\ - 5 \end{bmatrix},A\begin{bmatrix} 1 \\ 2 \\ 1 \end{bmatrix}=\begin{bmatrix} 0 \\ 4 \\ - 8 \end{bmatrix}, and det(adj(2( A+I)))=2α3β5γ,α,β,γ,Ndet(adj(2(\text{ }A + I))) =2^{\alpha}3^{\beta}5^{\gamma},\alpha,\beta,\gamma, \in N, then α2+β2+γ2\alpha^{2}+\beta^{2}+\gamma^{2} is

[Q74 · 24 Jan 2025 · 2025]

XTAX=0X^TAX=0 does not mean A=OA=O

The vanishing quadratic form only annihilates the symmetric part A+ATA+A^T. A non-zero skew matrix such as (0220)\begin{pmatrix}0&2\\-2&0\end{pmatrix} satisfies XTAX=0X^TAX=0 identically while being far from the zero matrix. Read the condition as 'skew', not 'zero'.

Concept 5 of 5

Orthogonal, rotation, and Cayley-transform matrices

Intuition

An orthogonal matrix has orthonormal rows/columns, packaged as AAT=IAA^T=I. Two huge payoffs: the inverse is just the transpose (no adjoint needed), and the determinant is ±1\pm1. Rotation matrices are the standard example, they compose by adding angles, and a skew matrix run through the Cayley transform (I+A)(IA)1(I+A)(I-A)^{-1} comes out orthogonal.

Definition

AA is orthogonal if AAT=ATA=IAA^T=A^TA=I; then A1=ATA^{-1}=A^T and detA=±1\det A=\pm1 (from (detA)2=det(AAT)=1(\det A)^2=\det(AA^T)=1). The rotation matrix f(x)=(cosxsinxsinxcosx)f(x)=\begin{pmatrix}\cos x&-\sin x\\\sin x&\cos x\end{pmatrix} is orthogonal with det=1\det=1, satisfies f(x)f(y)=f(x+y)f(x)f(y)=f(x+y), and f(x)=f(x)1=f(x)Tf(-x)=f(x)^{-1}=f(x)^T. If AA is skew-symmetric, the Cayley transform (I+A)(IA)1(I+A)(I-A)^{-1} is orthogonal; and a symmetric AA with A2=IA^2=I has orthonormal rows (each row is a unit vector, distinct rows are orthogonal).

Orthogonality and rotation composition

AAT=I    A1=AT, detA=±1f(x)f(y)=f(x+y)AA^T=I \;\Rightarrow\; A^{-1}=A^T,\ \det A=\pm1 \qquad f(x)f(y)=f(x+y)

Worked example

Show that A=(35454535)A=\begin{pmatrix}\tfrac{3}{5}&\tfrac{4}{5}\\-\tfrac{4}{5}&\tfrac{3}{5}\end{pmatrix} is orthogonal, and write A1A^{-1}.
Practice this conceptself-check · 6 quick reps

From the bank · past-year question

Example 5MatricesMODERATE
If for the matrix, A=[1ααβ],AA=I2A=\begin{bmatrix} 1 & -\alpha \\ \alpha & \beta \end{bmatrix},AA^{\top}=I_{2}, then the value of α4+β4\alpha^{4}+\beta^{4} is:

[Q65 · Paper 4 · 2021]

detA=±1\det A=\pm1, not always +1+1

Orthogonality only pins (detA)2=1(\det A)^2=1. Proper rotations have det=+1\det=+1, but reflections are orthogonal with det=1\det=-1. Never assume the determinant is 11 unless the matrix is specifically a rotation.

Orthogonal is about AT=A1A^T=A^{-1}, not AT=AA^T=A

Don't confuse orthogonal (AAT=IAA^T=I, so AT=A1A^T=A^{-1}) with symmetric (AT=AA^T=A). A symmetric matrix with A2=IA^2=I happens to be orthogonal too, but symmetry alone never implies orthogonality.

Summary — formulas & gotchas at a glance

A revision cheat-sheet for the formulas and gotchas above. Click any concept name to jump back to its full explanation.

Formulas (5)

  • Definitions, entry patterns, and counting

    Free-entry counts for order n

    #{symmetric}=kn(n+1)/2,#{skew}={kn(n1)/20value set00value set\#\{\text{symmetric}\} = k^{\,n(n+1)/2}, \qquad \#\{\text{skew}\} = \begin{cases} k^{\,n(n-1)/2} & 0 \in \text{value set}\\[2pt] 0 & 0 \notin \text{value set}\end{cases}
  • The symmetric-plus-skew decomposition

    Unique symmetric + skew split

    A=12(A+AT)P symmetric+12(AAT)Q skewA = \underbrace{\tfrac12(A+A^T)}_{P\ \text{symmetric}} + \underbrace{\tfrac12(A-A^T)}_{Q\ \text{skew}}
  • Transposing products of symmetric and skew matrices

    Transpose rules and skew-power parity

    (XY)T=YTXT,(Bn)T=(1)nBn  (B skew)(XY)^T = Y^T X^T, \qquad (B^n)^T = (-1)^n B^n \ \ (B\ \text{skew})
  • The quadratic form test for skew-symmetry

    Quadratic-form characterisation

    XTAX=0  X    AT=A  (A skew-symmetric)X^TAX = 0 \ \ \forall X \;\Longrightarrow\; A^T = -A \ \ (A\ \text{skew-symmetric})
  • Orthogonal, rotation, and Cayley-transform matrices

    Orthogonality and rotation composition

    AAT=I    A1=AT, detA=±1f(x)f(y)=f(x+y)AA^T=I \;\Rightarrow\; A^{-1}=A^T,\ \det A=\pm1 \qquad f(x)f(y)=f(x+y)

Watch out for (7)

Drill every past-year question on this subtopic

14 questions from the bank — paginated, with cart and Word-export support.

Related notes