I have a final in the morning and I am extremely confused on the annihilator method. I have been googling different explanations all night and I just dont get it at all. I am looking at an example: $$\ddot{y}+6\dot{y}+y=e^{(3x)}-\sin(x)$$
now I get that the annihilator of the $e$ term is $(D-3)$ but the answer is $(D-3)(D+1)(D^2 +6D +8)$ can someone explain the second part and if you are feeling generous how to do other annihilators maybe with examples in really simple language. I get so lost with these explanations that use "math language"
also is there a list or something I can study for what annihilates what? i have found one that I understand but it's really limited. A lot of them are written in extremely complicated language.
thanks for your help
The annihilator method is a systematic way to find the particular solutions to a nonhomogeneous linear ODE. Initially, on the left hand side of your equation, the differential operator $f_1(D)$ "generates" the term $y''+6y'+y$. you can see this as $$f_1(D)y=\left(D^2+6D+1\right)y=\left(\frac{d^2}{dx^2}+6\frac{d}{dx}+1\right)y=\frac{d^2}{dx^2}y+6\frac{d}{dx}y+1y=y''+6y'+y$$
Now that we see what a differential operator does, we can investigate the annihilator method. It is a systematic way to generate the guesses that show up in the method of undetermined coefficients. You look for differential operators such that when they act on the terms on the right hand side they become zero. In your example you have $e^{3x}$ and $-\sin x$. So we see: $$f_2(D)e^{3x} = \left(D-3\right)e^{3x} = \left(\frac{d}{dx}-3\right)e^{3x}=\frac{d}{dx}e^{3x}-3e^{3x}=0$$ and $$f_3(D)(-\sin x) = \left(D^2+1\right)(-\sin x) = \left(\frac{d^2}{dx^2}+1\right)(-\sin x)=\sin x - \sin x=0 $$
and now we have the full differential operator for this problem: $$f_1f_2f_3 = (D^2+6D+1)(D^2+1)(D-3)$$ The roots of this polynomial become the coefficients in the arguments of exponentials for the general solution. So we have $$y_1(x)=e^{(-3+2\sqrt{2})x}, y_2(x)=e^{(-3-2\sqrt{2})x},y_3(x)=e^{ix},y_4(x)=e^{-ix},y_5(x)=e^{3x} $$ and from this "basis" set we form the general solution: $$y(x)=c_1y_1+c_2y_2+c_3y_3+c_4y_4+c_5y_5$$ $c_1$ and $c_2$ are arbitrary constants and $c_3,c_4,c_5$ are fixed by the ODE.