← Back to all lessons
Class 12Algebra15:20Published 5 Jun 2026

Transpose of Matrices: Exercise 3.3 Solutions

Worked solutions to the key questions of Exercise 3.3 on the transpose of a matrix, covering how to find a transpose, verifying the transpose identities, and splitting a matrix into symmetric and skew-symmetric parts.

This lesson works through the sure questions of Exercise 3.3 on matrix transpose for Class 12. It begins by finding transposes through interchanging rows and columns, then verifies the standard identities (A+B) transpose equals A transpose plus B transpose and (AB) transpose equals B transpose times A transpose. It closes with symmetric and skew-symmetric matrices, including expressing a matrix as the sum of the two.

What you'll learn

  • How to find the transpose of any matrix by swapping its rows and columns
  • Why the transpose of a sum splits across the terms, and how the order reverses for a product
  • How multiplying a rotation matrix by its transpose gives the identity matrix
  • What makes a matrix symmetric or skew symmetric, and how to split any square matrix into both

Lesson chapters

0:00Finding the transpose of a matrix
1:31Verifying (A + B) transpose = A transpose + B transpose
4:38Finding (A + 2B) transpose
5:49Proving (AB) transpose = B transpose A transpose
8:34Rotation matrix: verifying A transpose A = I
11:02Symmetric and skew-symmetric matrices

Lesson notes

This lesson works through the "sure questions" of Exercise 3.3 on the transpose of a matrix: finding transposes, verifying the standard transpose identities, and splitting a matrix into symmetric and skew-symmetric parts.

Finding the transpose

The transpose is found by interchanging rows and columns: the first row becomes the first column, the second row becomes the second column, and so on.

A column matrix. Given the column matrix, its transpose is the row matrix: [5121]T=[5121]\begin{bmatrix} 5 \\ 1 \\ 2 \\ -1 \end{bmatrix}^{\mathsf T} = \begin{bmatrix} 5 & 1 & 2 & -1 \end{bmatrix}

A square matrix. [1123]T=[1213]\begin{bmatrix} 1 & -1 \\ 2 & 3 \end{bmatrix}^{\mathsf T} = \begin{bmatrix} 1 & 2 \\ -1 & 3 \end{bmatrix}

A 3 by 3 matrix. [156356231]T=[132553661]\begin{bmatrix} -1 & 5 & 6 \\ \sqrt{3} & 5 & 6 \\ 2 & 3 & -1 \end{bmatrix}^{\mathsf T} = \begin{bmatrix} -1 & \sqrt{3} & 2 \\ 5 & 5 & 3 \\ 6 & 6 & -1 \end{bmatrix}

Verifying (A+B)T=AT+BT(A+B)^{\mathsf T} = A^{\mathsf T} + B^{\mathsf T}

We are given ATA^{\mathsf T} and BB, so first recover AA and BTB^{\mathsf T}.

AT=[341221]    A=[312421]A^{\mathsf T} = \begin{bmatrix} 3 & 4 \\ -1 & 2 \\ 2 & 1 \end{bmatrix} \implies A = \begin{bmatrix} 3 & -1 & 2 \\ 4 & 2 & 1 \end{bmatrix}

B=[121123]    BT=[112213]B = \begin{bmatrix} -1 & 2 & 1 \\ 1 & 2 & 3 \end{bmatrix} \implies B^{\mathsf T} = \begin{bmatrix} -1 & 1 \\ 2 & 2 \\ 1 & 3 \end{bmatrix}

Left side. Add AA and BB, then transpose: A+B=[213544],(A+B)T=[251434]A + B = \begin{bmatrix} 2 & 1 & 3 \\ 5 & 4 & 4 \end{bmatrix}, \qquad (A+B)^{\mathsf T} = \begin{bmatrix} 2 & 5 \\ 1 & 4 \\ 3 & 4 \end{bmatrix}

Right side. Add the two transposes: AT+BT=[341221]+[112213]=[251434]A^{\mathsf T} + B^{\mathsf T} = \begin{bmatrix} 3 & 4 \\ -1 & 2 \\ 2 & 1 \end{bmatrix} + \begin{bmatrix} -1 & 1 \\ 2 & 2 \\ 1 & 3 \end{bmatrix} = \begin{bmatrix} 2 & 5 \\ 1 & 4 \\ 3 & 4 \end{bmatrix}

Both sides agree, so (A+B)T=AT+BT(A+B)^{\mathsf T} = A^{\mathsf T} + B^{\mathsf T}. (The companion result (AB)T=ATBT(A-B)^{\mathsf T} = A^{\mathsf T} - B^{\mathsf T} is left as practice.)

Finding (A+2B)T(A + 2B)^{\mathsf T}

Given AT=[2312]A^{\mathsf T} = \begin{bmatrix} -2 & 3 \\ 1 & 2 \end{bmatrix} and B=[1012]B = \begin{bmatrix} -1 & 0 \\ 1 & 2 \end{bmatrix}.

Recover AA and scale BB: A=[2132],2B=[2024]A = \begin{bmatrix} -2 & 1 \\ 3 & 2 \end{bmatrix}, \qquad 2B = \begin{bmatrix} -2 & 0 \\ 2 & 4 \end{bmatrix}

Then add and transpose: A+2B=[4156],(A+2B)T=[4516]A + 2B = \begin{bmatrix} -4 & 1 \\ 5 & 6 \end{bmatrix}, \qquad (A + 2B)^{\mathsf T} = \begin{bmatrix} -4 & 5 \\ 1 & 6 \end{bmatrix}

