Let
A2=[0110]
A3=[011101110]
A4=[0111101111011110]
and so on for An.
I was asked to calculate the determinant for A1,A2,A3,A4 and then guess about the determinant for An in general. Of course the pattern is clear that
det
but I was wondering as to what the proof of this is. I tried to be clever with cofactor expansions but I couldn't get anywhere.
Could someone explain it to me please?
Answer
Here is an elementary way to compute the determinant of A_n:
Add row 2 to row 1, add row 3 to row 1, ..., and add row n to row 1, we get
\det(A_n)=\begin{vmatrix} n-1 & n-1 & n-1 & \cdots & n-1 \\ 1 & 0 & 1 &\cdots & 1 \\ 1 & 1 & 0 &\cdots & 1 \\ \vdots & \vdots & \vdots & \ddots & \vdots \\ 1 & 1 & 1 & \ldots & 0 \\ \end{vmatrix}.
Next subtract column 2 by column 1, subtract column 3 by column 1, ..., subtract column n by column 1, we get
\det(A_n)=\begin{vmatrix} n-1 & 0 & 0 & \cdots & 0 \\ 1 & -1 & 0 &\cdots & 0 \\ 1 & 0 & -1 &\cdots & 0 \\ \vdots & \vdots & \vdots & \ddots & \vdots \\ 1 & 0 & 0 & \ldots & -1 \\ \end{vmatrix}=(-1)^{n-1}(n-1).
No comments:
Post a Comment