Identity Matrix — Properties and Role in Linear Algebra
Understand the identity matrix, the multiplicative identity in linear algebra. Learn its properties, how it relates to inverses, and its role in transformations.
Detailed Explanation
The Identity Matrix
The identity matrix I (or I_n for an n x n identity) has 1s on the main diagonal and 0s everywhere else:
I_3 = | 1 0 0 |
| 0 1 0 |
| 0 0 1 |
Defining Property
For any matrix A of compatible dimensions:
A * I = I * A = A
This makes I the multiplicative identity for matrices, analogous to the number 1 for scalar multiplication.
Properties
- det(I) = 1 — the identity has determinant 1
- I^(-1) = I — the identity is its own inverse
- I^T = I — the identity is symmetric
- I^n = I — any power of I is still I
- All eigenvalues are 1 — with multiplicity n
- trace(I_n) = n — the trace equals the dimension
Role in Definitions
The identity matrix appears in many fundamental definitions:
- Inverse: A^(-1) is the matrix such that A * A^(-1) = I
- Orthogonal matrix: Q is orthogonal if Q^T * Q = I
- Eigenvalue equation: Av = lambda * v can be written as (A - lambda * I)v = 0
- Characteristic polynomial: det(A - lambda * I) = 0
As a Transformation
The identity matrix represents the identity transformation — it maps every vector to itself. In computer graphics, it serves as the starting point before applying rotation, scaling, or translation transforms.
Use Case
The identity matrix is the starting point for building transformation pipelines in 3D graphics. It initializes model-view-projection matrices. In numerical methods, it is used in iterative algorithms (e.g., the starting point for Newton-Raphson on matrix equations). It also serves as the basis for regularization techniques like Tikhonov regularization (adding lambda * I to a matrix).