Function Inflection Points

Basic Idea

An inflection point is a special point on a function’s graph where the concavity changes. It divides the graph into intervals of different concavity.

Definition

Definition of an Inflection Point

Let f(x)f(x) be continuous on a neighborhood of x0x_0. If there exists δ>0\delta > 0 such that:

  1. On (x0δ,x0)(x_0 - \delta, x_0) the graph of f(x)f(x) is concave and on (x0,x0+δ)(x_0, x_0 + \delta) it is convex
  2. Or on (x0δ,x0)(x_0 - \delta, x_0) it is convex and on (x0,x0+δ)(x_0, x_0 + \delta) it is concave

then (x0,f(x0))(x_0, f(x_0)) is called an inflection point of f(x)f(x).

几何解释

An inflection point is where the graph changes its bending direction.

符号说明
SymbolTypeReading/ExplanationMeaning in This Article
δ\deltaGreek letterDeltaA sufficiently small positive number

How to Find Inflection Points

Necessary Condition

定理1

If f(x)f(x) is twice differentiable at x0x_0 and (x0,f(x0))(x_0, f(x_0)) is an inflection point, then f(x0)=0f''(x_0) = 0.

Note: f(x0)=0f''(x_0) = 0 is necessary but not sufficient for an inflection point.

Sufficient Conditions

First Sufficient Condition

定理2

Let f(x)f(x) be continuous on a neighborhood of x0x_0 and twice differentiable on a punctured neighborhood, with f(x0)=0f''(x_0) = 0 or f(x0)f''(x_0) undefined:

  1. If f(x)<0f''(x) < 0 for x<x0x < x_0 and f(x)>0f''(x) > 0 for x>x0x > x_0, then (x0,f(x0))(x_0, f(x_0)) is an inflection point
  2. If f(x)>0f''(x) > 0 for x<x0x < x_0 and f(x)<0f''(x) < 0 for x>x0x > x_0, then (x0,f(x0))(x_0, f(x_0)) is an inflection point

Second Sufficient Condition

定理3

Let f(x)f(x) be three times differentiable at x0x_0 with f(x0)=0f''(x_0) = 0:

  1. If f(x0)0f'''(x_0) \neq 0, then (x0,f(x0))(x_0, f(x_0)) is an inflection point
  2. If f(x0)=0f'''(x_0) = 0, further analysis is needed

Steps to Locate Inflection Points

Basic Steps

  1. Find the second derivative: compute f(x)f''(x)
  2. Find critical points: solve f(x)=0f''(x) = 0 or find where f(x)f''(x) is undefined
  3. Analyze the sign: examine the sign of f(x)f''(x) on both sides of each critical point
  4. Determine inflection points: if the sign changes, the point is an inflection point

Caveats

  • A point where the second derivative vanishes is not necessarily an inflection point
  • A point where f(x)f''(x) is undefined may be an inflection point
  • Check that the function is continuous at the point

Worked Examples

Example 1: Find the inflection points of f(x)=x33x2+2f(x) = x^3 - 3x^2 + 2.

Solution:

  • f(x)=3x26xf'(x) = 3x^2 - 6x
  • f(x)=6x6=6(x1)f''(x) = 6x - 6 = 6(x-1)
  • Setting f(x)=0f''(x) = 0 gives x=1x = 1
  • For x<1x < 1, f(x)<0f''(x) < 0, so the function is concave
  • For x>1x > 1, f(x)>0f''(x) > 0, so the function is convex
  • Therefore (1,f(1))=(1,0)(1, f(1)) = (1, 0) is an inflection point

Example 2: Find the inflection points of f(x)=x4f(x) = x^4.

Solution:

  • f(x)=4x3f'(x) = 4x^3
  • f(x)=12x2f''(x) = 12x^2
  • Setting f(x)=0f''(x) = 0 gives x=0x = 0
  • For x<0x < 0, f(x)>0f''(x) > 0, so the function is convex
  • For x>0x > 0, f(x)>0f''(x) > 0, so the function is convex
  • The sign does not change, so x=0x = 0 is not an inflection point

Relationship Between Inflection Points and Extrema

Important Properties

  1. An inflection point is not necessarily an extremum point: the function value at an inflection point need not be a local maximum or minimum
  2. An extremum point is not necessarily an inflection point: extrema and concavity changes are different questions; check each separately
  3. Geometric character: when a tangent exists and the usual smoothness conditions hold, the curve near an inflection point changes its bending direction relative to the tangent

Example

For f(x)=x3f(x) = x^3:

  • f(x)=3x2f'(x) = 3x^2, so f(0)=0f'(0) = 0 and x=0x = 0 is a stationary point
  • f(x)=6xf''(x) = 6x, so f(0)=0f''(0) = 0, but the sign changes
  • Hence (0,0)(0,0) is a stationary point (also called a saddle point in the one-variable setting) and an inflection point, but not an extremum point

