I am trying to solve this system of differential equations.
\begin{cases} x_1'= -x_1+2x_1^3+x_2,\\ x_2'= x_1+x_1x_2. \end{cases} *by abusing the notations, I assumed $x(t) = x$
Among fixed points, some of them have complex coordinates. What do these points mean? Should I take them into account when describing the system's behavior?
Welcome to math.stackexchange
Typically $x_1$ and $x_2$ are real variables so they never take on complex values.
Complex values are not stable points for real variables.
$\dot{x_1} = -x_1+2x_1^3+x_2$
$\dot{x_2} = x_1+x_1x_2$
For $\dot{x_1} = 0$ you have $x_2 = x_1 - 2x_1^3$
For $\dot{x_2} = 0$ you have $x_1+x_1x_2 = 0$ either $x_1 = 0$ or $x_2 = -1$
octave:
The red line is $\dot{x_1} = 0$. The green lines are $\dot{x_2} = 0$.
The steady points are the intercepts at $(x_1,x_2) = $ $(0,0)$ and $(1,-1)$.