4
$\begingroup$

Let $A = (a_{ij})_{i,j=1,\dots,n}$ be a real symmetric square matrix. Suppose $A$ is positive definite. Are there sufficient conditions that guarantee $a_{ij} > 0$ for all $i,j = 1,\dots, n$?

I know that $a_{ii} > 0$ for all $i=1,\dots,n.$

One thing I found is that $a_{ij} > 0$ for all $i,j = 1, \dots, n$ if and only if $A^{-1}$ is monotone, i.e. $A^{-1}x \ge 0$ implies $x \ge 0$ for all $x \in \mathbb{R}^n.$ Is there a nice way to connect this with the fact that $A$ and $A^{-1}$ are positive definite?

2 Answers 2

3

Sounds to me like you are describing the inverse of a symmetric M-matrix. Those matrices are extremely important in numerical analysis because they have stable behaviours with respect to several algorithms. There are PLENTY of characterizations of such matrices. Some of them are listed in the wikipedia page for M-matrices : https://en.wikipedia.org/wiki/M-matrix .

In your case, the easiest characterization is probably the following : every off-diagonal element of $A^{-1}$ (which exists since you assume positive definiteness) is negative.

  • 0
    For the sake of completeness, a symmetric M-matrix is called a Stieltjes matrix https://en.wikipedia.org/wiki/Stieltjes_matrix .2017-02-24
  • 0
    Thank you! Are there specific results on positive definite M-matrices?2017-02-26
  • 1
    I think the following reference might be helpful : Bendito, E. et al., 2009. Characterization of symmetric M-matrices as resistive inverses. Linear Algebra and Its Applications, 430(4), pp.1336–1349.2017-02-28
0

The answer is no. A counter example is

$\begin{pmatrix} 1 & -1\\ 1 & 1 \end{pmatrix}$,

which is positively definite but has a negative entry.

  • 0
    Thanks for the example. I know that there are positive definite matrices with negative entries (and matrices with positive entries that are not positive definite). That is why I am looking for sufficient conditions that ensure my positive definite matrix has only positive entries.2017-02-26