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 ) = y(t) ;

[Maple Math]

> ode2 := diff( y(t), t ) = (1-x(t)^2)*y(t) - x(t) ;

[Maple Math]

> MODEL := [ ode1, ode2 ] ;

[Maple Math]

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

[Maple Math]

> VAR := [ x(t), y(t) ] ;

[Maple Math]

>