I missed one of my class today morning where in Recurrence Relation was conducted. In the solution to one problem the following stage is reached:
$C_0+\frac{C_1}3+\frac{C_2}9=0,\,C_0+\frac{C_1}4+\frac{C_2}{16}=0$, and $2(C_0+C_1+C_2)=6$.
Solving these equations, we get $C_0=\frac12$, $C_1=\frac{-7}2$, $C_2=6$.
I am unable to understand the last line.
(Original image here.)
You have three simultaneous equations in three unknowns. You can write the last as $C_0=3-C_1-C_2$ and substitute that into the first two. That will get you down to two equations in two unknowns. Solve one of them for $C_1$, substitute into the other, and you will have one equation in $C_2$. Solve it, plug that value into the others and you will get there. It doesn't really matter that this came from a recurrence relation. There are also matrix methods for solving the three equations.