I need to find determinant of following matrix.
$$\begin{bmatrix}1&0&0&0&0&2\\0&1&0&2&2&0\\0&0&1&2&0&0\\0&0&2&1&0&0\\0&2&0&0&1&0\\2&0&0&0&0&1\end{bmatrix}$$
I did it by simply doing $R_5$ - $R_1$. and then evaluating the determinant. But its a lengthy process but answer came out..
But another thing i have noticed afterwards is that it is symmetric matrix. So finding determinant my be easy, but i don't know how it helps which is my main concern. Thanks
Might be easiest to row-reduce just enough so that the matrix becomes a triangular matrix. Then the determinant is the product of the diagonal entries. In this case, we can row reduce to get $$\begin{bmatrix} 1 & 0 & 0 & 0 &0 & 2\\0& 1&0& 2 & 2 &0\\0 & 0 & 1&2&0&0\\0&0&0&-3&0&0\\0&0&0&0&-3&0\\0&0&0&0&0&-3\end{bmatrix},$$ and so the determinant is $-27$.