Solution Curves II

> IC := [ x(0) = 0.25, y(0) = 0.25 ] ; # specify an initial condition (not needed for direction field)

[Maple Math]

> P1:= DEplot( MODEL, VAR, DOMAIN, [ IC ],

> scene=[ t, x ], arrows=NONE, linecolor=BLUE ):

> P2:= DEplot( MODEL, VAR, DOMAIN, [ IC ],

> scene=[ t, y ], arrows=NONE, linecolor=GREEN ):

> display( [ P1, P2 ] , title = `Figure 2.33 (b)` ); # combined solution curves

>