4

I have a question about positive semidefinite matrices that are non diagonalizable. Example: \begin{equation} A= \left(\begin{array}{cc} 2 & 1\\ 0 & 2\\ \end{array}\right) \end{equation} Clearly the (real part of the) eigenvalues of $A$ are non-negative.

But how do I prove in general that the real part of the Eigenvalues of a positive semi-definite real matrix are non-negative? (I have seen the proof where they use diagonalization of the matrix ($B=T^{-1}DT$) but this is not possible for all positive semi-definite real matrices.)

3 Answers3

2

Of course, we assume that $A$ is a real matrix. The matrix $A$ may have non-real eigenvalues as this one $A=\begin{pmatrix}1&1\\-1&1\end{pmatrix}$. The correct result is:

If $A$ is real and for every $x\in\mathbb{R}^n$, $x^TAx\geq 0$, then the eigenvalues of $A$ have a non-negative real part.

cf. Does non-symmetric positive definite matrix have positive eigenvalues?

Now, I think that to call such a matrix $A$, a positive semi-definite matrix, is a very bad idea. Note that this condition is equivalent to $A+A^T$ is $\geq 0$ in the usual sense. Moreover we encounter questions about this subject on MSE and often the OP does not even report that the studied matrix is not assumed to be symmetric!!

  • What do you want to say with this answer (I guess you want to say that something is wrong but I dont get the point)? Should I state the title more precicely (PSD but non-diagonalizable real matrix - proof that real parts of eigenvalues are non-negative)? Or what would be the correct formulation and the corresponding proof? – user137589 Aug 18 '15 at 11:23
  • 1
    @ user137589 , if you do not see the difference between $\lambda\geq 0$ and $Re(\lambda)\geq 0$, then I cannot help you. –  Aug 18 '15 at 17:27
  • Yes I see that. I changed the question. Please write down the correct and complete proof which answers my question. I would appreciate it. Thanks. – user137589 Aug 20 '15 at 13:00
  • 1
    See my reference above and, inside, the Hui's answer. –  Aug 20 '15 at 13:11
-1

The following answer is copied and modified from achille hui's answer which can be found following the link in loup blanc's answer (Does non-symmetric positive definite matrix have positive eigenvalues?).

For the sake of completeness, I copied it here:

Let $A \in M_{n}(\mathbb{R})$ be any (non-symmetric) real $n\times n$ matrix but "positive semi-definite" in the sense that:

$$\forall x \in \mathbb{R}^n, x \ne 0 \implies x^T A x \geq 0$$ The eigenvalues of $A$ need not be positive. For an example:

$$\begin{pmatrix}1&1\\-1&1\end{pmatrix}$$

has eigenvalue $1 \pm i$. However, the real part of any eigenvalue $\lambda$ of $A$ is always positive.

Let $\mathbb{C} \in \lambda = \mu + \nu i$ where $\mu, \nu \in \mathbb{R}$ be an eigenvalue of $A$. Let $z \in \mathbb{C}^n$ be a right eigenvector associated with $\lambda$. Decompose $z$ as $x + iy$ where $x, y \in \mathbb{R}^n$.

$$(A - \lambda) z = 0 \implies \left((A - \mu) - i\nu\right)(x + iy) = 0 \implies \begin{cases}(A-\mu) x + \nu y = 0\\(A - \mu) y - \nu x = 0\end{cases}$$ This implies

$$x^T(A-\mu)x + y^T(A-\mu)y = \nu (y^T x - x^T y) = 0$$

and hence $$\mu = \frac{x^TA x + y^TAy}{x^Tx + y^Ty} \geq 0$$

In particular, this means that all real parts of all eigenvalues $\lambda$ of $A$ are non-negative.

  • I did not downvote your post. Yet it is false; cf. my answer. –  Aug 17 '15 at 17:42
  • It is ok. I just wanted a correct answer to my question (which was not clearly stated at the beginning). Thanks for your answer which finally seems correct to me! – user137589 Aug 20 '15 at 14:35
-2

I guess PSD matrices are symmetric and a symmetric matrix is orthogonally diagonalizable.We allways consider symmetry because otherwise eigen values can be complex and then it loses the essence of psd.

biswpo
  • 235
  • No that is not true. PSD matrices are not necessarily symmetric. Example: A= \begin{array}{cc} 0 & 1 \ 0 & 0 \end{array} – user137589 Jan 31 '14 at 22:36