How to find inflection points
An inflection point occurs where a curve changes concavity, which requires the second derivative to change sign. This method applies to any twice-differentiable function on a given continuous interval.
The setup
You need the function and its domain. Verify that is continuous across the domain where you are testing for inflection points.
The steps
- Compute the first derivative .
- Compute the second derivative .
- Find all candidate points by setting or identifying where is undefined.
- Set up a sign chart for using test points in the intervals between the candidate points.
- If changes sign at (from positive to negative, or negative to positive) and exists, then is an inflection point.
Checking the result
Evaluate at test points strictly on either side of the candidate . The sign of must be definitively positive on one side and negative on the other. Verify is a real number.
Common errors
Assuming guarantees an inflection point; it does not if the sign of does not change (e.g., ). Another error is forgetting to check if the original function is defined at the candidate point , such as at vertical asymptotes.
Worked example
Find the inflection points of .
Compute the first derivative:
Compute the second derivative:
Set to find candidate points: and
Test intervals around candidates: For , let : . For , let : . For , let : .
The second derivative changes sign at and .
Find the -coordinates:
The inflection points are and .
FAQ
Run your own problem
References: Calculus: Early Transcendentals by James Stewart · OpenStax Calculus Volume 1 · Khan Academy: Applications of derivatives
See also