I'm not understanding this proof from Combinatorics: Topics, Techniques, Algorithms by Peter J. Cameron. Here is his proof of this theorem:
The theorem can be proven by induction on $n$. It is trivially true for $n = 0$. Assuming the result for $n$, we have $\displaystyle(1 + t)^{n + 1} = (1+t)^{n} \cdot (1 + t) = \left( \sum\limits_{k = 0}^{n} \binom{n}{k} t^k \right) \cdot (1 + t)$
the coefficient of $t^k$ on the right is $\displaystyle \binom{n}{k - 1} + \binom{n}{k}$ (the first term coming from $t^{k - 1} \cdot t$ and the second coming from $t^k \cdot 1$ and $\displaystyle \binom{n}{k - 1} + \binom{n}{k} = \binom{n + 1}{k}$
I'm very lost and don't see how this shows that the formula holds for $(1 + t)^{n + 1}$
Well we have that \begin{align} (1+t)^{n+1} &= \left(\sum_{k=0}^{n}\begin{pmatrix}n \\ k \end{pmatrix}t^k\right)(1+t) \\ &= \sum_{k=0}^{n}\begin{pmatrix}n \\ k \end{pmatrix}t^k + \sum_{k=0}^{n}\begin{pmatrix}n \\ k \end{pmatrix}t^{k+1} \\ &= \begin{pmatrix}n \\ 0 \end{pmatrix} + \sum_{k=1}^{n}\begin{pmatrix}n \tag{1}\\ k \end{pmatrix}t^k + \sum_{k=1}^{n}\begin{pmatrix}n \\ k-1 \end{pmatrix}t^k + \begin{pmatrix}n \\ n \end{pmatrix}t^{n+1} \\ &= \begin{pmatrix}n \\ 0 \end{pmatrix} + \sum_{k=1}^{n}\left[\begin{pmatrix}n \\ k \end{pmatrix} + \begin{pmatrix}n \\ k-1 \end{pmatrix}\right]t^k + \begin{pmatrix}n \\ n \end{pmatrix}t^{n+1} \\ &= \begin{pmatrix}n \\ 0 \end{pmatrix} + \sum_{k=1}^{n}\begin{pmatrix}n + 1 \\ k \end{pmatrix} t^k + \begin{pmatrix}n \\ n \end{pmatrix}t^{n+1}, \tag{2} \end{align} where at $(1)$ we have used the fact that \begin{align} \sum_{k=0}^{n}\begin{pmatrix}n \\ k \end{pmatrix}t^{k+1} &= \sum_{k=1}^{n+1}\begin{pmatrix}n \\ k-1 \end{pmatrix}t^{k} \\ &= \sum_{k=1}^{n}\begin{pmatrix}n \\ k-1 \end{pmatrix}t^{k} + \begin{pmatrix}n \\ n \end{pmatrix}, \end{align} (which follows by relabelling the summands via $k \mapsto k-1$) and at $(2)$ we have used the identity \begin{align} \begin{pmatrix}n \\ k \end{pmatrix} + \begin{pmatrix}n \\ k-1 \end{pmatrix} = \begin{pmatrix}n +1 \\ k \end{pmatrix}. \end{align} Can you take it from here?