Student[Calculus1][NewtonQuotient] - return the Newton quotient of an expression
|
Calling Sequence
|
|
NewtonQuotient(f(x), x = a..b, opts)
NewtonQuotient(f(x), x = c, a..b, opts)
NewtonQuotient(f(x), a..b, opts)
NewtonQuotient(f(x), c, a..b, opts)
|
|
Parameters
|
|
f(x)
|
-
|
algebraic expression in variable 'x'
|
x
|
-
|
name; specify the independent variable
|
a, b
|
-
|
algebraic expressions; specify the plot range
|
c
|
-
|
algebraic expression; specify a point in a..b
|
opts
|
-
|
equation(s) of the form option=value where option is one of central, derivativeoptions, functionoptions, h, iterations, output, pointoptions, quotientoptions, showderivative, showfunction, showpoints, showquotient, view, or Student plot options; specify output options
|
|
|
|
|
Description
|
|
•
|
The NewtonQuotient(f(x), x=a..b) command returns a plot of the from a to b and the function defined by Newton quotient for step size h at each point in the interval .
|
•
|
The optional argument gives the range of the plot. If no range is given, the interval is used.
|
•
|
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 (excluding central, h, iterations, and output) set plot options.
|
|
A list of options for the plot of the derivative of the expression . By default, the expression is plotted as a solid green line. For more information on plot options, see plot/options.
|
|
A list of options for the plot of the expression . By default, the expression is plotted as a solid red line. For more information on plot options, see plot/options.
|
|
h = positive, negative, list of positive or negative, or name
|
|
The value of the parameter h. The default value is . If the option output is plot or animation, this option must be of type positive, negative, or a list of these types. (See the description of the central option for more information.)
|
|
In an animation, by default iterations are shown with the value of h divided by each step. This option is ignored if the option h is a list.
|
|
output = value, line, plot, or animation
|
|
This option controls the return value of the function.
|
|
* output = value specifies that the value of the Newton quotient at the point (and corresponding value of h) are returned. Plotting options are ignored if output = value. This is the default.
|
|
* output = line specifies that the expression of the secant line passing through the points and is returned. Plotting options are ignored if output = line.
|
|
* output = plot specifies that a plot, which shows the expression and the secant through the points and , is displayed.
|
|
A list of options for any points in the plot. By default, all points are plotted as blue circles. If the second argument is a range, this option is ignored. For more information on plot options, see plot/options.
|
|
A list of options for the plot of the Newton quotient or secant lines. By default, the Newton quotients on an interval or secant lines on a point are plotted in blue. For more information on plot options, see plot/options.
|
|
showderivative = true or false
|
|
Whether the tangent to the graph of f(x) at the point is plotted. By default, the value is false.
|
|
showfunction = true or false
|
|
Whether the expression is plotted. By default, the value is true.
|
|
showpoints = true or false
|
|
showquotient = true or false
|
|
Whether the quotient of the expression is plotted. By default, the value is true.
|
|
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.
|
|
The default title is constructed from the parameters and the command options. title = "" disables the default title. For more information about specifying a title, see plot/typesetting.
|
|
|
Examples
|
|
>
|
|
>
|
|
| (1) |
>
|
|
| (2) |
>
|
|
>
|
|
The command to create the plot from the Plotting Guide is
>
|
|
|
|