# 10

> MODEL := diff( y(t), t ) = y(t)^2 - 6*y(t) - 16;

[Maple Math]

> VARS := { y(t) };

[Maple Math]

> DOMAIN := t=0..2; # don't make this too long or you'll get crazy results (because dt is too large)

[Maple Math]

> RANGE := y = -10..10;

[Maple Math]

> IC1 := [ 0, 1 ];

[Maple Math]

> IC2 := [ 1, 0 ];

[Maple Math]

> IC3 := [ 0, -10 ];

[Maple Math]

> IC4 := [ 0, 5 ];

[Maple Math]

>

> DEplot( MODEL, VARS, DOMAIN, RANGE, [ IC1, IC2, IC3, IC4 ], arrows=MEDIUM );

>

>

>