Exercises

Exercise 1

Find the inflection points of f(x)=x36x2+9x+1f(x) = x^3 - 6x^2 + 9x + 1.

Reference Answer(3 个标签)
inflection pointsecond derivativepolynomial

Solution Approach: Differentiate twice, find critical points, and analyze sign changes.

Detailed Steps:

  1. f(x)=3x212x+9f'(x) = 3x^2 - 12x + 9
  2. f(x)=6x12=6(x2)f''(x) = 6x - 12 = 6(x-2)
  3. Setting f(x)=0f''(x) = 0 gives x=2x = 2
  4. For x<2x < 2, f(x)<0f''(x) < 0, so the function is concave
  5. For x>2x > 2, f(x)>0f''(x) > 0, so the function is convex
  6. f(2)=824+18+1=3f(2) = 8 - 24 + 18 + 1 = 3

Answer: The inflection point is (2,3)(2, 3).

Exercise 2

Find the inflection points of f(x)=x3x2+1f(x) = \frac{x^3}{x^2 + 1}.

Reference Answer(3 个标签)
inflection pointsecond derivativerational function

Solution Approach: Differentiate twice, find critical points, and analyze sign changes.

Detailed Steps:

  1. f(x)=3x2(x2+1)x32x(x2+1)2=x2(x2+3)(x2+1)2f'(x) = \frac{3x^2(x^2 + 1) - x^3 \cdot 2x}{(x^2 + 1)^2} = \frac{x^2(x^2 + 3)}{(x^2 + 1)^2}
  2. f(x)=(2x(x2+3)+x22x)(x2+1)2x2(x2+3)2(x2+1)2x(x2+1)4f''(x) = \frac{(2x(x^2 + 3) + x^2 \cdot 2x)(x^2 + 1)^2 - x^2(x^2 + 3) \cdot 2(x^2 + 1) \cdot 2x}{(x^2 + 1)^4}
  3. Simplifying: f(x)=2x(3x2)(x2+1)3f''(x) = \frac{2x(3 - x^2)}{(x^2 + 1)^3}
  4. Setting f(x)=0f''(x) = 0 gives x=0,±3x = 0, \pm \sqrt{3}
  5. Analyzing the sign changes:
    • x=0x = 0: sign changes from negative to positive, so it is an inflection point
    • x=±3x = \pm \sqrt{3}: sign changes from positive to negative, so they are inflection points

Answer: The inflection points are (0,0)(0, 0), (3,334)(\sqrt{3}, \frac{3\sqrt{3}}{4}), (3,334)(-\sqrt{3}, -\frac{3\sqrt{3}}{4}).

Exercise 3

Find the inflection points of f(x)=sinxf(x) = \sin x.

Reference Answer(3 个标签)
inflection pointsecond derivativetrigonometric function

Solution Approach: Differentiate twice, find critical points, and analyze sign changes.

Detailed Steps:

  1. f(x)=cosxf'(x) = \cos x
  2. f(x)=sinxf''(x) = -\sin x
  3. Setting f(x)=0f''(x) = 0 gives sinx=0\sin x = 0, i.e. x=kπx = k\pi (kk an integer)
  4. Analyzing sign changes:
    • As xx moves from (2k1)π(2k-1)\pi to 2kπ2k\pi, f(x)f''(x) changes from positive to negative
    • As xx moves from 2kπ2k\pi to (2k+1)π(2k+1)\pi, f(x)f''(x) changes from negative to positive
  5. Therefore every x=kπx = k\pi is an inflection point

Answer: The inflection points are (kπ,0)(k\pi, 0), where kk is an integer.

Exercise 4

Suppose limx1f(x)lnx=1\lim\limits_{x\to1} \frac{f(x)}{\ln x}=1 and f(x)f(x) is twice differentiable at x=1x=1. Determine whether x=1x=1 is an inflection point of f(x)f(x).

Reference Answer(2 个标签)
inflection pointlimit

Solution Approach: First use the limit to determine f(1)f(1) and f(1)f'(1), then check whether the hypotheses are enough to fix f(1)f''(1) and its sign on both sides.

