$$ \begin{pmatrix} 5 & 6 & 6 & 8 \\ 2 & 2 & 2 & 8 \\ 6 & 6 & 2 & 8 \\ 2 & 3 & 6 & 7 \\ \end{pmatrix} $$
Is this matrix invertible? I would like to show that it is invertible but first I should find the det(Matrix) which should not be equal to zero. To find the determinant, maybe the best idea is to use row operations and find an upper triangular of zeroes and then multiply the numbers on the diagonal to get the determinant. I have been doing some row operations and get this:
$$
\begin{pmatrix}
5 & 6 & 6 & 8 \\
0 & -1 & -4 & 1 \\
0 & 0 & 2 & 6 \\
-1 & 0 & 0 & -12 \\
\end{pmatrix}
$$
I just need to get rid of the -1 on the last row. But I am stuck. Thank you for your assistance.