Once matrix multiplication is available, structure starts to matter. Some matrices are easier to understand because their entries line up in a special pattern. The transpose is one of the main tools for detecting that 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.
Worked example
Compute a transpose
Let
Then
The matrix becomes a matrix because rows and columns swap roles.
Two basic identities are worth learning early:
When products are defined, transpose also reverses the order:
The reversal is not cosmetic. It reflects the fact that the row-column pairing has been turned around.
Symmetric and skew-symmetric matrices
Some square matrices agree with their transpose; others differ from it in a very controlled way.
Definition
Symmetric and skew-symmetric matrices
Let be a square matrix.
- is symmetric if .
- is skew-symmetric if .
For a symmetric matrix, reflecting across the main diagonal changes nothing. For a skew-symmetric matrix, reflection changes every entry by a minus sign.
Worked example
Classify two matrices
The matrix
is symmetric because transposing it leaves the entries unchanged.
The matrix
is skew-symmetric because
Notice that every diagonal entry of a skew-symmetric real matrix must be 0,
because the diagonal entry must equal its own negative.
Order matters: commuting versus non-commuting matrices
The course notes emphasize that matrix multiplication is not commutative in general. Still, some pairs of matrices do commute.
Definition
Commuting matrices
Two square matrices and of the same size commute if
Commuting matrices are special. They are not the default.
Theorem
Matrix multiplication is not commutative in general
There exist square matrices and such that .
Worked example
A concrete non-commuting pair
Let
Then
So .
This is why you must preserve order in every matrix identity. Reversing factors changes the statement.
Special matrices are easier to read because of their shape
Several standard matrix families are defined by the locations of zero entries. These shapes matter because they simplify later computations.
- A diagonal matrix has nonzero entries allowed only on the main diagonal.
- An upper-triangular matrix has
0below the main diagonal. - A lower-triangular matrix has
0above the main diagonal.
For such matrices, multiplication and invertibility often become easier to analyze because the zero pattern survives useful operations.
Block matrices group information on purpose
Sometimes a large matrix is best read as smaller submatrices pasted together. That is called block notation.
For example,
is a block matrix made from four smaller blocks. Block notation is not a new kind of matrix. It is a disciplined way to see structure inside a large one.
When the sizes match correctly, block addition and block multiplication follow the same formal patterns as ordinary matrix operations. The advantage is that you can reason about large matrices one chunk at a time.
Common mistakes
Common mistake
Do not transpose a product in the same order
The correct identity is , not . The order reverses.
Common mistake
Symmetric does not mean every pair of matrices commutes
Symmetry is a property of one matrix. Commuting is a property of a pair of matrices. They answer different questions.
Quick checks
Quick check
If is , what is the size of ?
Swap rows and columns.
Solution
Answer
Quick check
What can you say about the diagonal entries of a real skew-symmetric matrix?
Use the equation on the diagonal.
Solution
Answer
Exercise
Quick check
Why is every diagonal matrix equal to its transpose?
Answer from the location of its possible nonzero entries.
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.