I am asked to use mathematica to plot the fixed-points of the following system
$$ \frac{dN}{dt} = -\gamma N \left( 1 - \left( \beta M + N\right) \right) $$ $$\frac{dM}{dt} = M \left( 1 - \left( \alpha N + M\right) \right) $$
for the case where $\alpha = 2,\ \beta =2,\ \gamma=1$.
I assume it will involve using NDSolve, but I'm not sure what to take for initial conditions or really the format of the statement.
Any help is appreciated
so far I have the following:
sol = NDSolve[{x'[t] == x[t] - \[Sigma] (y[t] x[t]) - x[t]^2,
y'[t] == \[Rho] (\[Beta] y[t] x[t]) - \[Rho] y[
t] - \[Rho] y[t]^2, \[Sigma] == 2, \[Beta] == 2, \[Rho] == 1},
x, y, {t, 0, 50}]

To plot the phase portrait in Mathematica, you can use StreamPlot:
If you want the nullclines as well then do,
Where the lines cross of the same color, you have a fixed point as well as at an orange and blue line but those two should be apparent.