I would like to calculate the inverse of this specific, $6\times6$, symmetric matrix analytically.
$\begin{bmatrix} 1&0&A&-C&A&C\\ 0&1&-C&B&C&B\\ A&-C&1&0&D&0\\ -C&B&0&1&0&E\\ A&C&D&0&1&0\\ C&B&0&E&0&1 \end{bmatrix}$
I know how to do it numerically but am wondering if it is possible to do it analytically? I found expressions for matrices up to $3\times3$, but no larger. Is this because it is not possible?
Thanks to @mjw I managed to make some progress.
By using the fact that the inverse also has to be symmetric, I came up with an answer in 24 steps. The following operations should be done on both the rows and then the columns. Let $Ei$ denote the $i$th row or column.
By this time you have a matrix with only nonzero elements on the diagonal. Then divide all rows by the nonzero element of that row and you obtain the identity matrix.
While this has been a nice exercise in linear algebra, the resulting matrix is very complicated and I have not been able to simplify it. But I'll leave this up for posterity in case it is of use to any one.