I know how to apply that on a 3 by 2 matrix. However, when it comes to a 3 by 3 matrix, I am kind of lost.
For example A is $$ \begin{matrix} 4 & 8 & 1 \\ 0 & 2 & -2 \\ 3 & 6 & 7 \\ \end{matrix} $$ And I know v, w and x. I used the formula to find H_1, which is $$ \begin{matrix} 4/5 & 0 & 3/5 \\ 0 & 4/5 & 0 \\ 3/5 & 0 & -4/5 \\ \end{matrix} $$ And $H_1A$ is $$ \begin{matrix} 5 & 10 & 5 \\ 0 & 8/5 & -8/5 \\ 0 & 0 & -5 \\ \end{matrix} $$ Despite the first column, there are still two columns left. How am I supposed to find the new x and w and how to proceed from here? Thanks!