$$t(n)=\begin{cases}n&\text{if }n=0,1,2,\text{ or }3\\t(n-1)+t(n-3)-t(n-4)&\text{otherwise.}\end{cases} $$ Express your answer as simply using the theta notation.
I don't know where to go with this.
$$t(n) - t(n-1) - t(n-3) + t(n-4) = 0$$
Is the characteristic polynomial $x^3 - x^2 - x +1 = 0$?