# 10

(a)

> ode1 := diff( x(t), t ) = -2*x(t)+y(t) ;

[Maple Math]

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

[Maple Math]

> MODEL := { ode1, ode2 } ; # define the differential equation model

[Maple Math]

> VAR := { x(t), y(t) } ; # identify the variables in the model in the form h(t), u(t)

[Maple Math]

>

> DOMAIN := t = 0 .. 5 ; # specify reasonable interval for indep var

[Maple Math]

> WINDOW := x = -2 .. 2,

> y = -2 .. 2 ; # specify reasonable intervals for all dependent vars

[Maple Math]

>

Direction Field

Phase Portrait

>