I have just started getting into ODEs, and have come across the Runge-Kutta method for numerically solving them. However, in playing around with them to model hypothetical situations, I came across the equations:
$$\begin{aligned} \dot x &= x - x^2 - y\\ \dot y &= xy - y^2 \end{aligned}$$
I was trying to think of how one would use Runge Kutta methods to do this, and I couldn't figure it out. What is this type of differential equation called, and how can I simulate/solve it?