x-nullclines

The [Maple Math] -nullclines are found by setting the RHS of the first ODE equal to 0:

> factor( rhs(ode1) ) = 0 ;

[Maple Math]

The [Maple Math] -nullcline(s) typically consists of curves that can be expressed either as a function of [Maple Math] or as a function of [Maple Math] :

> xNULL1 := plot( 2-x, x = -1 .. 6, color=GREEN ): # for a nullcline of the form y=F(x)

> xNULL2 := plot( [ 0, y, y = -5 .. 5 ], color=GREEN ): # for a nullcline of the form x=G(y)

> xNULLplot := display( [ xNULL1, xNULL2 ], axes=BOXED ):

> xNULLplot;

>