I am trying to calculate the determinant of the matrix:
$ \left(\begin{matrix} -6 & -5 & & \dots & -5\\ -5 & -6 & \dots & & -5 \\ \vdots & & \ddots & & \vdots \\ -5 & \dots & -5 & -6 & -5\\ -5 & \dots & & -5 & -6 \end{matrix}\right)\in \mathbb{R}^{82\times 82} $
How am I supposed to do this with a matrix so large? I tried looking for a pattern of Gauss Elimination but I got stuck. For clarification, the diagonal entries are $-6$ and the rest of the entries are $-5$.
First, try to substract the third row from the second row. Then the third from the second... and so on. You will see a quite nice matrix (almost triangular and lots of zeros): $$\left(\begin{array}{cccccc} -6&-5&-5&-5&\dots&-5 \\ 0&-1&1&0&\dots&0\\ 0&0&-1&1&\dots&0\\ 0&0&0&-1&\dots&0\\ \vdots&\vdots&\vdots&\vdots&\ddots&\vdots\\ 1&0&0&0&\dots&-1 \end{array}\right)$$ Now, you can easily remove the "-5"s. Use the second row to obtain a zero in the second element of the first row. Then the third row for the third element and so on.
I hope you can continue from here.