Solve the recurrence relation $a_n – 5a_{n-1} +8a_{n-2} -4a_{n-3} = 3^n$

combinatorics

Solve the recurrence
$a_n – 5a_{n-1} +8a_{n-2} -4a_{n-3} = 3^n$
with initial conditions $a_1 = 1, a_2 =5$ and $a_3 = 17$ How this was calculated? any hint or idea highly appreciated

Best Answer

Hint: I'd suggest using characteristic polynomials. This particular recurrence can be made homogeneous linear from: $$a_n - 5a_{n-1} +8a_{n-2} -4a_{n-3} = 3^n$$ $$a_{n-1} - 5a_{n-2} +8a_{n-3} -4a_{n-4} = 3^{n-1}$$ and $$a_n - 5a_{n-1} +8a_{n-2} -4a_{n-3} = 3^n$$ $$3a_{n-1} - 15a_{n-2} +24a_{n-3} -12a_{n-4} = 3^n$$ and subtracting $$a_n-8a_{n-1}+23a_{n-2}-28a_{n-3}+12a_{n-4}=0$$ which leads to the following characteristic polynomial: $$x^4-8x^3+23x^2-28x+12=0$$ Integers solutions (if any, rational roots theorem) should be divisors of $12$ and indeed $1,2,3$ are the solutions. Or $$x^4-8x^3+23x^2-28x+12=(x-1)(x-2)^2(x-3)$$ Everything else is mechanics, here and here are a few examples to help you finish the exercise.

Related Question