The following matrix is clearly invertible - but how to show it cleverly?
\begin{bmatrix} 1 & 1 & 1 & 0 \\ 1 & 1 & 0 & 1 \\ 1 & 0 & 1 & 1 \\ 0 & 1 & 1 & 1 \end{bmatrix}
My idea - consider the null space of the matrix. This is essentially equivalent to the following system:
$$
\left\{
\begin{matrix} a + b + c = 0 \\ a + b + d = 0 \\ a + c + d = 0 \\ b + c + d = 0
\end{matrix}
\right.
$$
Adding these equations, you get
$$3\cdot(a+b+c+d) = 0 \implies a+b+c+d = 0$$
Subtracting away each original equation from this new one, we immediately get that $a=b=c=d=0$, which implies that that the null space is {0} and therefore the matrix is invertible. But I'm not satisfied with this solution - I feel like there should be some clever way to do this entirely with simple matrix and/or row operations. Any ideas?