Samiksha Jaiswal (Editor)

Idempotent matrix

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In algebra, an idempotent matrix is a matrix which, when multiplied by itself, yields itself. That is, the matrix M is idempotent if and only if MM = M. For this product MM to be defined, M must necessarily be a square matrix. Viewed this way, idempotent matrices are idempotent elements of matrix rings.

Contents

Example

Examples of a 2 × 2 and a 3 × 3 idempotent matrix are [ 1 0 0 1 ] and [ 2 2 4 1 3 4 1 2 3 ] , respectively.

Real 2 × 2 case

If a matrix ( a b c d ) is idempotent, then

  • a = a 2 + b c ,
  • b = a b + b d , implying b ( 1 a d ) = 0 so b = 0 or d = 1 a ,
  • c = c a + c d , implying c ( 1 a d ) = 0 so c = 0 or d = 1 a ,
  • d = b c + d 2 .
  • Thus a necessary condition for a 2 × 2 matrix to be idempotent is that either it is diagonal or its trace equals 1. Notice that, for idempotent diagonal matrices, a and d must be either 1 or 0.

    If b = c, the matrix ( a b b 1 a ) will be idempotent provided a 2 + b 2 = a , so a satisfies the quadratic equation

    a 2 a + b 2 = 0 , or ( a 1 2 ) 2 + b 2 = 1 4

    which is a circle with center (1/2, 0) and radius 1/2. In terms of an angle θ,

    M = 1 2 ( 1 cos θ sin θ sin θ 1 + cos θ ) is idempotent.

    However, b = c is not a necessary condition: any matrix

    ( a b c 1 a ) with a 2 + b c = a is idempotent.

    Properties

    With the exception of the identity matrix, an idempotent matrix is singular; that is, its number of independent rows (and columns) is less than its number of rows (and columns). This can be seen from writing M M = M , assuming that M has full rank (is non-singular), and pre-multiplying by M 1 to obtain M = I M = M 1 M M = M 1 M = I .

    When an idempotent matrix is subtracted from the identity matrix, the result is also idempotent. This holds since [I − M][I − M] = I − M − M + M2I − M − M + MI − M.

    A matrix A is idempotent if and only if for all positive integers n, A n = A . The 'if' direction trivially follows by taking n = 2 . The 'only if' part can be shown using proof by induction. Clearly we have the result for n = 1 , as A 1 = A . Suppose that A k 1 = A . Then, A k = A k 1 A = A A = A , as required. Hence by the principle of induction, the result follows.

    An idempotent matrix is always diagonalizable and its eigenvalues are either 0 or 1. The trace of an idempotent matrix — the sum of the elements on its main diagonal — equals the rank of the matrix and thus is always an integer. This provides an easy way of computing the rank, or alternatively an easy way of determining the trace of a matrix whose elements are not specifically known (which is helpful in econometrics, for example, in establishing the degree of bias in using a sample variance as an estimate of a population variance).

    Applications

    Idempotent matrices arise frequently in regression analysis and econometrics. For example, in ordinary least squares, the regression problem is to choose a vector β of coefficient estimates so as to minimize the sum of squared residuals (mispredictions) ei: in matrix form,

    Minimize  ( y X β ) T ( y X β )

    where y is a vector of dependent variable observations, and X is a matrix each of whose columns is a column of observations on one of the independent variables. The resulting estimator is

    β ^ = ( X T X ) 1 X T y

    where superscript T indicates a transpose, and the vector of residuals is

    e ^ = y X β ^ = y X ( X T X ) 1 X T y = [ I X ( X T X ) 1 X T ] y = M y .

    Here both M and X ( X T X ) 1 X T (the latter being known as the hat matrix) are idempotent and symmetric matrices, a fact which allows simplification when the sum of squared residuals is computed:

    e ^ T e ^ = ( M y ) T ( M y ) = y T M T M y = y T M M y = y T M y .

    The idempotency of M plays a role in other calculations as well, such as in determining the variance of the estimator β ^ .

    An idempotent linear operator P is a projection operator on the range space R(P) along its null space N(P). P is an orthogonal projection operator if and only if it is idempotent and symmetric.

    References

    Idempotent matrix Wikipedia