show that A is a Positive-definite symmetric matrix $$A = \begin{bmatrix} 1 & 1 & 1 \\ 1 & 2 & 2 \\ 1 & 2 & 3 \\ \end{bmatrix} $$
My try :
$A^T = A $, $A$ is symmetric
let $x \in \mathbb{R}^n$
$$x^TAx = \begin{bmatrix} a & b & c \\ \end{bmatrix} \begin{bmatrix} 1 & 1 & 1 \\ 1 & 2 & 2 \\ 1 & 2 & 3 \\ \end{bmatrix} \begin{bmatrix} a\\ b\\ c\\ \end{bmatrix} = a^2+ab+ac+ab+2b^2+2bc+ac+2bc+3c^2$$ $$=a^2+b^2+2ab+b^2+4c^2+4bc+2ac-c^2 = (a+b)^2+(b+2c)^2+c(2a-c)$$
I'm stuck here trying to find how can I prove it's positive.
Note : I know there's an easier method which consists of checking if all the eigenvalues are positive or checking if the leading principal minors are all positive but I have to show it this way using that definition.
$ \begin{bmatrix} 1&1&1\\1&2&2\\1&2&3\end{bmatrix} = \begin{bmatrix} 1&0&0\\1&1&0\\1&1&1\end{bmatrix} \begin{bmatrix} 1&1&1\\0&1&1\\0&0&1\end{bmatrix}$
$\mathbf x^T \begin{bmatrix} 1&0&0\\1&1&0\\1&1&1\end{bmatrix} = \begin{bmatrix} (x+y+z)& (y+z) & z\end{bmatrix}$
$\mathbf x^TA\mathbf x =(x+y+z)^2 + (y+z)^2 + z^2$