c) Direction Field

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

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

> MODEL := [ ode1, ode2 ] ;

[Maple Math]

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

[Maple Math]

>

> DOMAIN := t = 0 .. 5 ;

[Maple Math]

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

> y = -3 .. 3 ;

[Maple Math]

>

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

> [x(0)=-0.03,y(0)=0],

> [x(0)=-1,y(0)= 2.5],

> [x(0)= 1,y(0)=-2.5] ];

[Maple Math]

> PHASEplot := DEplot( MODEL, VAR, DOMAIN, WINDOW, IC, arrows = MEDIUM,

> title = `Direction Field & Straight-Line Solutions for #1` ):

> PHASEplot;

[Maple Plot]