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:
512−1T=[512−1]
A square matrix.[12−13]T=[1−123]
A 3 by 3 matrix.−13255366−1T=−15635623−1
Verifying (A+B)T=AT+BT
We are given AT and B, so first recover A and BT.
AT=3−12421⟹A=[34−1221]
B=[−112213]⟹BT=−121123
Left side. Add A and B, then transpose:
A+B=[251434],(A+B)T=213544
Right side. Add the two transposes:
AT+BT=3−12421+−121123=213544
Both sides agree, so (A+B)T=AT+BT. (The companion result (A−B)T=AT−BT is left as practice.)
Finding (A+2B)T
Given AT=[−2132] and B=[−1102].
Recover A and scale B:
A=[−2312],2B=[−2204]
Then add and transpose:
A+2B=[−4516],(A+2B)T=[−4156]
Proving (AB)T=BTAT
Here A is a column matrix and B is a row matrix:
A=1−43,B=[−121]
Left side. The product AB is a 3×3 matrix (each entry is one element of A times one element of B):
AB=−14−32−861−43,(AB)T=−1214−8−4−363
Right side. With BT=−121 and AT=[1−43]:
BTAT=−1214−8−4−363
The two results are equal, so (AB)T=BTAT.
Rotation matrix: verifying ATA=I
Let A=[cosα−sinαsinαcosα], so AT=[cosαsinα−sinαcosα].
Multiply AT by A and use sin2α+cos2α=1:
ATA=[cos2α+sin2αsinαcosα−cosαsinαcosαsinα−sinαcosαsin2α+cos2α]=[1001]=I
Symmetric and skew-symmetric matrices
For A=[1657] we have AT=[1567].
A+AT is symmetric (it equals its own transpose):
A+AT=[2111114]
A−AT is skew-symmetric (its transpose is its negative):
A−AT=[01−10],(A−AT)T=[0−110]=−(A−AT)
Expressing a matrix as a sum
Any square matrix splits as A=P+Q, where P=21(A+AT) is symmetric and Q=21(A−AT) is skew-symmetric. For A=[315−1]:
P=21[666−2]=[333−1],Q=21[0−440]=[0−220]
Indeed P+Q=[315−1]=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, but reverses the order in products, (AB)T=BTAT.
A matrix is symmetric when AT=A and skew-symmetric when AT=−A; every square matrix is the sum of a symmetric part 21(A+AT) and a skew-symmetric part 21(A−AT).