Overview
Certain matrices have special structures that give them useful properties. Recognizing these special forms simplifies many calculations.
Symmetric Matrices
A matrix A is symmetric if AT=A.
A=123256369
Properties
- Only square matrices can be symmetric
- aij=aji for all i,j
- Eigenvalues are real
- Eigenvectors for distinct eigenvalues are orthogonal
- A+AT is always symmetric
Skew-Symmetric Matrices
A matrix A is skew-symmetric if AT=−A.
A=0−2320−4−340
Properties
- Diagonal entries are zero
- aij=−aji
- A−AT is always skew-symmetric
- Any matrix A=2A+AT+2A−AT (symmetric + skew-symmetric)
Orthogonal Matrices
A matrix Q is orthogonal if QTQ=QQT=I.
Equivalently: QT=Q−1
Properties
- Columns are orthonormal vectors
- Rows are orthonormal vectors
- ∣det(Q)∣=1
- Preserves lengths: ∥Qx∥=∥x∥
- Preserves angles
Examples
Rotation matrix:
Q=[cosθsinθ−sinθcosθ]
Triangular Matrices
Upper Triangular
All entries below main diagonal are zero:
U=u1100u12u220u13u23u33
Lower Triangular
All entries above main diagonal are zero:
L=l11l21l310l22l3200l33
Properties
- Product of upper triangular matrices is upper triangular
- Product of lower triangular matrices is lower triangular
- Determinant is product of diagonal entries
- Eigenvalues are the diagonal entries
Diagonal Matrices
Only diagonal entries are non-zero:
D=d1000d2000d3
Properties
- Easy to compute powers: Dn has entries din
- Easy to invert: D−1 has entries 1/di (if all di=0)
- Diagonal matrices commute: D1D2=D2D1
Nilpotent Matrices
A matrix N is nilpotent if Nk=O for some positive integer k.
N=000100010
N2=000000100N3=O
Idempotent Matrices
A matrix P is idempotent if P2=P.
P=[1000]
P2=[1000]=P
Eigenvalues are 0 or 1.
Involutory Matrices
A matrix A is involutory if A2=I.
Equivalently: A=A−1
A=[100−1]
A2=I
Summary Table
| Type | Definition | Key Property |
|---|
| Symmetric | AT=A | Real eigenvalues |
| Skew-symmetric | AT=−A | Diagonal is zero |
| Orthogonal | QTQ=I | Preserves lengths |
| Upper triangular | aij=0 for i>j | Easy back-substitution |
| Lower triangular | aij=0 for i<j | Easy forward-substitution |
| Diagonal | aij=0 for i=j | Easy powers/inverse |
| Nilpotent | Ak=O | Eigenvalues all zero |
| Idempotent | A2=A | Eigenvalues 0 or 1 |
| Involutory | A2=I | A=A−1 |