Very much related to this question:
Checking if a symbolic matrix is positive semi-definite
Is there a way to tell for which values of symbols a matrix is positive definite? For instance if M = {{a,0}, {0,b}} the function should look like rangePositiveDefiniteQ[M, {a,b}] and return {a>0 && b>0}. I have a feeling this is extremely computationally expensive and unfeasible.
Thanks in advance!