Solution Curves

First we plot the rabbit and fox populations jointly against time using the first of the given initial conditions. As above you should repeat this with the other initial conditions, different time intervals, different step sizes, etc. Again you may want to use Maple's options to distingiush the two curves.

> Fplot:= DEplot( MODEL, vars, domain, [ init1 ], stepsize=0.5, scene=[t, F], linecolor=RED, arrows=NONE):

> Rplot:= DEplot( MODEL, vars, domain, [ init1 ], stepsize=0.5, scene=[t, R], linecolor=BLUE, arrows=NONE):

> display( {Fplot,Rplot}, title = `Rabbits and 100 * Foxes vs. time` );

>