Find the determinant of the following $4 \times 4$ matrix

241 Views Asked by At

Use a cofactor expansion across a row or column to find the determinant of the following matrix

$$B=\begin{pmatrix}1 &c&0&0\\0&1&c&0\\0&0&1&c\\c&0&0&1\end{pmatrix}$$

Clearly indicate the steps you take.

I have tried

$$ \begin{aligned} \det B &= 1 \det \begin{pmatrix}1 &c&0\\0&1&c\\0&0&1\end{pmatrix}+(-c) \det \begin{pmatrix}c &0&0\\1&c&0\\0&1&c\end{pmatrix} \\ &= \det\begin{pmatrix}1 &c\\0&1\end{pmatrix}+c(-c)\det\begin{pmatrix}c &0\\1&c\end{pmatrix} \\ &= 1-c^4 \end{aligned}$$

2

There are 2 best solutions below

0
On BEST ANSWER

Expanding $\det B$ on first column we have that

$$\det B=1\det\begin{pmatrix}1 &c&0\\0&1&c\\0&0&1\end{pmatrix}-c\begin{pmatrix}c &0&0\\1&c&0\\0&1&c\end{pmatrix}=1-c^4$$

The determinant of triangular matrix is the product of the diagonal entries

0
On

Viewing $\rm B$ as a block matrix,

$$\det \left[\begin{array}{ccc|c} 1 & c & 0 & 0\\ 0 & 1 & c & 0\\ 0 & 0 & 1 & c\\ \hline c & 0 & 0 & 1\end{array}\right] = \det \left( \begin{bmatrix} 1 & c & 0\\ 0 & 1 & c\\ 0 & 0 & 1\end{bmatrix} - \begin{bmatrix} 0\\ 0\\ c\end{bmatrix} \begin{bmatrix} c\\ 0\\ 0\end{bmatrix}^\top \right) = \det \begin{bmatrix} 1 & c & 0\\ 0 & 1 & c\\ -c^2 & 0 & 1\end{bmatrix} = \color{blue}{1 - c^4}$$

Viewing $\rm B$ as a circulant matrix, its eigenvalues are given by

$$\lambda_k = 1 + c \, \exp \left( i \frac{k \pi}{2} \right)$$

for $k \in \{0, 1, 2, 3\}$. Hence, the determinant of $\rm B$ is

$$\det \begin{bmatrix} 1 & c & 0 & 0\\ 0 & 1 & c & 0\\ 0 & 0 & 1 & c\\ c & 0 & 0 & 1\end{bmatrix} = (1 + c) (1 + i c) (1 - c) (1 - i c) = (1 - c^2) (1 + c^2) = \color{blue}{1 - c^4}$$