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 f(x)f(x) and its domain. Verify that f(x)f(x) is continuous across the domain where you are testing for inflection points.

The steps

  1. Compute the first derivative f(x)f'(x).
  2. Compute the second derivative f(x)f''(x).
  3. Find all candidate points by setting f(x)=0f''(x) = 0 or identifying where f(x)f''(x) is undefined.
  4. Set up a sign chart for f(x)f''(x) using test points in the intervals between the candidate points.
  5. If f(x)f''(x) changes sign at x=cx=c (from positive to negative, or negative to positive) and f(c)f(c) exists, then (c,f(c))(c, f(c)) is an inflection point.

Checking the result

Evaluate f(x)f''(x) at test points strictly on either side of the candidate x=cx=c. The sign of f(x)f''(x) must be definitively positive on one side and negative on the other. Verify f(c)f(c) is a real number.

Common errors

Assuming f(c)=0f''(c) = 0 guarantees an inflection point; it does not if the sign of f(x)f''(x) does not change (e.g., f(x)=x4f(x) = x^4). Another error is forgetting to check if the original function f(x)f(x) is defined at the candidate point x=cx=c, such as at vertical asymptotes.

Worked example

Find the inflection points of f(x)=x44x3f(x) = x^4 - 4x^3.

Compute the first derivative: f(x)=4x312x2f'(x) = 4x^3 - 12x^2

Compute the second derivative: f(x)=12x224xf''(x) = 12x^2 - 24x

Set f(x)=0f''(x) = 0 to find candidate points: 12x(x2)=012x(x - 2) = 0 x=0x = 0 and x=2x = 2

Test intervals around candidates: For x<0x < 0, let x=1x = -1: f(1)=12(1)224(1)=36>0f''(-1) = 12(-1)^2 - 24(-1) = 36 > 0. For 0<x<20 < x < 2, let x=1x = 1: f(1)=12(1)224(1)=12<0f''(1) = 12(1)^2 - 24(1) = -12 < 0. For x>2x > 2, let x=3x = 3: f(3)=12(3)224(3)=36>0f''(3) = 12(3)^2 - 24(3) = 36 > 0.

The second derivative changes sign at x=0x = 0 and x=2x = 2.

Find the yy-coordinates: f(0)=044(0)3=0f(0) = 0^4 - 4(0)^3 = 0 f(2)=244(2)3=1632=16f(2) = 2^4 - 4(2)^3 = 16 - 32 = -16

The inflection points are (0,0)(0, 0) and (2,16)(2, -16).

FAQ

Run your own problem

References: Calculus: Early Transcendentals by James Stewart · OpenStax Calculus Volume 1 · Khan Academy: Applications of derivatives

See also