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.
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: aij means "the number sitting in row i, column j." The first subscript is the row count-down, the second is the column count-across. So a23 is the entry in row 2, column 3. The whole matrix is often called A, and its entries are the various aij.
Order (shape). We describe a grid's shape as rows×columns. Throughout this page, when we need letters for a general shape we write m for the number of rows and n for the number of columns, so a matrix of order m×n has m rows and n columns. A third letter p 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.
The transpose is the single move behind symmetric and skew-symmetric, so look at exactly what it does — watch the 2 and the 4 trade places when we reflect across the diagonal:
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:
Now the traps. Every item is beatable using only the boxed vocabulary above.
True — off-diagonal entries are all 0, so aij=0=aji automatically, meaning AT=A.
TF2. Every symmetric matrix is diagonal.
False — symmetry only demands aij=aji; those mirrored pairs may be non-zero, e.g. [1223] is symmetric but not diagonal.
TF3. The identity matrix is a diagonal matrix.
True — I=diag(1,…,1) 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 — OT=O (symmetric) and OT=−O since −O=O (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. [1023] has AT=A and AT=−A.
TF6. A skew-symmetric matrix must have all diagonal entries zero.
True — the condition aii=−aii forces 2aii=0, so each diagonal entry is 0.
TF7. Any matrix with a zero diagonal is skew-symmetric.
False — zero diagonal is necessary but not sufficient; you still need aij=−aji for the off-diagonal pairs, e.g. [0520] fails.
TF8. A 1×1 matrix [7] 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 AT=A, but transposing a 1×n row matrix (with n>1) gives an n×1 column matrix of a different shape, so equality is impossible unless n=1.
TF10. If AT=A and AT=−A both hold, then A=O.
True — the two give A=−A, so 2A=O, hence A=O; the zero matrix is the only matrix that is simultaneously symmetric and skew-symmetric.
TF11. A diagonal matrix can equal the zero matrix.
True — diag(0,0,…,0)=O; "diagonal" allows any diagonal values, including all zeros.
SE1. "[2−33−2] is skew-symmetric because the off-diagonal entries are negatives of each other."
The off-diagonal check passes, but the diagonal entries 2 and −2 are non-zero, violating the mandatory aii=0 rule; it is not skew-symmetric.
SE2. "diag(2,0,−5) is not a diagonal matrix because one diagonal entry is 0."
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 [1005] has zeros off the diagonal, it is the identity matrix."
It is diagonal, but the identity I additionally requires every diagonal entry to be 1; a 5 on the diagonal disqualifies it.
SE4. "The matrix [122435] is symmetric because a12=a21=2."
Symmetry is only defined for square matrices; this is 2×3 (2 rows, 3 columns), so AT is 3×2 and can never equal A.
SE5. "AO=O so multiplying by the zero matrix always gives back the same-sized zero matrix as A."
The product AO is zero, but its shape follows the multiplication rule, so it need not match A's shape — for A of order m×n (rows × columns) times O of order n×p, the result is m×p.
SE6. "A+O=A works for any zero matrix O."
Only when O has the same order as A; addition requires matching dimensions, so O must be the zero matrix of A'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 (AT=A); transposing changes nothing.
WQ1. Why does the diagonal of a skew-symmetric matrix carry no information?
Because every diagonal entry is forced to 0 by aii=−aii, so all the "content" lives strictly off the diagonal.
WQ2. Why is the identity matrix called the "1" of matrices?
Because AI=IA=A for any compatible A, mirroring how multiplying an ordinary number by 1 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 AT=A compares A 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 Dk=diag(d1k,…,dnk) — a key reason Diagonalization is prized.
EC1. Is the empty-looking 2×2 zero matrix [0000] 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 0, and the off-diagonal entries are already 0.
EC3. What is the transpose of a 1×1 matrix, and what does that make it?
A 1×1 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 1×1 matrix is skew-symmetric only if its lone diagonal entry is 0, i.e. only [0] qualifies.
EC5. Can a column matrix ever be symmetric?
Only if it is 1×1; for more than one row its transpose is a row matrix of a different shape, so AT=A.
EC6. If every entry of a square matrix equals the same constant c, when is it symmetric?
Always — aij=c=aji holds for all pairs, so a constant square matrix is symmetric for any c (though skew-symmetric only when c=0).
EC7. Does a diagonal matrix with a repeated value like diag(3,3,3) have a special name?
Yes — it is a scalar matrix, equal to 3I; it scales every axis identically and behaves like the number 3 under multiplication.
Recall One-line self-test
Name a matrix that is symmetric, diagonal, and has an inverse. ::: Any diag(d1,…,dn) with all di=0 — e.g. the identity I; it is diagonal (hence symmetric) and invertible because no axis collapses.