Given $ A_n = \left[ {\begin{array}{cc} 2 & 1 & \\ 1 & 2 & 1\\ & 1 & 2 \\ & & & ... \\ & & & & 2 & 1 \\ & & & & 1 & 2 \end{array} } \right] \in M_n(\mathbb{R})$. What I have to do is calculate the determinant with respect to $n\in \mathbb{N}$. I already found out $\det(A_n) = n+1$. I tried to show this with induction. I get confronted by the following problem:
I showed the statement for $n=1$. Lets consider the statement is true for one $n \in \mathbb{N}$. Now show that the statement is also true for $n+1$ using laplace expansion for the first row.
We get $\det(A_{n+1}) = (-1)^2\cdot 2\cdot \det(A_n)+(-1)^3\cdot 1\cdot \begin{vmatrix} 1 & 1 & \\ 0 & 2 & 1\\ & 1 & 2 \\ & & & ... \\ & & & & 2 & 1 \\ & & & & 1 & 2 \end{vmatrix} $. The second determinant should be $1\cdot \det(A_{n-1}) = n$ but we only considered the statement tu be true for $n$ and not for $n-1$. How do I continue from here?