Are not all symmetric invertible matrices positive semidefinite??

6 views (last 30 days)
Hi,
I remember to learn that a symmetric matrix is positive semidefinite if and only if it is invertible. But the matrix 'covmat' in the .mat file that you can download using the below link is symmetric, invertible, but not positive semidefinite.
After loading ask.mat, you can try below code portions to check what I am saying.
issym(covmat); % you will get answer 1
inv(covmat); % you will get no error
mvnrnd(zeros(110, 1), covmat, 20); % you will get the error below:
??? Error using ==> mvnrnd at 118
SIGMA must be a symmetric positive semi-definite matrix.
How can it be possible? What is wrong with this matrix? Do I have some wrong knowledge of matrix properties of invertibleness, positive semidefiniteness, etc.?
Thanks!

Accepted Answer

the cyclist
the cyclist on 21 May 2013
Your memory is incorrect. Consider the following matrix:
a = [ 1.0 0.8 -0.8;
0.8 1.0 0.8;
-0.8 0.8 .01]
It is not positive semi-definite (because it has a negative eigenvalue). However, it is symmetric and invertible. (It has non-zero determinant).

More Answers (0)

Categories

Find more on Mathematics in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!