I was thinking about an ODE system which has three equal eigenvalues like this situation:
EDIT: $X'=AX$ $$A=\begin{pmatrix} 1 && 3 && 2 \\ 0 && 1 && 0\\ 0 && 2 && 1 \end{pmatrix} $$The eigenvalues are: $$(\lambda-1)^{3}=0$$ $$\lambda_{1,2,3}=1$$ It's clear that I have $\lambda=1$ with $\mu=3$.
I know very well the form of the solutions for a 2x2 system with eigenvalues with $\mu=2$:
$$ \begin{pmatrix} x(t)\\ y(t)\\ \end{pmatrix}=c_1e^{\lambda t}\mathbb u+c_2e^{\lambda t}[t\mathbb u+\mathbb w] $$
Now I'm asking myself which is a possible generalization for a 3x3 case of this formula. I'm expecting to have a $t^{2}$ term to appear in the formula.
Moreover, I have already computed the eigenvector plus two generalized eigenvectors (for the case I showed in this example for $\lambda=1$).
Eigenvectors: $$\mathbb u=(1,0,0)$$ $$\mathbb v=(0,0,\frac{1}{2})$$ $$\mathbb w=(0,\frac{1}{4},-\frac{3}{8})$$
Note that $\mathbb v$ and $\mathbb w$ are generalized eigenvectos.
Thank you very much.