Hello i was wondering if anyone could tell me if the phase diagram i have plotted is correct for the system below
$\frac{dx}{dt}=-2x-y+2$ and $\frac{dy}{dt}=xy$
I calculated the equilibrium points to be $(\bar x,\bar y)=(0,2)$ and $(\bar x,\bar y)=(1,0)$
For the first equilibrium point i calculated that the eigenvalues to be $\lambda=-1\pm 2i$ which implies that this is a stable spiral?
For the second equilibrium point the eigenvalues are $\lambda_1=-2,\lambda_2=-1$ which implies that this equilibrium point is a stable node?
Now for the maple diagram my code was
DEplot(sys, [x(t), y(t)], t = 10 .. -10, x = -3 .. 3, y = -3 .. 3, [[x(0) = 0, y(0) = 2]], [[x(0) = 0, y(0) = 1]], stepsize = .1, linecolor = blue, thickness = 2, arrows = medium);
where
sys := {diff(x(t), t) = -2*x(t)-y(t)+2, diff(y(t), t) = x(t)*y(t)}
if this is incorrect can anyone tell me where i'm going wrong? it doesnt look right to me but i cant think of any other way plotting it using maple.

