Optimizing a function of a given matrix
Let us consider the 4×4 symmetric matrix Ax=(0111 102x2x 12x02x 12x2x0)
Here I need to find minx>0:det(Ax)=0or||A−1x||=0, where by ||M|| we mean the sum of all entries of the matrix M. I'm looking for a general sage program where my input will be a matrix with entries as functions of an inderminant (like the matrix Ax above) which will give me the unique x corresponding to my matrix. If no such real value exists, it should result as ∞ Can anyone help me? Thank you in advance.