Let $$ A = \begin{bmatrix} 1 & 0 \\ 1 & 1 \end{bmatrix}$$ Prove that $$A^n = nA - (n-1)I$$ where $I$ is identity matrix.
I have tried solving it using the Cayley-Hamilton theorem, getting $$A^{2n} = {(2A- I)}^n$$ However, I am unable to convert it to the desired form.
A consequence of the Cayley-Hamilton theorem is that any analytic function $f$ of $A$ can be written in the form $aI+bA$ for some scalars $a$ and $b$. It’s also the case that if $\lambda$ is an eigenvalue of $A$, then $f(\lambda)=a+b\lambda$. This gives you a system of linear equations for $a$ and $b$. If there are repeated eigenvalues, differentiate to generate enough independent equations.
By inspection, the only eigenvalue of $A$ is $1$, so we have the system $$a+b=1 \\ b=n,$$ from which $A^n = (1-n)I+nA = nA-(n-1)I$.
If you’re not familiar with eigenvalues, then split $A$ into $I+N$, where $N^2=0$, and apply the Binomial Theorem, as suggested in other answers.