I am attempting to solve this:
Problem 4.35. Solve the following recurrence exactly.
$$T(n)=\begin{cases} a & \text{if } n=0 \text{ or } n=1 \\ T(n-1)+T(n-2)+cn & \text{otherwise} \end{cases}$$
Express your answer as simply as possible using the $\Theta$ notation and the golden ratio $\phi=\frac{1+\sqrt{5}}{2}$. Note that this is Recurrence 4.1 from Section 4.2.3 if $h(n)=cn$, which represents the time taken by a call on $\operatorname*{Fibrec}(n)$ if we do not count the additions at unit cost. Compare your answer to that of Problem 4.34, in which additions were counted at unit cost.
Here is my work:
