7

Do tests for positive definiteness for nonsymmetric matrices exist? More specifically I am working with bidiagonal upper/lower triangular matrices with positive eigenvalues and I need to check to see if they are positive definite or not.

lowrybh
  • 73
  • 1
    if $(Ax,x)\ge 0$ for all $x\in V,$ then $A=A*$ provided you are working over complex numbers. – leshik May 10 '13 at 03:04
  • 1
    You can't start the question with "Do they exist". What are "they"? Make the question self-contained, and remember that a title is just an elevator pitch line to draw people and let them know what the question is about, in particular the title is not part of the question's text. – Asaf Karagila May 10 '13 at 03:18
  • 1
    Welcome to Math.SE. Thank you for your question. It will help us to better answer it if you give a more complete context for your question and share what you've tried so far. Also, you may wish to follow the customary style used here; see the FAQ for details. – vadim123 May 10 '13 at 03:24

1 Answers1

12

Suppose that $A$ is real. Note that $x^TAx=(x^TAx)^T=x^TA^Tx$, being a scalar. Hence $x^TAx>0$ if and only if $2x^TAx=x^TAx+x^TA^Tx=x^T(A+A^T)x>0$. Thus $A$ is positive definite if and only if $A+A^T$, a symmetric matrix, is positive definite. You can test this using the Cholesky decomposition.

If $A$ is complex, replace $x^TAx$ with $x^\star Ax$ and $A^T$ with $A^\star$.

vadim123
  • 82,796