I am going through an example in my lecture notes. This is it:
Let's introduce the matrix $D_n(\alpha, \beta, \gamma)$, which looks like this:
$$\pmatrix{\beta & \gamma & 0 & 0 & ... & 0 \\ \alpha & \beta & \gamma& 0 & ... & 0 \\ 0 & \alpha & \beta & \gamma & ... & 0 \\ : & : & : &: & ... & : \\0 & 0 & 0 & 0 & ... & \beta}$$
To calculate the determinant, $d_n$, lets first decompose by row 1. Here, the first element is $\beta$. Removing this gives us the same matrix again but slightly smaller. We can therefore start with $d_n = \beta d_{n-1}$.
Now look at $\gamma$. As it is in row $1$ and column $2$, it has sign $(-1)$. Matrix now has new first element, $\alpha$ and so for the algebraic complement of $\gamma$, we decompose by column $1$. This gives us $d_n = \beta d_{n-1} - \gamma \alpha _{r - n}$. Let's call this $(*)$.
By now removing columns $\beta$ and $\gamma$ and rows $\beta$ and $\alpha$, we get the originial matrix again, but smaller. We then write $(*)$ as $d_n = \beta d_{n -1} - \gamma \alpha d_{n-2}$
I have a few questions with this. Firstly, when we start looking at column $\gamma$, how does decomposing with column $1$ give us that determinant bit? I am thinking I have written something down wrong but I am not sure what. Also, removing row $\alpha$ won't give us the same matrix again will it as we will now have $a_{11} = \alpha$ when it should be $\beta$, wouldn't we?
EDIT: Sorry, we do get the matrix again as removing column $\gamma$ takes out that $\alpha$. I still don't get the first bit on how they calculated the determinant using column $\gamma$.