I have studied 4 tests to prove for positive definite and positive semi-definite matrices:
- Quadratic Form Test (Sum of Squares Test): Q(x) = (x^T)Ax > 0 and >=0 respectively
- Eigen Values Test: if all eigen values >0 and >=0 respectively
- Upper Left Submatrices Determinant Test: if all determinants are >0 and >=0 respectively
- Pivot Test: If all pivots of the Echelon Form of the Matrix are >0 and >=0 respectively
I have also learned how to apply tests 1 and 2 to find negative definite, negative semi-definite, and indefiniteness of matrices - <0, <=0, and both positive and negative values respecively.
I wish to find out if tests 3 and 4 are possible to apply to find the remaining classifications.
I assumed that finding all the pivots to be negative (<0) in the echelon form would cause it to be negative definite, and henceforth the Determinant test would have Di<0 for odd i, and Di>0 for even i.
And similarly having (<=0) for negative semi-definite.
But I have found only one reference so far to corroborate this statement, all of the others use the eigen value test.
Link
Is my logic right, and is it possible to find the remaining classifcation using tests 3 and 4?