I'm a little confused about definite matrices. We learned about $4$ different types of definite matrices: positive semidefinite, positive definite, negative semidefinite and negative semidefinite. In a positive semidefinite matrix we have that the scalar $x^TBx \geq 0$. In a positive definite matrix the scalar $x^TBx > 0$. The opposite is true for the negative matrices.
Let's take the example of a $3 \times 3$ matrix $B = \left(\begin{array}{ccc} 25 & 15 & -5 \\ 15 & 18 & 0 \\ -5 & 0 & 11 \\ \end{array}\right)$. To check if $B$ is a positive definite matrix we can see if $x^TBx > 0$.
$$x^TBx = \left(\begin{array}{ccc} a & b & c \\ \end{array}\right) \cdot \left(\begin{array}{c} 25 & 15 & -5 \\ 15 & 18 & 0 \\ -5 & 0 & 11 \\ \end{array}\right) \cdot \left(\begin{array}{ccc} a \\ b \\ c \\ \end{array}\right)= 25a^2+30ab-10ac+18b^2+11c^2$$
How can I continue on from here? I know $B$ is positive definite because after using the Gauß Elimination technique all the pivot values are greater than $0$ and all upper-left sub-matrices are also positive. I'm just trying to see how the original version works.
$$ 25a^2+30ab-10ac+18b^2+11c^2 =\\ 25(1-\frac 12 -\frac 1{11}) a^2 + (\frac 5{\sqrt 2}a + 3\sqrt 2 b )^2 + (\frac 5{\sqrt {11}}a - \sqrt{11}c)^2> 0 $$