Are idempotent matrices always diagonalizable?

21.2k Views Asked by At

How to prove that any idempotent matrix is diagonalizable?

1

There are 1 best solutions below

12
On BEST ANSWER

I will give two proofs of the result, one using minimal polynomials and one without.

Proof 1: Let $A:V\rightarrow V$ be an idempotent operator on the $n$ dimensional space $V$. Suppose that the rank of the operator is $r$. Then there exists $r$ linearly independent vectors $\{\mathbf{u}_1,\ \cdots,\ \mathbf{u}_r\}$ in the image of $A$. Suppose that each $\mathbf{u}_i$ is in the image under $\mathbf{v}_i$: $$\mathbf{u}_i = A\mathbf{v}_i$$ Applying $A$ to the above gives $$A\mathbf{u}_i = \underbrace{A^2\mathbf{v}_i = A\mathbf{v}_i}_\text{idempotent} = \mathbf{u}_i$$ It follows that each $\mathbf{u}_i$ is an eigenvector under the eigenvalue $1$.

On the other hand, we also have $n-r$ vectors forming a basis for the kernel. Together, the basis for the image and the kernel forms a basis of eigenvectors for $V$, that is: $$V = \mathrm{im}(A) \oplus \ker(A)$$ Therefore $A$ is diagonalizable. $\square$

Using minimal polynomials, we can prove the result much quicker.

Proof 2: A linear operator is diagonalizable if and only if its minimal polynomial splits into distinct linear factors. If $A$ is idempotent then $$A^2 = A \implies A(A-I) =0$$ This means that $p(x) = x(x-1)$ is an annihilating polynomial for $A$. It follows that the minimal polynomial must divide $p$ and hence must split. Therefore $A$ must be diagonalizable. $\square$