PhizKid said:
Given a quadratic form: x^2 - 4xy + 6xz + 2xt + 4y^2 + 2yz + 4yt + 5z^2 - 6zt - t^2, find the symmetric matrix that defines this, row reduce this matrix into row echelon form, and use this upper triangle matrix to complete the square and write the quadratic form as the sum/difference of squares.So here is the matrix representation using x, y, z, and t as the diagonals from left to right and x being the first order, y second order, z third order, t fourth order:
\left[ \begin{array}{cccc}1 & -2 & 3 & 1 \\-2 & 4 & 1 & 2 \\3 & 1 & 5 & -3 \\1 & 2 & -3 & -1 \\\end{array} \right]
Row echelon:
\left[ \begin{array}{cccc}1 & -2 & 3 & 1 \\0 & 7 & -4 & -6 \\0 & 0 & 7 & 4 \\0 & 0 & 0 & \frac{174}{49} \\\end{array} \right]
NOTE: Rows 2 and 3 were switched during this process! (It was unavoidable.)
Now, I'm not sure what to do with this matrix, as it's no longer the same matrix that represents the original quadratic.
The usual echelon process is used on a matrix that encodes a system of linear equations. The matrix here encodes a quadratic form, so a slightly different form of echelon process is needed. I have not seen this process before, but it must work like this: For the matrix $\begin{bmatrix}1 & -2 & 3 & 1 \\-2 & 4 & 1 & 2 \\3 & 1 & 5 & -3 \\1 & 2 & -3 & -1\end{bmatrix}$, you start in the usual way, getting zeros down the first column. This reduces the matrix to $\begin{bmatrix}1 & -2 & 3 & 1 \\0&0&7&4 \\0&7&-4&-6 \\0&4&-6&0\end{bmatrix}$.
Next, you want to exchange rows 2 and 3. In the usual Gaussian reduction process where the matrix represents a system of linear equations, that corresponds to switching the order of two equations. But the situation here is different. Each row
and each column of the matrix is associated with one of the variables $x,\ y,\ z,\ t$ in the quadratic form. When you interchange rows 2 and 3, you are effectively switching the variables $y$ and $z$, and this means that
you must also interchange columns 2 and 3. So instead of getting the matrix $\begin{bmatrix}1 & -2 & 3 & 1 \\0&7&-4&-6 \\ 0&0&7&4 \\0&4&-6&0\end{bmatrix}$, you get $\begin{bmatrix}1 & 3&-2 & 1 \\0&-4&7&-6 \\ 0&7&0&4 \\0&-6&4&0\end{bmatrix}$. You can now continue the echelon process in the usual way. If I have not made arithmetic mistakes, the reduced matrix is $\begin{bmatrix}1 & 3&-2 & 1 \\0&-4&7&-6 \\ 0&0& \frac{49}4& -\frac{13}2 \\0&0&0& \frac{272}{49} \end{bmatrix}$.
The next stage of the problem is to read off the information from the echelon form of the matrix to get a sum of squares. This also is new territory for me, but it seems to work like this: Use the top row of the matrix as coefficients for a linear combination of $x,\ z,\ y,\ t$ (remembering that $y$ and $z$ have been interchanged!), to get $(x + 3z - 2y + t)^2$. For the remaining rows, the coefficient on the main diagonal of the matrix stays outside the brackets, and all the coefficients inside the bracket get divided by that coefficient. So the next row of the matrix gives $-4\bigl(z - \frac74y + \frac32t \bigr)^2$. The final result is that $$\begin{aligned}x^2 - 4xy\! &{}+ 6xz + 2xt + 4y^2 + 2yz + 4yt + 5z^2 - 6zt - t^2 \\ &= (x + 3z - 2y + t)^2 - 4\bigl(z - \tfrac74y + \tfrac32t \bigr)^2 + \tfrac{49}4\bigl(y - \tfrac{26}{49}t \bigr)^2 + \tfrac{272}{49}t^2. \end{aligned}$$ I have not checked it in detail, but it does seems as though that is a correct algebraic identity. Amazing! (Nod) In 40 years of teaching linear algebra, I never came across this procedure. It is not at all obvious why it works, and I would be interested to know the theory behind it.