Student[Calculus1]
DerivativePlot
plot an expression and its derivative
Calling Sequence
Parameters
Description
Examples
DerivativePlot(f(x), x, opts)
DerivativePlot(f(x), x = a..b, opts)
DerivativePlot(f(x), a..b, opts)
f(x)
-
algebraic expression in variable 'x'
x
name; specify the independent variable
a, b
algebraic expressions; specify the plot range
opts
equation(s) of the form option=value where option is one of alllegends, derivativecolors, derivativeoptions, derivativeoptions[i], functionoptions, order, showderivative, showfunction, or Student plot options; specify options for the plot
The DerivativePlot(f(x), x=a..b) command plots the expression and its derivative or derivatives.
If the independent variable can be uniquely determined from the expression, the parameter x need not be included in the calling sequence.
The opts argument can contain any of the Student plot options or any of the following equations that set plot options.
alllegends = true or false
Whether the legend for every derivative curve is displayed. If false, then only the legends for the first and last derivatives are displayed. By default, the value is false.
derivativecolors = color..color, color, list(color), or procedure
Color(s) of the derivative(s) of f(x) in the plot. It can be specified as:
A range of colors that indicate the color of the lowest and highest derivatives. The colors of intermediate derivatives are interpolated. By default, a range of colors is used.
A single color for all derivatives.
A list of colors where the list has at least as many colors as there are degrees.
A procedure that takes as an argument a positive integer (the degree of the derivative) and returns the color of the derivative plot. For more information on plot colors, see plot/color.
derivativeoptions = list
A list of options for the plot of every derivative of the expression f⁡x. The options for the plot of specific derivatives will be replaced if the corresponding derivativeoptions[i] has set options for that derivative. For more information on plot options, see plot/options.
derivativeoptions[i] = list
A list of options for the plot of the ith derivative of the expression f⁡x. These plot options will replace those set by derivativeoptions. i must be one of the derivatives specified in order. For more information on plot options, see plot/options.
functionoptions = list
A list of options for the plot of the expression f⁡x. By default, the expression is plotted as a solid red line. For more information on plot options, see plot/options.
order = posint, posint..posint, set(posint), or list(posint)
Which derivatives are plotted. The first and higher derivatives can be plotted. By default, only the first derivative is plotted.
showderivative = true or false
Whether the derivative(s) of f⁡x is (are) plotted. By default, the value is true.
showfunction = true or false
Whether the expression f⁡x is plotted. By default, the value is true.
caption = anything
A caption for the plot.
The default caption is constructed from the parameters and the command options. caption = "" disables the default caption. For more information about specifying a caption, see plot/typesetting.
with⁡StudentCalculus1:
f≔x↦3⋅x2−x
diff⁡f⁡x,x
6⁢x−1
DerivativePlot⁡f⁡x,x=−1..1
DerivativePlot⁡exp⁡x+exp⁡−x,−1..1
DerivativePlot⁡sin⁡x+x,functionoptions=thickness=2,derivativeoptions=color=green,derivativeoptions1=legend=Slope
DerivativePlot⁡sin⁡0.98⁢x,x=0..10,order=1..20,derivativecolors=blue..magenta
f := proc() evalf(sqrt( rand()/10^12 )) end proc:
colors := proc() COLOR(RGB, f(), f(), f()) end proc:
DerivativePlot⁡sin⁡0.98⁢x,x=0..10,order=1..20,derivativecolors=colors
The command to create the plot from the Plotting Guide is
DerivativePlot⁡sin⁡x+x,order=1,2
See Also
plot/options
plot/typesetting
Student
Student plot options
Student[Calculus1][AntiderivativePlot]
Student[Calculus1][DerivativeTutor]
Student[Calculus1][VisualizationOverview]
Download Help Document