Compare with Direct Solution via dsolve

The general solution (and particular solution to the IVP, if appropriate) should agree with the solution found above.

> CHECKgen := dsolve( MODEL, VAR );

> CHECKivp := dsolve( { MODEL, IC1, IC2 }, VAR );

>

Do not become too concerned if the solutions from dsolve do not appear to be exactly the same as the ones found in Steps 1 -- 4 You can probably see how some solutions are equivalent but others are easiest to compare graphically (the two solutions should be on top of one another) - be sure you pick a domain that is large enough to clearly show the equivalence of the two solutions (but not so large as to create an unsmooth plot or to take forever to plot).

> DOMAIN := t = 0 .. ? ;

> plot( [ rhs(SOLNivp), rhs(CHECKivp) ], DOMAIN, color=[RED,BLUE], style=[LINE,POINT] );

>