Preliminary Analysis

We begin the analysis of this problem with the slope field.

> VAR := { y(t) }; # specify the variables in the model

[Maple Math]

> DOMAIN := t = 0 .. 1; # specify a reasonable interval for the independent variable

[Maple Math]

> RANGE := y = -0.1 .. 1 ; # specify a reasonable interval for the dependent variable

[Maple Math]

>

> plotSLOPE := DEplot( MODEL, VAR, DOMAIN, RANGE, arrows = MEDIUM ):

> plotSLOPE;

>

When the solution curve through the specified initial condition is added, the picture looks like

> DEplot( MODEL, VAR, DOMAIN, RANGE, [ [IC] ], linecolor = BLUE, arrows = MEDIUM );

Notice how the solution curve is always tangentiala to the slope field. (This is a good way to check that your "answer" is reasonable.)

>

Even though it is not asked for in this problem, let's see what Maple can do for an analytic solution.

> SOLN := dsolve( { MODEL, IC }, VAR );

[Maple Math]
[Maple Math]
[Maple Math]
[Maple Math]
[Maple Math]

UGH! No wonder we haven't spent more time worrying about explicit solutions!!!

>