I have these two similar ODE's: $$ u''' + 6u'' + 12u' + 8u = 0$$ and $$ u''' +6u'' + 12u' +(8+i)u = 0$$
I know that for an $n$-th order ODE there are $n$ lin-indep bases of solutions. And know how to solve for 2nd order, but how would I approach these third-order ones?
Hint for first equation
$$u''' + 6u'' + 12u' + 8u = 0$$ Substitute $z=u'+2u$ then the equation becomes sipmly $$z''+4z'+4z=0$$ Polynome is $R^2+4R+4=(R+2)^2=0 \implies R=-2$ .Then $$z=c_1e^{-2x}+c_2xe^{-2x}$$ Substitute back $z=y'+2y$ $$y'+2y=c_1e^{-2x}+c_2xe^{-2x}$$ $$(ye^{2x})'=c_1+c_2x$$ integrate $$(ye^{2x})=c_1x+c_2x^2+c_3$$ $$\boxed{y(x)=e^{-2x}(c_3+c_1x+c_2x^2)}$$
I let you finish the second equation...