The associated homogeneous recurrence relation is $a_n = 2a_{n−1}$. The characteristic equation is $r − 2 = 0$. Since our characteristic root is $r = 2$, we know by Theorem 3 that $a_n = α_{2}^n$ Note that $F(n) = 2n^2$ so we know by Theorem 6 that $s = 1$ and $1$ is not a root, the particular solution is of the form $n = c · 2n^2$ Plug into recurrence relation $c.2n^2 = 2.c(n-1)^2 + 2n^2$
is this correct? if then can we discuss further step to get value of c and solutions?
$$a_n=2a_{n-1}+2n^2$$
$$a_{n-1}=2a_{n-2}+2(n-1)^2$$
$$a_{n-2}=2a_{n-3}+2(n-2)^2$$
and so on, which tells you
$$a_n=2^2a_{n-2}+2^2(n-1)^2+2n^2$$
$$a_n=2^3a_{n-3}+2^3(n-2)^2+2^2(n-1)^2+2n^2$$
and so on down to
$$a_n=2^{n-1}a_1+\sum_{i=0}^{n-1}2^{i+1}(n-i)^2$$