Proving (AB)T=BTAT(AB)^{\mathsf T} = B^{\mathsf T} A^{\mathsf T}

Here AA is a column matrix and BB is a row matrix: A=[143],B=[121]A = \begin{bmatrix} 1 \\ -4 \\ 3 \end{bmatrix}, \qquad B = \begin{bmatrix} -1 & 2 & 1 \end{bmatrix}

Left side. The product ABAB is a 3×33 \times 3 matrix (each entry is one element of AA times one element of BB): AB=[121484363],(AB)T=[143286143]AB = \begin{bmatrix} -1 & 2 & 1 \\ 4 & -8 & -4 \\ -3 & 6 & 3 \end{bmatrix}, \qquad (AB)^{\mathsf T} = \begin{bmatrix} -1 & 4 & -3 \\ 2 & -8 & 6 \\ 1 & -4 & 3 \end{bmatrix}

Right side. With BT=[121]B^{\mathsf T} = \begin{bmatrix} -1 \\ 2 \\ 1 \end{bmatrix} and AT=[143]A^{\mathsf T} = \begin{bmatrix} 1 & -4 & 3 \end{bmatrix}: BTAT=[143286143]B^{\mathsf T} A^{\mathsf T} = \begin{bmatrix} -1 & 4 & -3 \\ 2 & -8 & 6 \\ 1 & -4 & 3 \end{bmatrix}

The two results are equal, so (AB)T=BTAT(AB)^{\mathsf T} = B^{\mathsf T} A^{\mathsf T}.

Rotation matrix: verifying ATA=IA^{\mathsf T} A = I

Let A=[cosαsinαsinαcosα]A = \begin{bmatrix} \cos\alpha & \sin\alpha \\ -\sin\alpha & \cos\alpha \end{bmatrix}, so AT=[cosαsinαsinαcosα]A^{\mathsf T} = \begin{bmatrix} \cos\alpha & -\sin\alpha \\ \sin\alpha & \cos\alpha \end{bmatrix}.

Multiply ATA^{\mathsf T} by AA and use sin2α+cos2α=1\sin^2\alpha + \cos^2\alpha = 1: ATA=[cos2α+sin2αcosαsinαsinαcosαsinαcosαcosαsinαsin2α+cos2α]=[1001]=IA^{\mathsf T} A = \begin{bmatrix} \cos^2\alpha + \sin^2\alpha & \cos\alpha\sin\alpha - \sin\alpha\cos\alpha \\ \sin\alpha\cos\alpha - \cos\alpha\sin\alpha & \sin^2\alpha + \cos^2\alpha \end{bmatrix} = \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix} = I

Symmetric and skew-symmetric matrices

For A=[1567]A = \begin{bmatrix} 1 & 5 \\ 6 & 7 \end{bmatrix} we have AT=[1657]A^{\mathsf T} = \begin{bmatrix} 1 & 6 \\ 5 & 7 \end{bmatrix}.

A+ATA + A^{\mathsf T} is symmetric (it equals its own transpose): A+AT=[2111114]A + A^{\mathsf T} = \begin{bmatrix} 2 & 11 \\ 11 & 14 \end{bmatrix}

AATA - A^{\mathsf T} is skew-symmetric (its transpose is its negative): AAT=[0110],(AAT)T=[0110]=(AAT)A - A^{\mathsf T} = \begin{bmatrix} 0 & -1 \\ 1 & 0 \end{bmatrix}, \qquad (A - A^{\mathsf T})^{\mathsf T} = \begin{bmatrix} 0 & 1 \\ -1 & 0 \end{bmatrix} = -(A - A^{\mathsf T})

Expressing a matrix as a sum

Any square matrix splits as A=P+QA = P + Q, where P=12(A+AT)P = \tfrac{1}{2}(A + A^{\mathsf T}) is symmetric and Q=12(AAT)Q = \tfrac{1}{2}(A - A^{\mathsf T}) is skew-symmetric. For A=[3511]A = \begin{bmatrix} 3 & 5 \\ 1 & -1 \end{bmatrix}:

P=12[6662]=[3331],Q=12[0440]=[0220]P = \tfrac{1}{2}\begin{bmatrix} 6 & 6 \\ 6 & -2 \end{bmatrix} = \begin{bmatrix} 3 & 3 \\ 3 & -1 \end{bmatrix}, \qquad Q = \tfrac{1}{2}\begin{bmatrix} 0 & 4 \\ -4 & 0 \end{bmatrix} = \begin{bmatrix} 0 & 2 \\ -2 & 0 \end{bmatrix}

Indeed P+Q=[3511]=AP + Q = \begin{bmatrix} 3 & 5 \\ 1 & -1 \end{bmatrix} = A.

Key takeaways

  • The transpose interchanges rows and columns, and taking the transpose twice returns the original matrix.
  • The transpose distributes over sums, (A+B)T=AT+BT(A+B)^{\mathsf T} = A^{\mathsf T} + B^{\mathsf T}, but reverses the order in products, (AB)T=BTAT(AB)^{\mathsf T} = B^{\mathsf T} A^{\mathsf T}.
  • A matrix is symmetric when AT=AA^{\mathsf T} = A and skew-symmetric when AT=AA^{\mathsf T} = -A; every square matrix is the sum of a symmetric part 12(A+AT)\tfrac{1}{2}(A + A^{\mathsf T}) and a skew-symmetric part 12(AAT)\tfrac{1}{2}(A - A^{\mathsf T}).