Section 2.4
Maple Tool 3
This Maple file is configured to graph the approximate derivative of
and to determine how the derivative is related to
itself
.
Enter the value of
(initially set to 1).
> | k:=4; |
> | f:=t->exp(k*t); |
> | g:=t->(f(t+0.001)-f(t))/0.001; |
> | h:=t->g(t)/f(t); |
Plot the functions
f,
, and
.
> | plot([f(t),g(t),h(t)], t=-2..2, y=0..8, color=[red,blue,green]); |
> |
> |
> |