2.6.2 · D5Matrices & Determinants — Introduction

Question bank — Types of matrices — row, column, square, diagonal, identity, zero, symmetric, skew-symmetric

1,951 words9 min readBack to topic

This is a reasoning gym for Types of Matrices. No heavy arithmetic here — every item hunts a misconception or a boundary case. Read the prompt, answer out loud, then reveal.

The vocabulary this page uses (built here, not borrowed)

Everything on this page runs on a handful of ideas, and we build each one right here so nothing depends on remembering another note.

Reading a cell's address. A matrix is a grid of numbers. To point at one cell we use a two-number address written as a subscript: means "the number sitting in row , column ." The first subscript is the row count-down, the second is the column count-across. So is the entry in row , column . The whole matrix is often called , and its entries are the various .

Order (shape). We describe a grid's shape as . Throughout this page, when we need letters for a general shape we write for the number of rows and for the number of columns, so a matrix of order has rows and columns. A third letter shows up only when we chain two matrices in a product.

The figure below is your visual anchor — the principal diagonal is the staircase of cells running top-left to bottom-right, drawn in blue.

Figure — Types of matrices — row, column, square, diagonal, identity, zero, symmetric, skew-symmetric

The transpose is the single move behind symmetric and skew-symmetric, so look at exactly what it does — watch the and the trade places when we reflect across the diagonal:

Figure — Types of matrices — row, column, square, diagonal, identity, zero, symmetric, skew-symmetric

Now apply that mirror move to a whole matrix and ask when the reflection lands somewhere special. The next figure puts the two special cases side by side:

Figure — Types of matrices — row, column, square, diagonal, identity, zero, symmetric, skew-symmetric

Now the traps. Every item is beatable using only the boxed vocabulary above.


True or false — justify

TF1. Every diagonal matrix is symmetric.
True — off-diagonal entries are all , so automatically, meaning .
TF2. Every symmetric matrix is diagonal.
False — symmetry only demands ; those mirrored pairs may be non-zero, e.g. is symmetric but not diagonal.
TF3. The identity matrix is a diagonal matrix.
True — has zeros off the diagonal and ones on it; "all ones" is just a special choice of diagonal entries.
TF4. A zero square matrix is both symmetric and skew-symmetric.
True — (symmetric) and since (skew-symmetric); it is the only matrix that is both.
TF5. Every square matrix is either symmetric or skew-symmetric.
False — most square matrices are neither; e.g. has and .
TF6. A skew-symmetric matrix must have all diagonal entries zero.
True — the condition forces , so each diagonal entry is .
TF7. Any matrix with a zero diagonal is skew-symmetric.
False — zero diagonal is necessary but not sufficient; you still need for the off-diagonal pairs, e.g. fails.
TF8. A matrix is a row matrix, a column matrix, and a square matrix simultaneously.
True — it has one row, one column, and equal row/column count, so all three labels apply at once.
TF9. A row matrix can be symmetric.
False — symmetry needs , but transposing a row matrix (with ) gives an column matrix of a different shape, so equality is impossible unless .
TF10. If and both hold, then .
True — the two give , so , hence ; the zero matrix is the only matrix that is simultaneously symmetric and skew-symmetric.
TF11. A diagonal matrix can equal the zero matrix.
True — ; "diagonal" allows any diagonal values, including all zeros.

Spot the error

SE1. " is skew-symmetric because the off-diagonal entries are negatives of each other."
The off-diagonal check passes, but the diagonal entries and are non-zero, violating the mandatory rule; it is not skew-symmetric.
SE2. " is not a diagonal matrix because one diagonal entry is ."
A zero on the diagonal is perfectly allowed; diagonal means only the off-diagonal entries must be zero, so this is a valid diagonal matrix.
SE3. "Since has zeros off the diagonal, it is the identity matrix."
It is diagonal, but the identity additionally requires every diagonal entry to be ; a on the diagonal disqualifies it.
SE4. "The matrix is symmetric because ."
Symmetry is only defined for square matrices; this is (2 rows, 3 columns), so is and can never equal .
SE5. " so multiplying by the zero matrix always gives back the same-sized zero matrix as ."
The product is zero, but its shape follows the multiplication rule, so it need not match 's shape — for of order (rows columns) times of order , the result is .
SE6. " works for any zero matrix ."
Only when has the same order as ; addition requires matching dimensions, so must be the zero matrix of 's exact size.
SE7. "A symmetric matrix stays symmetric under any relabelling, so its transpose is a different matrix."
For a symmetric matrix the transpose is literally the same matrix (); transposing changes nothing.

Why questions

WQ1. Why does the diagonal of a skew-symmetric matrix carry no information?
Because every diagonal entry is forced to by , so all the "content" lives strictly off the diagonal.
WQ2. Why is the identity matrix called the "1" of matrices?
Because for any compatible , mirroring how multiplying an ordinary number by leaves it unchanged (the identity built above is exactly this "do-nothing" multiplier — see Matrix Operations).
WQ3. Why does symmetry require a square matrix?
The condition compares with its transpose; those two only have the same shape when the number of rows equals the number of columns.
WQ4. Why are diagonal matrices so easy to raise to powers?
Multiplying diagonal matrices just multiplies matching diagonal entries with no cross-terms, so — a key reason Diagonalization is prized.
WQ5. Why do only square matrices have a determinant and eigenvalues?
These notions describe how a matrix maps a space to itself (same input and output dimension), which requires equal rows and columns.
WQ6. Why is "" enough to guarantee ?
Because by definition (the mirror reflection above), so if for every pair, then and match entry-for-entry.
WQ7. Why is a diagonal matrix a "pure scaling" transformation geometrically?
Each coordinate axis is stretched by its diagonal entry with no mixing between axes, so nothing rotates or shears (see Linear Transformations).
WQ8. Why can a scaling inverse fail for a diagonal matrix?
If any diagonal entry is , that axis is collapsed to nothing and cannot be undone, so the matrix has no inverse.

Edge cases

EC1. Is the empty-looking zero matrix diagonal?
Yes — all off-diagonal entries are zero, satisfying the diagonal condition; its diagonal entries simply happen to be zero too.
EC2. Can a matrix be a diagonal matrix and skew-symmetric at the same time?
Only the zero matrix — diagonal allows non-zero diagonal entries, but skew-symmetry forces them all to , and the off-diagonal entries are already .
EC3. What is the transpose of a matrix, and what does that make it?
A matrix equals its own transpose (nothing to flip), so it is automatically symmetric — and, being a single number, also trivially diagonal.
EC4. Is a single number treated as a matrix skew-symmetric?
A matrix is skew-symmetric only if its lone diagonal entry is , i.e. only qualifies.
EC5. Can a column matrix ever be symmetric?
Only if it is ; for more than one row its transpose is a row matrix of a different shape, so .
EC6. If every entry of a square matrix equals the same constant , when is it symmetric?
Always — holds for all pairs, so a constant square matrix is symmetric for any (though skew-symmetric only when ).
EC7. Does a diagonal matrix with a repeated value like have a special name?
Yes — it is a scalar matrix, equal to ; it scales every axis identically and behaves like the number under multiplication.
Recall One-line self-test

Name a matrix that is symmetric, diagonal, and has an inverse. ::: Any with all — e.g. the identity ; it is diagonal (hence symmetric) and invertible because no axis collapses.