Unit Matrix — Definition, Formula & Examples
A unit matrix is a square matrix that has 1 in every diagonal position and 0 in every off-diagonal position. It is the standard synonym for the identity matrix, often denoted or .
The unit matrix of order , denoted , is the matrix whose entries satisfy , the Kronecker delta: the entry in row , column equals 1 when and 0 when . It serves as the multiplicative identity in the ring of matrices.
Key Formula
Where:
- = The unit (identity) matrix of size n × n
- = Row and column indices, respectively
- = Kronecker delta, equal to 1 when i = j and 0 otherwise
Worked Example
Problem: Verify that multiplying the 3×3 unit matrix by a matrix A returns A, where A = [[2, 5, 1], [0, 3, 4], [7, 6, 8]].
Write the 3×3 unit matrix: Place 1s along the main diagonal and 0s everywhere else.
Multiply I₃ · A: Each row of I₃ picks out exactly the corresponding row of A, leaving every entry unchanged.
Answer: , confirming that the unit matrix acts as the multiplicative identity.
Why It Matters
The unit matrix appears whenever you solve systems via row reduction — you reduce the coefficient matrix to to read off solutions. It is also central to computing matrix inverses: if , then . In applied fields like computer graphics and machine learning, identity matrices initialize transformations and weight matrices.
Common Mistakes
Mistake: Confusing the unit matrix with a matrix of all 1s.
Correction: A unit matrix has 1s only on the main diagonal. The off-diagonal entries are all 0. A matrix filled entirely with 1s is sometimes called a ones matrix or matrix of ones — it is not the identity.
