Question: system of ode of predator prey models

hi, i don't know maple at all and i need to figure out how to solve this sytem of equations that model predator prey systems in maple but i get an error when i modify this code > e1 := diff(x(t),t) = k*x(t) - a*x(t)*y(t); > e2 := diff(y(t),t) = -r*y(t) + b*x(t)*y(t); to fit this equation- dx/dt = 2x(1-x/4) - xy dy/dt = -3y + xy x(0) = 1 y(0) = 1 if anyone has time to tell me what i can do to get the equilibrium points, the solution and the table of values for this system, i would be grateful
Please Wait...