Suppose $A=[a_{ij}]$ is symmetric and positive definite. How to show that $B=[|a_{ij}|]$ is symmetric and positive definite

linear algebramatricesmatrix decompositionnumerical linear algebra

For $n\le 3$ suppose $A=[a_{ij}]$ is symmetric and postive definite. How can I show that $B=[|a_{ij}|]$ is symmetric and positive definite?

I know these statements:

  1. A symmetric $n \times n$ matrix is positive definite if and only if all its eigenvalues are positive
  2. A symmetric matrix $A$ is positive definite if and only if all its leading principal minors are positive; that is $\det A (1 : i, 1 : i) >
    0, 1 ≤ i ≤ n$
    . This called Sylvester’s criterion.
  3. If $A = (a_{ij})$ is positive definite, then $a_{ii}> 0$ for all $i$
  4. If $A = (a_{ij})$ is positive definite, then the largest element in magnitude of all matrix entries must lie on the diagonal.
  5. The sum of two positive definite matrices is positive definite

I guess for $n=1$ I can use statement number $2$.
But what about $n=2$ and $n=3$?

Best Answer

This follows easily from Sylvester's criterion. I will consider only $n=3$, as this is the only interesting case. As $A$ and $B$ share identical diagonal elements as well as principal $2\times2$ minors, it suffices to prove that $\det(B)\ge\det(A)$ (so that $\det(B)>0$). Let $$ A=\pmatrix{p&s_1a&s_2b\\ s_1a&q&s_3c\\ s_2b&s_3c&r} \ \text{ and }\ B=\pmatrix{p&a&b\\ a&q&c\\ b&c&r} $$ where $p,q,r>0,\,a,b,c\ge0$ and $s_1,s_2,s_3\in\{1,-1\}$. Then \begin{aligned} \det(A) &=pqr+2s_1s_2s_3abc-(pc^2+qb^2+ra^2)\\ &\le pqr+2abc-(pc^2+qb^2+ra^2)\\ &=\det(B). \end{aligned}

Related Question