In order to be sure the
symbolic solution fits, we need to overlay the two pictures being drawn
by different plot routines. To do this, we assign each plot a name, and
then we "display" a list consisting of the two names. To get
the display command (and other graphing tools), enter
with(plots);
to obtain access to the display command. Then go back to
your dfieldplot line and change it to
plot1 := dfieldplot(DE1, y, t = -2..2, y = -0.5..1.5,
color=blue): %;
Recall the use of a colon
to keep from outputting Maple's complete description of the plot.
The %; at the end causes drawing to
take place.
Change your function
plot command to
plot2 := plot (h(t), t = -2..2, y = -0.5..1.5,
thickness=2): %;
Then enter
display( plot1, plot2 );
to show the two plots superimposed.