Student[LinearAlgebra]
IsDefinite
test for positive or negative definite Matrices
Calling Sequence
Parameters
Description
Examples
IsDefinite(A, q)
A
-
square Matrix
q
(optional) equation of the form query = attribute where attribute is one of 'positive_definite', 'positive_semidefinite', 'negative_definite', or 'negative_semidefinite'
The IsDefinite(A, query = 'positive_definite') returns true if A is a real symmetric or a complex Hermitian Matrix and all the eigenvalues are determined to be positive. This command is equivalent to IsDefinite(A), that is, the default query is for positive definiteness.
Similarly, for real symmetric or complex Hermitian Matrices, the following calling sequences return the indicated result.
IsDefinite(A, query = 'positive_semidefinite') returns true if all the eigenvalues are determined to be non-negative.
IsDefinite(A, query = 'negative_definite') returns true if all the eigenvalues are determined to be negative.
IsDefinite(A, query = 'negative_semidefinite') returns true if all the eigenvalues are determined to be non-positive.
If the eigenvalues are determined to be other than described in the cases above, a value of false is returned.
If any of the conditions on the eigenvalues cannot be resolved, a boolean expression representing the condition which must be satisfied for the query to resolve to "true" is returned.
The definition of positive definite is that, for all column Vectors x, x*.A.x>0, where x* is the Hermitian transpose of x.
The definitions for positive semidefinite, negative definite, and negative semidefinite involve reversal of the inequality sign, or relaxation from a strict inequality.
For real non-symmetric (complex non-Hermitian) Matrices, definiteness is established by considering the symmetric (Hermitian) part of A, that is, 12A+A+ (12A+A*).
with⁡StudentLinearAlgebra:
A≔DiagonalMatrix⁡−5,0,−1
A≔−50000000−1
IsDefinite⁡A
false
IsDefinite⁡A,query=positive_semidefinite
IsDefinite⁡A,query=negative_semidefinite
true
B≔1,8,3|−4,5,2|6,1,0
B≔1−46851320
IsDefinite⁡B
C≔1,2+I|2−I,5
C≔12−I2+I5
IsDefinite⁡C
IsDefinite⁡C,query=positive_semidefinite
IsDefinite⁡C,query=negative_semidefinite
See Also
LinearAlgebra[IsDefinite]
Student[LinearAlgebra][DiagonalMatrix]
Student[LinearAlgebra][Eigenvalues]
Student[LinearAlgebra][Eigenvectors]
Student[LinearAlgebra][Operators]
Download Help Document