0

I'm trying to solve the following nxn determinant:

$ \displaystyle \begin{vmatrix} 0 & 1 & 1 &\ldots &1\\ 1 & a_1& 0& \ldots & 0\\ 1 & 0 &a_2 &\ldots &0 \\ \vdots & \vdots & \vdots &\ddots & \vdots \\ 1 & 0& 0 & \ldots & a_n \\ \end{vmatrix} $

I've tried subtracting the last row from all the others except the first in order to get a lower triangle determinant but I still don't know how to get rid of the 1 on the bottom left corner. Any hints?

downmath
  • 329

1 Answers1

2

The determinant $d$ is unchanged if you replace the first row by $$ \mathbf{r}_1 \leftarrow \mathbf{r}_1 - \frac{1}{a_1} \mathbf{r}_2 - \ldots - \frac{1}{a_N} \mathbf{r}_{N+1} $$ (if none of the $a$'s are null)

It follows that $$ d= \begin{vmatrix} -\sum a_n^{-1} & 0 & 0 & & 0\\ 1 & a_1 & & & \\ 1 & & a_2 & & \\ \vdots & & & \ddots & \\ 1 & & & & a_N \end{vmatrix}= -(\sum a_n^{-1})(\prod a_n) $$

Steph
  • 3,665