[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
On the question of when eigen values are guaranteed to be positive (and the property of positive definiteness)
- To: "Rao Kambhampati" <rao@asu.edu>
- Subject: On the question of when eigen values are guaranteed to be positive (and the property of positive definiteness)
- From: "Subbarao Kambhampati" <rao@asu.edu>
- Date: Thu, 2 Oct 2008 16:06:29 -0700
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:sender :to:subject:mime-version:content-type:x-google-sender-auth; bh=EVoRe3gZHxpA22A/rpOVaY4S9hUfuTNlg6vHq9ZCwno=; b=wDF2VKYa2yuINyVNA/JXv7+BsdhxqpC53KvaPejez+1xcfYKsJ4hLxuCNM83MVj5bm zrf+mt5IVh5bA2Cbo7cnZb3J5m0Xx18vhsb6gB674nPiJMyzXkoxoutEbsSy1RMkCC27 mGj7hjFn1DJjbg7xZIloB7z/XqYknnINiGBzw=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:sender:to:subject:mime-version:content-type :x-google-sender-auth; b=J4D98k9F3THLbf9QkuTg3Cy83ol03r989onk1MLAgokBHdEWjH4GWVgZ9393tj0h0r ittDzyNKv3SRxiBRgrEAFRXB6KAvh8awAFHptB9MkBviM/7KqfSwZjT24t14QW/Wqg6g cb7S9hCn/aIXRfaX4rd5SVyusnuJSD2jnCErE=
- Sender: subbarao2z2@gmail.com
There was a question in the class (by Dmitry I think) as to when can we be sure that eigen values of a matrix are all positive.
Here is the answer
All symmetric matrices are guaranteed to have real valued eignen values, but are not all guaranteed to have positive eigen values.
Having positive eigen values turns out to be closely related to a *very* important property of matrices called "positive definiteness"
However, if the symmetric matrix M under consideration can be written as B*B' where B is a non-singular matrix (i.e., has non-zero determinant),
then it is guaranteed to have +ve eigen values. (Notice that the matrices we power-iterated on in A/H computation are of this form).
-------------
While we are at it, we should note that the property of having positive eigen values is intimately linked to another very deep and useful property called
"positive definiteness"
A matrix M is called positive definite, if for *any* vector u,
u * M * u' > 0 (it is called positive semi-definite if "greater than" is replaced by "greater than or equal to")
It turns out that M is +ve definite if and only if it has all positive eigen values (you can sort of see the "if" case in terms of viewing vector/matrix multiplication in terms of
stretching vector's projections in the eigen vector directions by the amount equal to eigen values).
cheers
Rao