Linear Algebra – Evaluate the Determinant of a Hessenberg Matrix

contest-mathdeterminantlinear algebramatrices

The following question is taken from here exercise $1$:

Question Evaluate the determinant:
\begin{vmatrix}
a_0 & a_1 & a_2 & \dots & a_n \\
-y_1 & x_1 & 0 & \dots & 0 \\
0 & -y_2 & x_2 & \dots & 0 \\
\vdots & \vdots & \vdots & \vdots & \vdots \\
0 & 0 & 0 & \dots & x_n
\end{vmatrix}

Since this is a competition question, I suppose the normal determinant formula will not work. Indeed, tedious and messy calculations are inevitable if one just expand the determinant.

I observe that the matrix has $-y_i$ at super diagonal for all $1\leq i \leq n.$
However, I do not think this helps.

Any hint would be appreciated.

Best Answer

Expanding along the final column results in

$$a_n\cdot(-1)^{n+2} \begin{vmatrix} -y_1 & * & *&*&* \\ 0& -y_2& *&*&*\\ 0& 0 & -y_3&*&*\\ \vdots&\vdots&\vdots & \ddots&*\\ 0&0&0&\cdots &-y_n \end{vmatrix} + x_n\cdot \begin{vmatrix} a_0 & a_1 & a_2 & \dots & a_{n-1} \\ -y_1 & x_1 & 0 & \dots & 0 \\ 0 & -y_2 & x_2 & \dots & 0 \\ \vdots & \vdots & \vdots & \vdots & \vdots \\ 0 & 0 & 0 & \dots & x_{n-1} \end{vmatrix}$$

The first determinant is easy to calculate (it is $(-1)^n\cdot y_1\cdot y_2\cdots y_n$), while the second one is similar to the first, only smaller. So, if we define the determinant you wanted to calculate as $D_n$, you have

$$D_{n} = a_n\cdot y_1\cdot y_2\cdots y_n + x_nD_{n-1}$$

Now expanding that $D_{n-1}$ part further can yield some sort of solution (I don't see it being particularly pretty, however...)


Edit:

If I am not mistaken, the final result is

$$a_0x_1x_2\cdots x_n + a_1y_1x_2x_3\cdots x_n + \cdots + a_iy_1y_2\cdots y_i x_{i+1}\cdots x_n + \cdots + a_ny_1y_2\cdots y_n$$

or, written without all the dots:

$$\sum_{k=0}^n \left(a_k\prod_{i=1}^{k} y_i\prod_{i=k+1}^n x_i\right).$$

I don't see any obvious way to simplify this, however.