I just want to make sure I understand this right.
In the book our teacher describes matrix representation of quadric as (sorry for the 3x3 matrix it should be 2x2)
$$[ 1\,\,\, x^T]\begin{bmatrix} c & b^T \\ b & A \\ \end{bmatrix}\begin{bmatrix} 1 \\x \end{bmatrix}=x^TAx+2b^Tx+c$$
So am I right to represent this function
$$0=5x^2+3y^2+3z^2-2xy+2yz-2xz-10x+6y-2z-10$$ as $$\begin{bmatrix} -10 & -5 & 3 & -1 \\ -5 & 5 & -1 & -1 \\ 3 & -1 & 3 & 1 \\ -1 & -1 & 1 & 3 \end{bmatrix}$$
There were no examples of such representation included in the book and I struggle to find any on the internet.
Sorry, if it's a stupid question.
First the $(1,x^T)$ on the right needs to be transposed for the product to be well defined.
Then it depends on the order of $1,x,y,z$ in the vectors from left and right. But if the vectors have the order I wrote then it should be correct. In other words
$$ [1,x,y,z]\begin{bmatrix} -10 & -5 & 3 & -1 \\ -5 & 5 & -1 & -1 \\ 3 & -1 & 3 & 1 \\ -1 & -1 & 1 & 3 \end{bmatrix} \begin{bmatrix} 1 \\ x \\ y \\ z \end{bmatrix}$$
Also if you set it equal to 0 it is not a function in the variables but a level set to the function.