Nothing actually appears to be circled, but here's a bit of an explanation of what's going on:
You're told that the general solution to the recurrence relation $C_0 a_n + C_1 a_{n-1} + C_2 a_{n-2} = f(n)$ is $a_n = 3^n + 4^n + 2$. You're also given the information that we're interested in the specific recurrence relation where $f(n) = 6$, i.e. the relation is just $C_0 a_n + C_1 a_{n-1} + C_2 a_{n-2} = 6$. And you're being asked to find the coefficients $C_0, C_1, C_2$.
Putting the given solution into that equation gives you $C_0\left(3^n+4^n+2\right) + C_1\left(3^{n-1}+4^{n-1}+2\right) + C_2\left(3^{n-2}+4^{n-2}+2\right) = 6$. Note that this equation must be true for all $n > 2$, which means that we are looking for values of the coefficients to make it identically true (i.e. so it doesn't depend on a particular value of $n$). That will be the case when we make all the $3^n$ terms and $4^n$ terms disappear, and all the constant terms cancel out with the $6$. So, by using the fact that $3^{n-1} = \frac{3^n}{3}$ and similarly for the other terms, we have:
$\begin{eqnarray}C_0 \left(3^n + 4^n + 2 \right) + C_1 \left( \frac{3^n}{3} + \frac{4^n}{4} + 2 \right) + C_2 \left( \frac{3^n}{9} + \frac{4^n}{16} + 2 \right) & = & 6\\
3^n \left( C_0 + \frac{C_1}{3} + \frac{C_2}{9} \right) + 4^n \left( C_0 + \frac{C_1}{4} + \frac{C_2}{16} \right) + \left( C_0 + C_1 + C_2 \right) & = & 6\end{eqnarray}$
The right hand side has nothing that depends on $3^n$, so the term on the left that depends on $3^n$ must disappear, i.e. $C_0 + C_1 / 3 + C_2 / 9 = 0$, and similarly for the $4^n$ term. Then we also have that the constant term on the right is $6$, so the bit on the left that doesn't depend on $n$ must also be $6$, so $C_0 + C_1 + C_2 = 6$, and then we just have three linear equations in 3 unknowns to solve.