0

I have a matrix that looks like this:

$$ \begin{pmatrix} 0 & 1 & 0 & 0 \\ 0 & 0 & 1 & 0 \\ 0 & 0 & 0 & 1 \\ \epsilon & 0 & 0 & 0 \\ \end{pmatrix} $$

Compute a Householder transformation so that the matrix becomes an Upper Hessenberg.

Is there any special property of this matrix that I can use (since there is a matrix element that is a variable)?

I tried to find vector $u$ but it did not work out.

dresden
  • 1,073
  • 2
  • 11
  • 19

1 Answers1

1

$$ Q=I-\frac{2}{2\epsilon^2} \begin{pmatrix}0\\-\epsilon\\0\\\epsilon\end{pmatrix} \begin{pmatrix}0\\-\epsilon\\0\\\epsilon\end{pmatrix}^T = \begin{pmatrix} 1&0&0&0\\ 0&0&0&1\\ 0&0&1&0\\ 0&1&0&0 \end{pmatrix}\;,\quad QA=\begin{pmatrix} \color{red}0&\color{red}1&\color{red}0&\color{red}0\\ \color{red}\epsilon&\color{red}0&\color{red}0&\color{red}0\\ 0&\color{red}0&\color{red}0&\color{red}1\\ 0&0&\color{red}1&\color{red}0 \end{pmatrix}\;. $$