If $A=(a_{ij})_{ij=1,...n}\in \mathbb{C}^{n \times n}$ positive definite $ \Rightarrow \det(A) \leq \prod_{i=1}^n a_{i,i}$
I've argumented with the Cholesky-decomposition (which exists because A is pos. def.) that $A = CC^*$
with $C$ being an lower triangular matrix and $C^*$ being an upper triangular matrix.
Then $C$ and $C^*$ have the form...
$C =\left( \begin{array}{rrrr} x_{1,1} & 0 & 0 & 0 \\ x_{1,2} & x_{2,2} & 0 & 0 \\ ... & ... & ... & 0 \\ x_{1,n} & x_{2,n} & ... & x_{n,n} \\ \end{array}\right) $ and $C^*=\left( \begin{array}{rrrr} x_{1,1} & x_{1,2} & ... & x_{1,n} \\ 0 & x_{2,2} & ... & x_{2,n} \\ 0 & 0 & ... & ... \\ 0 & 0 & 0 & x_{n,n} \\ \end{array}\right) $
then $CC^* = \left( \begin{array}{rrrr} x_{1,1}^2 & & & * \\ & x_{2,2}^2 +x_{1,2}^2 & & \\ & & ... & \\ * & & & x_{n,n}^2 + x_{1,n}^2+x_{2,n}^2+...+x_{n-1,n}^2\\ \end{array}\right) $
Obviously, $\prod_{i=1}^n a_{i,i} = x_{1,1}^2*(x_{2,2}^2+x_{1,2}^2)*...*(x_{n,n}^2+x_{1,n}^2+...+x_{n-1,n}^2)$
And $\det(A) = \det(CC^*) = \det(C) * \det(C^*) = \det(C^*)*\det(C^*) = x_{1,1}^2*x_{2,2}^2 *...*x_{n,n}^2$
If what I've proven so far is correct, I'm very happy. But something bothers me. In $\mathbb{R}$ it is clear that $\det(A) \leq \prod_{i=1}^n a_{i,i}$ because the other sums are positive real numbers. Since I'm in the complex realm this formular doesn't hold true, does it?
- I cannot define $"\leq"$ with complex numbers since it's not an order relation.
- There is no guarantee that the other sums besides $x_{1,1}^2*x_{2,2}^2 *...*x_{n,n}^2$ are greater than 0 or even a real number, because $(a+bi)^2 = (a^2-b^2)+i(2ab)$ is still a complex number in most cases.
Can someone check my findings and elaborate?
Thanks in advance.