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.