Student[Calculus1]
CriticalPoints
find the critical points of an expression
Calling Sequence
Parameters
Description
Examples
CriticalPoints(f(x), x, opts)
CriticalPoints(f(x), x = a..b, opts)
CriticalPoints(f(x), a..b, opts)
f(x)
-
algebraic expression in variable 'x'
x
name; specify the independent variable
a, b
algebraic expressions; specify restricted interval for critical points
opts
equation(s) of the form numeric=true or false; specify computation options
The CriticalPoints(f(x), x) command returns all critical points of f(x) as a list of values.
The CriticalPoints(f(x), x = a..b) command returns all critical points of f(x) in the interval [a,b] as a list of values.
If the independent variable can be uniquely determined from the expression, the parameter x need not be included in the calling sequence.
A critical point is defined as any point at which the derivative is either zero or does not exist.
If the expression has an infinite number of critical points, a warning message and sample critical points are returned.
The opts argument can contain the following equation that sets computation options.
numeric = true or false
Whether to use numeric methods (using floating-point computations) to find the critical points of the expression. If this option is set to true, the points a and b must be finite and are set to −10 and 10 if they are not provided. By default, the value is false.
with⁡StudentCalculus1:
CriticalPoints⁡3⁢x2−x
16
CriticalPoints⁡3⁢x5−5⁢x3+3,x
−1,0,1
CriticalPoints⁡2⁢x3+5⁢x2−4⁢x
−2,13
CriticalPoints⁡2⁢x3+5⁢x2−4⁢x,x=0..1
13
CriticalPoints⁡x2−3⁢x+1x,x
−1,1
CriticalPoints⁡x2−3⁢x+1x,x,numeric
−1.000000000,1.000000000
See Also
Student
Student[Calculus1][Asymptotes]
Student[Calculus1][CurveAnalysisTutor]
Student[Calculus1][ExtremePoints]
Student[Calculus1][FunctionChart]
Student[Calculus1][InflectionPoints]
Student[Calculus1][Roots]
Download Help Document