I Need to compute the Eigenvalues of the following General Matrix. Let $b\geqslant a$. Consider the $(a+b+1)\times (a+b+1)$-Matrix $C$ with the following entries. $$ c_{1,1}=c_{a+b+1,0}=1 $$ and $$ c_{i,j}=1~\text{ for }1\leqslant i\leqslant a+b, j=i+1 $$ and all other entries are $0$.
Example: a=2, b=3
$$ \begin{pmatrix}1 & 1 & 0 & 0 & 0 & 0\\0 & 0 & 1 & 0 & 0 & 0\\0 & 0 & 0 & 1 & 0 & 0\\0 & 0 & 0 & 0 & 1 & 0\\0 & 0 & 0 & 0 & 0 & 1\\1 & 0 & 0 & 0 & 0 & 0\end{pmatrix} $$
Sorry that I asked the question so confusing before. Note, that I Need the Eigenvalues, not the determinant as I asked before, sorry.
For eigenvalues you need to calculate $|A-\lambda I|$. So you get $$ |A-\lambda I|=\begin{vmatrix} 1-\lambda&1&0&\dots&0\\0&-\lambda&1&\dots&0\\\vdots&\vdots&\vdots&&\vdots\\ 0&0&0&\dots&1\\ 1&0&0&\dots&-\lambda \end{vmatrix} = $$
$ = (1-\lambda)*(-\lambda)^{a+b} +(-1)^{a+b} = (-1)^{a+b}*((1-\lambda)\lambda^{a+b}+1) = 0$
so the eigenvalues are the solutions of $(1-\lambda)\lambda^{a+b}+1 = 0$