a. Draw the 1-ladder, 2-ladder, and 3-ladder graphs, and calculate the number of spanning trees for each. - I have completed this part and wanted to confirm that these numbers look accurate, I feel like i was able to get all of them.

b. A spanning tree of a connected graph $G$ is a a tree which contains all the vertices of $G$ and which is a subgraph of $G$. If $T(n)$ is the number of spanning trees for the $n$-ladder, then $T(n)=4 · T(n - 1) - T(n - 2)$. Solve this recurrence relation to obtain a closed formula the number of spanning trees for a $n$-ladder. I don't really know how to do this part of the problem and would appreciate any help.
You can verify that there are $6 + 9 = 15$ spanning trees of the $3$-ladder graph.
To see this, note that you must remove $2$ edges.
For part b, which techniques have you seen for solving recurrence relations?
You can find the characteristic polynomial to find the general solution. In this case we get $r^2 - 4r + 1 = 0$, so $r = \frac{4 \pm \sqrt{12}}{2} = 2 \pm \sqrt{3}$. Then, $T(n) = c_1 (2 + \sqrt{3})^n + c_2(2 - \sqrt{3})^n$. Solve for the constants using the initial values $T(1) = 1$ and $T(2) = 4$.