Hi everyone !
In the context of a linear algebra course, I need to solve this complex third order ODE using matrices:
$$y''' - iy'' +y'-iy = e^{it} + t$$
I already managed to write the matrix form for the homogeneous equation:
$$ \frac{d}{dt} \begin{pmatrix} y \\ y'\\ y''\\ \end{pmatrix} = \begin{pmatrix} 0 & 1 & 0 \\ 0 & 0 & 1 \\ i & -1 & i \\ \end{pmatrix} \begin{pmatrix} y\\ y'\\ y''\\ \end{pmatrix} $$
I'm stuck at this stage: I don't understand how I need to proceed now...
Thanks a lot for your help !
Solve the characteristic equation first: $$r^3-ir^2+r-i=0$$ You can rewrite it as $$r^2(r-i)+(r-i)=(r-i)(r^2+1)=(r-i)^2(r+i)=0$$ Note that the solutions of this equation are similar to the power of the particular solution, so the particular solution must contain a polynomial multiplied with $e^{it}$.