e) Phase Plane and x- and y-solutions for the IVP

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

> ode2 := diff( y(t), t ) = -4*x(t) + 6*y(t) :

> MODEL := [ ode1, ode2 ] ;

[Maple Math]

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

[Maple Math]

>

> DOMAIN := t = 0 .. 1 ;

[Maple Math]

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

> y = -10 .. 10 ;

[Maple Math]

>

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

[Maple Math]

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

> title = `Phase Portrait for #4` ):

> PHASEplot;

[Maple Plot]

>

> DOMAIN := t = 0 .. 2.5;

[Maple Math]

> P1:= DEplot( MODEL, VAR, DOMAIN, IC,

> scene=[ t, x ], arrows=NONE, linecolor=BLUE ):

> P2:= DEplot( MODEL, VAR, DOMAIN, IC,

> scene=[ t, y ], arrows=NONE, linecolor=GREEN ):

> display( [ P1, P2 ] , title = `x and y solution curves for # 4` );

[Maple Plot]