The defining property of each type, together with its most important consequence, can be collected for quick reference.The identity matrix (Iij=δij) is the multiplicative identity. Diagonal matrices (off-diagonal entries all zero) have trivially simple powers, products, and inverses. Upper and lower triangular matrices (zeros below or above the diagonal) have eigenvalues visible on the diagonal. Symmetric matrices (A=AT) have real eigenvalues and orthogonal eigenvectors. Skew-symmetric matrices (A=−AT) have zero diagonal and purely imaginary eigenvalues. Orthogonal matrices (QT=Q−1) preserve lengths and angles. Nilpotent matrices (Ak=O) have all eigenvalues zero. Idempotent matrices (A2=A) are projections with rank=tr. Involutory matrices (A2=I) are their own inverse. Permutation matrices (one 1 per row and column) reorder coordinates and are always orthogonal.These categories are not mutually exclusive. The identity matrix is diagonal, symmetric, orthogonal, triangular, idempotent, and involutory simultaneously. A 1×1 zero matrix is diagonal, symmetric, skew-symmetric, triangular, nilpotent, and singular. Recognizing which types a given matrix belongs to is often the fastest route to understanding its behavior. The eleven types below are grouped by what their defining condition constrains: a pattern of zeros, a relation to the transpose, or a power of the matrix. That grouping is not filing — it predicts the columns. Every type defined by a transpose condition has something to say about its eigenvalues being real or imaginary; every type defined by a power condition has integer eigenvalues, because the condition is a polynomial equation the eigenvalues must satisfy.
Matrix · types
Eleven types and what each one forces
Each type is a condition on the entries, and the condition determines everything beside it. Grouped by what the condition constrains — the pattern of zeros, the transpose, or a power of the matrix.
1gaps
Defined by a pattern of zeros4
Identity§ 2Iij=1 if i=j, else 0 key consequenceAI=IA=A The multiplicative identity, and the one matrix that commutes with everything of its size. Every type below is a generalisation of it in some direction.
inverse1/di entrywise key consequenceproducts and powers act entrywise
Everything is entrywise — which is the whole reason diagonalization is worth the effort of computing eigenvectors.
eigenvaluesthe aii inverseupper triangular
key consequenceclosed under products
The determinant and the spectrum are both read straight off the diagonal, which is what makes LU worth computing.
eigenvaluesthe aii inverselower triangular
key consequenceclosed under products
The mirror image, and the L of an LU factorization. The transpose of one is the other. Defined by a transpose condition3
detnot stated
eigenvaluesall real
inversesymmetric
key consequenceA=QDQT, Q orthogonal The spectral theorem case: not merely diagonalizable but orthogonally so, which means P−1 is a transpose and nothing has to be inverted.
eigenvalues0 or ±bi in pairs inverseskew-symmetric
key consequencerank is always even
Setting i=j in the condition gives aii=−aii, so the diagonal vanishes. Odd order then forces det=0, since the eigenvalues pair off and one is left over at zero.
eigenvalues∣λ∣=1 inverseQT key consequencepreserves lengths and angles
The inverse is free — it is the transpose. This is what makes orthogonal factors numerically valuable: they cannot amplify error, since they change no lengths.
Defined by a power condition4
inversenone exists
key consequence(I−A)−1=I+A+⋯+Ak−1 Never diagonalizable unless A=O: every eigenvalue is zero, so a diagonal form would be the zero matrix and hence so would A.
eigenvalues0 or 1 only inverseonly when A=I key consequencerank(A)=tr(A) A projection. Rank equals trace because the trace sums the eigenvalues and they are all zero or one — so it counts the ones.
eigenvalues+1 or −1 only inverseitself
key consequenceA−1=A Its own inverse. Reflections are the geometric case, and the eigenvalue −1 is the direction being reflected across.
eigenvaluesroots of unity
inversePT key consequencereorders coordinates
Orthogonal, so the inverse is the transpose — and it is the P of PA=LU, where it records the row swaps made during pivoting. The power conditions are worth reading as polynomial equations. A2=A says every eigenvalue satisfies λ2=λ, so λ∈{0,1}; A2=I says λ2=1, so λ=±1; Ak=O says λk=0, so every eigenvalue is zero. Three types, three constraints, and all of them fall out of substituting an eigenvector into the defining equation. Two entries are worth contrasting directly. A nilpotent matrix has every eigenvalue zero and is never diagonalizable unless it is the zero matrix — the eigenvalues say nothing is happening while the matrix plainly does something, which is precisely what a defective matrix looks like. An idempotent matrix also has a constrained spectrum, but it is diagonalizable, and its rank equals its trace. Same kind of condition, opposite structural outcome.