I got a problem I can't solve for in linear algebra. My task is to find if the product of 2 positive definite matrices is also positive definite? My intuition tells me it is not true but I cannot find a counterexample.
If my intuition was false, do this 2 matrices need to be symmetric to be true?
Thanks a lot for your help,
I found an answer on another forum finally. For me, a matrix is positive definite if xTAx>0 for all column vector x.
We have A=[1,2;2,5] and B=[1,-1;-1,2] 2 positive definite matrix
AB=[-1,3;-3,8] is not positive definite as [1,0]AB[1;0]=-1
The issue with eigenvalue and positive definite matrix is that there are not equivalent -> If the matrix is positive definite then its eigenvalue are positive. But positive eigenvalues does not guarantee that the matrix is positive definite.