I have an system of three differential equation coupled. I put this system to matrix form. I think it should be more easy to solve. $$ \begin{bmatrix} \ddot x_1 \\ \ddot x_2 \\ \ddot x_3 \\ \end{bmatrix} = \begin{bmatrix} 0 & a_{12} & -a_{31} \\ -a_{12} & 0 & a_{23} \\ a_{31} & -a_{23} & 0 \\ \end{bmatrix} \begin{bmatrix} \dot x_1 \\ \dot x_2 \\ \dot x_3 \\ \end{bmatrix}+\begin{bmatrix} c_1 \\ c_2 \\ c_3 \\ \end{bmatrix} $$ All constants are positive or zero.
Could someone tell me what I should read to get the knowledge to solve this differential equation ?
Thanks for your help. Tof
Edit: $a_{23} -> -a_{23} $
Note that the $A$ matrix is a skew symmetric matrix which represents a vectorial product operator $\vec A \times$ so the DE could read
$$ \ddot X = \vec A \times \dot X + C $$
So we have
$$ \langle \dot X, \ddot X \rangle = \langle \dot X, C \rangle $$
because $\langle \dot X, \vec A\times \dot X \rangle = 0$ or
$$ \frac{1}{2}\frac{d}{dt}\Vert\dot X\Vert^2 = \langle \dot X,C \rangle $$
and after integration
$$ \Vert\dot X\Vert^2 = 2 \langle X, C \rangle + C_0 $$
which can be arranged as
$$ \big\langle X - X_0(t),C \big\rangle = 0 $$
so the movement is such that $X-X_0(t)$ is normal to $C$ etc.
NOTE
$\langle \cdot,\cdot \rangle$ represents the scalar product between two vectors. Here $X_0(t)$ represents a vector multiplied by the scalar $||\dot X||^2$ plus a constant vector. Now assuming $\Vert C \Vert > 0$
$$ \Vert\dot X\Vert^2 = \left\langle \Vert\dot X \Vert^2\frac{C}{\Vert C \Vert^2},C \right\rangle $$
and
$$ C_0 = \langle x_0, C \rangle $$
hence
$$ X_0 = \Vert\dot X\Vert^2\frac{C}{\Vert C\Vert^2} + x_0 $$