Detailed Steps:

  1. From limx1f(x)lnx=1\lim\limits_{x\to1} \frac{f(x)}{\ln x}=1, we have f(x)lnxf(x)\sim \ln x as x1x\to1
  2. As x1x\to1, lnx0\ln x\to0, so limx1f(x)=0\lim\limits_{x\to1} f(x)=0, i.e. f(1)=0f(1)=0
  3. By the definition of the derivative: f(1)=limx1f(x)f(1)x1=limx1f(x)lnxlnxx1=1f'(1)=\lim_{x\to1}\frac{f(x)-f(1)}{x-1} =\lim_{x\to1}\frac{f(x)}{\ln x}\cdot\frac{\ln x}{x-1}=1
  4. But the hypotheses are not enough to determine the second derivative. Take fc(x)=lnx+c(x1)2(x>0),fc(1)=0,f_c(x)=\ln x+c(x-1)^2\quad (x>0),\qquad f_c(1)=0, which satisfies the hypotheses for every constant cc, with fc(1)=2c1f_c''(1)=2c-1.
  5. For example, when c=0c=0, fc(x)=1/x2<0f_c''(x)=-1/x^2<0, so x=1x=1 is not an inflection point; when c=12c=\frac12, fc(x)=11/x2f_c''(x)=1-1/x^2 changes sign around x=1x=1, so x=1x=1 is an inflection point.

Answer: From the given hypotheses we cannot determine whether x=1x=1 is an inflection point.

Exercise 5

Adapted from Question 3 of the 2023 National Postgraduate Entrance Exam (Math I)

Let y=f(x)y=f(x) be defined by the parametric equations {x=2t+ty=tsint\begin{cases}x=2t+|t|\\y=|t|\sin t\end{cases}. Determine whether x=0x=0 is an inflection point of f(x)f(x).

Reference Answer(3 个标签)
inflection pointparametric equationsecond derivative

Solution Approach: Use the parametric differentiation formulas and analyze the sign change of the second derivative.

Detailed Steps:

  1. For t0t\geq0: x=3tx=3t, y=tsinty=t\sin t, so y=x3sinx3y=\frac{x}{3}\sin\frac{x}{3}
  2. For t<0t<0: x=tx=t, y=tsinty=-t\sin t, so y=xsinxy=-x\sin x
  3. Hence f(x)={x3sinx3,x0xsinx,x<0f(x)=\begin{cases}\frac{x}{3}\sin\frac{x}{3}, & x\geq0\\-x\sin x, & x<0\end{cases}
  4. First derivative: f(x)={13sinx3+x9cosx3,x0sinxxcosx,x<0f'(x)=\begin{cases}\frac{1}{3}\sin\frac{x}{3}+\frac{x}{9}\cos\frac{x}{3}, & x\geq0\\-\sin x-x\cos x, & x<0\end{cases}
  5. Second derivative: f(x)={29cosx3x27sinx3,x02cosx+xsinx,x<0f''(x)=\begin{cases}\frac{2}{9}\cos\frac{x}{3}-\frac{x}{27}\sin\frac{x}{3}, & x\geq0\\-2\cos x+x\sin x, & x<0\end{cases}
  6. At x=0x=0:
    • Left derivative: f(0)=2cos0+0sin0=2f''_-(0)=-2\cos 0+0\cdot\sin 0=-2
    • Right derivative: f+(0)=29cos00sin0=29f''_+(0)=\frac{2}{9}\cos 0-0\cdot\sin 0=\frac{2}{9}
  7. Since the left and right second derivatives differ, f(0)f''(0) does not exist
  8. Sign change:
    • For x<0x<0, f(x)<0f''(x)<0 (concave)
    • For x>0x>0, f(x)>0f''(x)>0 (convex)

Answer: x=0x=0 is an inflection point of f(x)f(x).


Summary

Symbols Used in This Article

SymbolTypeReading/ExplanationMeaning in This Article
f(x)f(x)Math symbolf of xA function of variable xx
x0x_0Math symbolx zeroThe abscissa of the inflection point
δ\deltaGreek letterDeltaA sufficiently small positive number defining a neighborhood
f(x)f'(x)Math symbolf prime of xThe first derivative of the function
f(x)f''(x)Math symbolf double prime of xThe second derivative of the function
f(x)f'''(x)Math symbolf triple prime of xThe third derivative of the function

English–Chinese Glossary

English termChinese termPhoneticExplanation
inflection point拐点/ɪnˈflekʃən pɔɪnt/A point where the graph changes its concavity
concavity/convexity凹凸性/ˌkɒnkəˈvɪti/ /ˌkɒnvekˈsɪti/The bending direction of a function’s graph
concave function凹函数/kɒnˈkeɪv ˈfʌŋkʃən/A function whose graph bends downward
convex function凸函数/ˈkɒnveks ˈfʌŋkʃən/A function whose graph bends upward
second derivative二阶导数/ˈsekənd dɪˈrɪvətɪv/The derivative of the first derivative
third derivative三阶导数/θɜːd dɪˈrɪvətɪv/The derivative of the second derivative
critical point临界点/ˈkrɪtɪkəl pɔɪnt/A point where the second derivative is zero or undefined
neighborhood邻域/ˈneɪbəhʊd/An open interval containing a point
deleted neighborhood去心邻域/dɪˈliːtɪd ˈneɪbəhʊd/A neighborhood with the center point removed
saddle point鞍点/ˈsædl pɔɪnt/A stationary point that is neither a maximum nor a minimum