Exercises — Transpose — definition, properties
This page is a self-test ladder. Each problem builds on the parent note and climbs from "can you spot it?" to "can you invent with it?". Every symbol used here was defined there — but we re-anchor each idea so you can follow from line one.
Reminder of our one core rule, in plain words: the transpose is the matrix you get by turning every row of into a column. Formally, the entry in row , column of is the entry in row , column of :
The figure below shows this rule in action on the very first exercise — study it before you start.

L1 — Recognition
Problem 1.1
Write the transpose of
Recall Solution 1.1
has rows and columns, so has rows and columns.
- Row 1 of is → this becomes column 1 of (the blue block in the figure).
- Row 2 of is → this becomes column 2 of (the green block). Check the rule: should equal . ✓
Problem 1.2
Is this matrix symmetric, skew-symmetric, or neither?
Recall Solution 1.2
A matrix is symmetric if flipping it gives back the same matrix (), and skew-symmetric if flipping it gives the negative ().
First, the diagonal is all zeros — that's the tell-tale sign of skew-symmetric (a symmetric matrix can have any diagonal, but a skew one must have zeros because forces ).
Flip it: So is skew-symmetric. See Symmetric Matrices.
L2 — Application
Problem 2.1
For and , verify by computing both sides.
Recall Solution 2.1
Left side — multiply then flip. Recall matrix product: entry = (row of first) · (column of second). Flip it: Right side — flip each, then multiply in reversed order. They match. ✓ See Matrix Operations.
Problem 2.2
Given , compute and confirm it equals .
Recall Solution 2.2
Separately: Equal. ✓ Scalars pass straight through the flip — the mirror doesn't care about a stretch.
L3 — Analysis
Problem 3.1
A square matrix satisfies (symmetric). If , find .
Recall Solution 3.1
Symmetric means . Compare position with position : For symmetry they must be equal, so . Picture: the entries and sit as mirror images across the diagonal. Symmetry forces the mirror image to be identical.
Problem 3.2
Every square matrix can be split into a symmetric part and a skew-symmetric part via Verify this decomposition for , and check is symmetric and is skew.
Recall Solution 3.2
Symmetric part: Skew part: Check symmetry: ✓ (mirror image identical). Check skew: ✓ (zero diagonal, off-diagonals negate). Sum: ✓
Why this works: using the double-transpose rule . The shares equally between the "mirror-friendly" and "mirror-flipping" halves.
L4 — Synthesis
Problem 4.1
Prove that for any matrix , the product is always symmetric.
Recall Solution 4.1
Goal: show . Apply the product-reversal rule with and : Now use double-transpose : Since the flip returns the same matrix, is symmetric.
Why this matters: appears everywhere — least squares, inner products, and the definition of orthogonal matrices where . Its guaranteed symmetry is the reason its eigenvalues are always real.
Problem 4.2
is invertible. Prove , and use it to compute for
Recall Solution 4.2
Proof. Start from the defining identity (the inverse is what multiplies to give the identity ). Flip both sides and use the reversal rule: (We used : the identity is symmetric.) This says is the matrix that multiplies to give — i.e. it is . So .
Computation. First . For a matrix the inverse is . Here : By the theorem, — just flip: See Matrix Inverse and Determinants (the is ).
L5 — Mastery
Problem 5.1
Show that if is skew-symmetric () and , then the diagonal is all zeros, and check the degenerate case.
Recall Solution 5.1
Skew means for all . Set (a diagonal entry): So every diagonal entry is . ✓
Degenerate case: . Its transpose is itself, . Skew requires , forcing . So the only skew-symmetric matrix is — consistent with "diagonal must be zero", since a matrix is all diagonal.
Problem 5.2
Let be . Determine the sizes of and , decide which (if either) can be invertible, and compute both for
Recall Solution 5.2
Sizes. is , so is .
- : .
- : .
Both are square and (by Problem 4.1's argument) symmetric.
Compute (the smaller one):
A A^T = \begin{bmatrix} 1{\cdot}1+0{\cdot}0+2{\cdot}2 & 1{\cdot}0+0{\cdot}1+2{\cdot}1 \\ 0{\cdot}1+1{\cdot}0+1{\cdot}2 & 0{\cdot}0+1{\cdot}1+1{\cdot}1 \end{bmatrix} = \begin{bmatrix} 5 & 2 \\ 2 & 2 \end{bmatrix}.$$ Its determinant is $5(2)-2(2) = 6 \ne 0$, so $A A^T$ **is invertible**. **Compute $A^T A$:** $$A^T A = \begin{bmatrix} 1 & 0 & 2 \\ 0 & 1 & 1 \\ 2 & 1 & 5 \end{bmatrix}.$$ **Can it be invertible?** No. $A$ has only $2$ rows, so its rows can span at most a $2$-dimensional space — the $3\times 3$ result cannot have full rank $3$. Indeed row 3 $=2\cdot(\text{row 1}) + 1\cdot(\text{row 2})$, so $\det(A^T A) = 0$: **not invertible**. **The lesson:** for a "wide" matrix ($m<n$), only $A A^T$ (the small square) can be invertible; the big square $A^T A$ is always singular. This governs which normal-equation form you can solve. See [[Determinants]].Recall Self-audit checklist
Can you now, without notes... Flip a non-square matrix and state its new size? ::: Yes — rows become columns, . Recall why reverses order? ::: The summed inner index swaps sides, forcing the factors to swap. Prove is always symmetric? ::: . Say when ? ::: Only for orthogonal matrices, where .