2

If $A$ is a matrix of size $n\times n$, and $A^2+A+2I=0$, check whether $A$ is singular or not and find its inverse if it exists.

I can find the inverse by simply multiplying the given equation with $A^{-1}$.

$$A+I+2A^{-1}=0$$

$$A^{-1}=-\frac{1}{2}(A+I)$$

But how can I check if its singular or not?

Aditya Dev
  • 4,774

2 Answers2

5

Write $A(A+I)=-2I$ and take the determinant on both sides. This gives $$\det(A)\det(A+I)=(-2)^n\neq 0,$$ hence $\det(A)\neq 0$.

Dietrich Burde
  • 130,978
4

If $A$ is singular, then there exists a vector $v\neq 0$ such that $Av=0$. In that case $$ 0=0v=(A^2+A+2I)v=A(Av)+Av+2v=2v, $$ a contradiction.

guestDiego
  • 4,006