Defining the model

All differential equation models begin with a differential equation. If the problem is an intial value problem, an initial condition is also needed. Replace the question marks ( %? ) in the following input regions to define the relevant ODE model.

> ode1 := diff( x(t), t ) = x(t)*y(t) :

> ode2 := diff( y(t), t ) = y(t) + 1 :

> MODEL := [ ode1, ode2 ] ;

[Maple Math]

> IC := [ x(0)=1, y(0)=0 ];

[Maple Math]

> VAR := { x(t), y(t) } ;

[Maple Math]

>