Once matrix multiplication is available, the shape of a matrix starts to matter as much as its numerical entries. The transpose is the first tool in this section that lets us read a matrix by its geometry: rows become columns, and the main diagonal becomes the axis of reflection. That simple idea explains symmetry, skew-symmetry, commuting patterns, and block structure.
Transpose swaps rows and columns
Definition
Transpose
If is an matrix, then its transpose is the
matrix whose (j,i) entry is .
Equivalently,
So every row of becomes a column of , and every column of becomes a row.
This is not a new operation that changes the numbers in a mysterious way. It is purely a re-reading of the same entries in the opposite orientation.
Worked example
Compute a transpose
Let
Then
The matrix becomes a matrix because rows and columns swap roles.
Two basic identities should be treated as part of the definition-level vocabulary of the subject:
When products are defined, transpose reverses the order:
That reversal is not a cosmetic detail. It reflects the fact that matrix multiplication is built from row-column pairings, and transposition switches the role of rows and columns.
Worked example
Transpose identities in action
Take
Then
On the other hand,
The product rule is similar, but the order matters:
while
Theorem
Basic properties of transpose
For compatible matrices:
The proof of the product rule is worth reading carefully once. To compare and , you compare their corresponding entries. The transpose does not change the numbers involved in the summation; it only changes the direction in which those numbers are arranged.
Symmetric and skew-symmetric matrices
Definition
Symmetric and skew-symmetric matrices
Let be a square matrix.
- is symmetric if .
- is skew-symmetric if .
Symmetry says the matrix matches its reflection across the main diagonal. Skew-symmetry says the reflected matrix is the negative of the original.
Worked example
Recognize symmetry
The matrix
is symmetric, because the (i,j) and (j,i) entries agree.
The matrix
is skew-symmetric, because the transpose changes every off-diagonal entry's
sign and leaves the diagonal as 0.
Three quick consequences are especially useful:
- every diagonal entry of a real skew-symmetric matrix is
0 - the zero matrix is both symmetric and skew-symmetric
- the identity matrix is symmetric
The third item is a special case of the fact that diagonal matrices are fixed by transpose.
Theorem
Useful transpose-based identities
For every square matrix ,
So is symmetric and is skew-symmetric.
Proof
Why the identities hold
The previous result is the starting point for the most important structural fact in this section.
Theorem
Decomposition into symmetric and skew-symmetric parts
Every square matrix can be written uniquely as
where is symmetric and is skew-symmetric. In fact,
The proof is a good model for how the course turns rough intuition into a formal argument.
Worked example
Decompose a matrix
Let
Then
So
and
The first matrix is symmetric, the second is skew-symmetric, and their sum is .
There is also a very useful symmetric pattern that appears whenever a product is paired with its transpose.
Theorem
Products with a transpose are symmetric
If the product is defined, then both and are symmetric.
Proof
One-line proof
This identity is one of the main reasons transpose shows up again in later topics such as orthogonality, projections, and least-squares style arguments.
Commuting and non-commuting matrices
Definition
Commuting matrices
Two matrices and of the same size commute if
For addition, commutativity is automatic. For multiplication, it is exceptional. This is one of the most important differences between scalar algebra and matrix algebra.
The zero matrix and the identity matrix commute with every square matrix of the same size. Diagonal matrices of the same size also commute with one another, because their products remain diagonal and the diagonal entries multiply in the ordinary commutative way.
Worked example
A non-commuting pair
Take
Then
So .
That kind of example is not a curiosity. It is the reason matrix identities must always preserve the order of factors.
Theorem
A useful skew-symmetric commuting test
If and are skew-symmetric square matrices, then
Proof
Why this is true
Worked example
Symmetric times skew-symmetric, with commutation
Let
Here is symmetric and is skew-symmetric, but they do not commute:
If two matrices of this kind do commute, then their product is skew-symmetric, because
Special matrices
Special matrices are defined by where the zero entries must be. That makes them much easier to read and often much easier to multiply.
Definition
Diagonal, upper-triangular, and lower-triangular matrices
- A diagonal matrix has all off-diagonal entries equal to
0. - An upper-triangular matrix has all entries below the main diagonal equal to
0. - A lower-triangular matrix has all entries above the main diagonal equal to
0.
Worked example
Transpose of a triangular matrix
If
then
So the transpose of an upper-triangular matrix is lower-triangular.
Two structural facts are worth keeping in mind:
- the product of two diagonal matrices is diagonal
- the product of two upper-triangular matrices is upper-triangular
- the product of two lower-triangular matrices is lower-triangular
For diagonal matrices, the product is especially simple:
That is why diagonal matrices of the same size commute with each other.
Common mistake
Do not confuse the matrix with its zero pattern
An upper-triangular matrix may have many nonzero entries above the diagonal, but never below it. A diagonal matrix is more restrictive: every off-diagonal entry must be zero.
Block matrices
Large matrices are often easier to read if we group entries into blocks. A block matrix is still just a matrix; the blocks are a way of organizing it.
Definition
Block matrix
If a matrix is partitioned by drawing horizontal and vertical cuts, the resulting submatrices are called blocks.
For example,
where
At the block level, transpose simply swaps the blocks and transposes each block:
This is the same row/column swap principle as before, just applied to grouped pieces instead of individual entries.
Worked example
Block multiplication
Suppose the partition sizes are compatible, and write
Then
The formula looks exactly like ordinary matrix multiplication, but each entry is now a block product.
The key condition is compatibility: the inner block sizes must match so that each block product is meaningful. If the partitions do not align, block multiplication is not even defined.
Common mistakes
Common mistake
Transpose reverses products
The correct identity is , not .
Common mistake
Symmetric does not mean commuting
Symmetric is a property of one matrix. Commuting is a property of two matrices. They are different statements.
Common mistake
A skew-symmetric real matrix has a zero diagonal
If , then each diagonal entry must equal its own negative, so every
diagonal entry is 0.
Common mistake
Block sizes must line up
You may only multiply block matrices when the blocks are partitioned compatibly. Treating blocks as letters is only valid when the block products actually make sense.
Quick checks
Quick check
If is , what is the size of ?
Swap rows and columns.
Solution
Answer
Quick check
What must every diagonal entry of a real skew-symmetric matrix be?
Use on the diagonal.
Solution
Answer
Quick check
Which identity is correct: or ?
Remember that transpose reverses the order of multiplication.
Solution
Answer
Quick check
If is symmetric and is skew-symmetric, what is and what is ?
Read the definitions directly.
Solution
Answer
Guided exercises
Quick check
Find the symmetric and skew-symmetric parts of .
Use and .
Solution
Guided solution
Quick check
Let and be symmetric matrices. If , why is AB symmetric?
Use the transpose identity and the commuting assumption.
Solution
Guided solution
Related notes
This note builds on 3.1 Matrix multiplication and identity matrices. For solution-set structure, continue to 4.1 Homogeneous systems and null space.