/

Points of Inflection Calculator — Find Inflection Points with Step-by-Step Working

Points of Inflection Calculator — Find Inflection Points with Step-by-Step Working
Calculus Tools

Points of Inflection Calculator

Find all inflection points of f(x) using the second derivative test — with full sign-change verification (not just root-finding), concavity interval chart, and complete step-by-step working.

Points of Inflection Calculator — f''(x) Sign-Change Test
f(x) = enter a function below
x^3 - 3*x^2Polynomial
x^4x to power 4
sin(x)Trig
e^xExponential
log(x)Natural log
x^4 - 4*x^3Degree 4
x/(1+x^2)Rational
x^(1/3)Cube root
cos(x) + xMixed

⚠️ Use * for multiplication and ^ for powers. The calculator verifies sign changes — roots of f''(x)=0 without a sign change are flagged as NOT inflection points.

f =
x³−3x²+2 → inflection x=1
x⁴ → NO inflection at 0 ⚠️
sin(x) → nπ inflections
x⁴−4x³ → two inflections
x³ → inflection x=0
x⁵−5x⁴
eˣ → no inflection
x/(1+x²) rational
cos(x)
Error
Derivatives Computed
f(x) =
f′(x) =
f″(x) =
Candidates & Sign-Change Test Results
Concavity Sign Chart
Concave Up (f″ > 0) ∪
Concave Down (f″ < 0) ∩
IntervalSign of f″Concavity
Step-by-Step Working
How to Find Inflection Points — Methods Reference
1 The Four-Step Method f″(x)=0 + sign test

Step 1: Compute f′(x) then f″(x).

Step 2: Solve f″(x) = 0 for all candidate x-values.

Step 3: For each candidate, evaluate f″ just left and just right (e.g. at x−0.01 and x+0.01).

Step 4: If the sign changes → confirmed inflection point. Compute y = f(x). If no sign change → NOT an inflection point.

2 The x⁴ Trap — Why Sign Change Is Essential f″=12x²≥0, NO inflection

For f(x) = x⁴: f″(x) = 12x², which equals zero at x=0. But 12(−0.01)² = 0.0012 > 0 and 12(0.01)² = 0.0012 > 0. The sign does NOT change — x=0 is NOT a point of inflection.

This is the most common error: calculators that simply report every root of f″=0 as an inflection point are wrong. Always check the sign change.

3 Concavity Rules f″>0 ⟹ concave up

f″(x) > 0 on an interval → concave up (bowl shape ∪, tangent lines below curve)

f″(x) < 0 on an interval → concave down (arch shape ∩, tangent lines above curve)

f″(x) = 0 and sign changes → inflection point (transition between concavities)

4 Trig Functions — Infinitely Many Inflections sin(x) → inflections at nπ

For f(x)=sin(x): f″(x)=−sin(x). Setting −sin(x)=0 gives x=nπ for all integers n. At each nπ, sin(x) genuinely changes sign, so every x=nπ is a confirmed point of inflection.

The calculator shows the first few real solutions returned by nerdamer.solve() for periodic functions.

What Is a Point of Inflection?

This points of inflection calculator finds every inflection point of f(x) using the second derivative test — with explicit sign-change verification to ensure genuine concavity changes are reported, not just roots of f″(x) = 0. The inflection calculator shows f′(x), f″(x), all candidates, confirmed inflection points with coordinates (x, y), concavity direction before and after each point, and a full concavity sign chart.

A point of inflection is a point on the graph of f(x) where the concavity changes — the curve transitions from concave up (bowl shaped, ∪) to concave down (arch shaped, ∩), or vice versa. At an inflection point, f″(x) = 0 (or f″(x) is undefined), and f″(x) must change sign either side of that point.

Point of inflection at x = c ⟺ f″(c) = 0 AND sign of f″ changes at c Both conditions are required — f″(c)=0 alone is NOT sufficient

Inflection Points vs Critical Points — Key Distinction

Students often confuse these two concepts:

  • Critical points use f′(x) = 0 — candidates for local maxima and minima. They describe where the function stops increasing or decreasing.
  • Inflection points use f″(x) = 0 AND a sign change — candidates for changes in concavity. They describe where the function changes the direction of its bend.

Key fact: An inflection point is NOT necessarily a local maximum or minimum, and a local maximum or minimum is NOT necessarily an inflection point. They are completely separate concepts testing different behaviours of the function.

Concave Up
f″(x) > 0
Concave Down
f″(x) < 0

How to Find Inflection Points — Step-by-Step Method

To find all inflection points of a function f(x) using the second derivative test, follow these four steps precisely.

  1. Compute f″(x): Differentiate f(x) twice. First find f′(x), then differentiate again to get f″(x), the second derivative.
  2. Solve f″(x) = 0: Find all x-values where the second derivative equals zero. These are the candidate inflection points.
  3. Sign-change test: For each candidate x = c, evaluate f″(c − δ) and f″(c + δ) for a small δ > 0 (e.g. δ = 0.01). If the signs differ, the concavity changes.
  4. Confirm and compute y: Only candidates where the sign changes are genuine inflection points. Compute y = f(c) for the coordinates (c, f(c)).

Example 1 — Simple Cubic: f(x) = x³ − 3x² + 2

  1. f′(x) = 3x² − 6x
  2. f″(x) = 6x − 6
  3. Solve f″(x) = 0: 6x − 6 = 0 → x = 1
  4. Sign test: f″(0.99) = 6(0.99)−6 = −0.06 < 0; f″(1.01) = 6(1.01)−6 = 0.06 > 0. Sign changes ✓
  5. y = f(1) = 1 − 3 + 2 = 0. Inflection point: (1, 0)
  6. Concavity: concave down for x < 1, concave up for x > 1.

Example 2 — Degree 4: f(x) = x⁴ − 4x³

  1. f′(x) = 4x³ − 12x²
  2. f″(x) = 12x² − 24x = 12x(x − 2)
  3. Solve f″(x) = 0: 12x(x−2) = 0 → x = 0 or x = 2
  4. Sign test at x=0: f″(−0.01) = 12(−0.01)(−1.01) = 0.121 > 0; f″(0.01) = 12(0.01)(−1.99) = −0.239 < 0. Sign changes ✓ → inflection at x=0. y = 0
  5. Sign test at x=2: f″(1.99) = 12(1.99)(−0.01) = −0.239 < 0; f″(2.01) = 12(2.01)(0.01) = 0.241 > 0. Sign changes ✓ → inflection at x=2. y = 16 − 32 = −16
  6. Two inflection points: (0, 0) and (2, −16)

Example 3 — Trigonometric: f(x) = sin(x)

  1. f′(x) = cos(x)
  2. f″(x) = −sin(x)
  3. Solve −sin(x) = 0: x = nπ for all integers n (x = 0, ±π, ±2π, ...)
  4. At x = 0: f″(−0.01) = −sin(−0.01) ≈ 0.01 > 0; f″(0.01) = −sin(0.01) ≈ −0.01 < 0. Sign changes ✓
  5. Inflection points at (nπ, 0) for all integers n.

Why Not Every Root of f″(x) = 0 Is an Inflection Point

The most common error in finding inflection points is to simply solve f″(x) = 0 and report every solution as an inflection point. This is wrong. A root of the second derivative is only an inflection point if f″(x) actually changes sign at that root. The classic counterexample demonstrates this clearly.

The x⁴ Counterexample — Most Common Trap

Let f(x) = x⁴.

Step 1: f′(x) = 4x³. Step 2: f″(x) = 12x².

Step 3: Solve f″(x) = 0 → 12x² = 0 → x = 0. This looks like a candidate inflection point.

Step 4 (sign test): f″(−0.01) = 12(−0.01)² = 12 × 0.0001 = 0.0012 > 0. f″(+0.01) = 12(0.01)² = 0.0012 > 0.

Both sides are positive. The sign does NOT change. Therefore x = 0 is NOT a point of inflection of f(x) = x⁴.

Geometrically: x⁴ is always concave up (12x² ≥ 0 everywhere), so it never transitions to concave down. The curve has no inflection point at all — it simply "flattens out momentarily" at x = 0 before continuing upward.

Calculators that blindly report every root of f″=0 as an inflection point will incorrectly identify x=0 as an inflection point of x⁴. This calculator explicitly flags such cases as "NOT an inflection point — no concavity change detected."

Functionf″(x)f″=0 atInflection Point?Why
6xx=0Yes ✓Sign: −→+
x⁴12x²x=0No ✗Sign: +→+ (no change)
x⁵20x³x=0Yes ✓Sign: −→+
x⁶30x⁴x=0No ✗Sign: +→+ (no change)
NoneNo ✗f″>0 always
sin(x)−sin(x)x=nπYes ✓Sign alternates

Pattern: For f(x) = xⁿ at x=0 — inflection point exists when n is odd (n ≥ 3), NOT when n is even. For even n, f″(x) = n(n−1)xⁿ⁻² ≥ 0 everywhere, so no sign change occurs.

Inflection Points and Concavity — The Second Derivative Test

The second derivative test for concavity states: on any interval where f″(x) > 0, the function is concave up; on any interval where f″(x) < 0, the function is concave down. Points of inflection are precisely the transition points between these two states.

What Concavity Means Geometrically

  • Concave up (f″ > 0): The graph curves upward like a bowl (∪). Tangent lines lie below the graph. The slope f′(x) is increasing.
  • Concave down (f″ < 0): The graph curves downward like an arch (∩). Tangent lines lie above the graph. The slope f′(x) is decreasing.
  • Inflection point (f″ changes sign): The curve transitions between bowl and arch shapes. The slope f′(x) changes from increasing to decreasing (or vice versa).

How the Concavity Calculator Works

The concavity calculator above constructs a sign chart for f″(x) by testing its sign on each interval between consecutive inflection points (and on the unbounded intervals at either end). Each interval is labelled as concave up or concave down, and confirmed inflection points are placed at the boundaries between intervals.

Concavity Table Example: f(x) = x³ − 3x² + 2

IntervalTest Pointf″(x) = 6x−6SignConcavity
(−∞, 1)x=06(0)−6=−6Concave Down ∩
(1, +∞)x=26(2)−6=6+Concave Up ∪

Inflection point at x=1 separates the two regions. Sign changes from − to + → confirmed.

Worked Examples — Points of Inflection Problems

1. f(x) = 2x³ + 3x² − 12x + 1

  1. f′(x) = 6x² + 6x − 12
  2. f″(x) = 12x + 6
  3. Solve f″=0: 12x+6=0 → x=−1/2
  4. Sign test: f″(−1) = −6 < 0; f″(0) = 6 > 0 ✓ Sign changes
  5. y = 2(−1/2)³+3(−1/2)²−12(−1/2)+1 = −1/4+3/4+6+1 = 31/2
  6. Inflection point: (−1/2, 31/2)

2. f(x) = x⁴ (No inflection points)

  1. f″(x) = 12x²
  2. f″=0 at x=0
  3. Sign test: f″(−0.01) = 0.0012 > 0; f″(0.01) = 0.0012 > 0. No sign change ✗
  4. x=0 is NOT an inflection point. f(x)=x⁴ has NO inflection points.

3. f(x) = x⁵ − 5x⁴

  1. f′(x) = 5x⁴ − 20x³
  2. f″(x) = 20x³ − 60x² = 20x²(x−3)
  3. Solve f″=0: x=0 or x=3
  4. At x=0: f″(−0.01)=20(0.0001)(−3.01) < 0; f″(0.01)=20(0.0001)(−2.99) < 0. No sign change ✗ — NOT inflection
  5. At x=3: f″(2.99) = 20(8.94)(−0.01) < 0; f″(3.01) = 20(9.06)(0.01) > 0. Sign changes ✓
  6. y = 3⁵−5(3⁴) = 243−405 = −162
  7. One inflection point: (3, −162)

4. f(x) = cos(x)

  1. f′(x) = −sin(x); f″(x) = −cos(x)
  2. Solve −cos(x)=0: x = π/2 + nπ
  3. At x=π/2: f″(π/2−0.01)=−cos(π/2−0.01)≈−0.01<0; f″(π/2+0.01)≈+0.01>0 ✓
  4. Inflection points at (π/2+nπ, 0) for all integers n.

5. f(x) = x/(1+x²) — Rational Function

  1. f′(x) = (1−x²)/(1+x²)²
  2. f″(x) = 2x(x²−3)/(1+x²)³
  3. Solve numerator=0: 2x(x²−3)=0 → x=0, x=±√3
  4. Sign tests confirm all three are genuine inflection points
  5. y values: f(0)=0; f(√3)=√3/4; f(−√3)=−√3/4
  6. Inflection points: (−√3, −√3/4), (0, 0), (√3, √3/4)

6. f(x) = eˣ (No inflection points)

  1. f″(x) = eˣ > 0 for all real x
  2. f″(x) = 0 has no real solutions
  3. eˣ is always concave up — no inflection points exist.

Frequently Asked Questions

What is a point of inflection?
A point of inflection is a point on the graph of f(x) where the concavity changes — from concave up (∪) to concave down (∩), or vice versa. At an inflection point, f″(x) = 0 or is undefined, AND the sign of f″(x) must change either side of that point. Simply having f″(c) = 0 is not sufficient to conclude there is an inflection point at x = c.
How do you find inflection points?
Step 1: Compute the second derivative f″(x). Step 2: Solve f″(x) = 0 to find candidate x-values. Step 3: Test the sign of f″ just left and right of each candidate. Step 4: If the sign changes, it is a confirmed inflection point — compute y = f(x). If not, discard the candidate. This inflection calculator automates all four steps.
Is every root of the second derivative an inflection point?
No. The classic counterexample is f(x) = x⁴. Here f″(x) = 12x² = 0 at x = 0, but 12x² ≥ 0 everywhere, so the sign never changes — x = 0 is NOT an inflection point. A root of f″ is only an inflection point if f″ changes sign (positive to negative or negative to positive) at that root.
What is the difference between a critical point and an inflection point?
Critical points use f′(x) = 0 or f′(x) undefined — candidates for local maxima/minima tested by the second derivative test f″(c) > 0 (local min) or f″(c) < 0 (local max). Inflection points use f″(x) = 0 AND a sign change in f″ — they mark changes in concavity, not extrema. These are completely separate concepts.
Can a function have no inflection points?
Yes. Any function where f″(x) never changes sign has no inflection points. Examples: f(x) = eˣ has f″(x) = eˣ > 0 always (always concave up, no inflections). f(x) = x² has f″(x) = 2 > 0 always. f(x) = x⁴ has f″(x) = 12x² ≥ 0 always. For a function to have an inflection point, its second derivative must cross zero (change sign).
What does concavity mean in calculus?
Concavity describes how a curve bends. Concave up (f″ > 0): curves like a bowl ∪, tangent lines are below the curve, slope f′(x) is increasing. Concave down (f″ < 0): curves like an arch ∩, tangent lines are above the curve, slope f′(x) is decreasing. Points of inflection are where the function transitions between these two states.
How does the second derivative test relate to inflection points?
The second derivative test for concavity: f″(x) > 0 on an interval → concave up; f″(x) < 0 → concave down. For inflection points specifically: find x where f″(x) = 0, then test whether f″ changes sign. Positive to negative → concave up to down → inflection. Negative to positive → concave down to up → inflection. No sign change → no inflection (as with x⁴ at x=0).

Related Calculators

Quick Rules
f″(x) = 0 + sign change → inflectionBoth conditions required
f″(x) > 0 → concave up ∪Bowl shape, slope increasing
f″(x) < 0 → concave down ∩Arch shape, slope decreasing
x⁴: f″=12x²≥0, NO inflectionClassic trap — no sign change
xⁿ (n odd, n≥3): inflection at 0Sign changes at x=0
sin(x): inflections at nπf″=−sin(x) changes sign
eˣ: NO inflection pointsf″=eˣ>0 always
Try These Examples
x³−3x²+2 → (1,0)
x⁴ → NO inflection ⚠️
x⁴−4x³ → two pts
sin(x) → nπ
x³ → (0,0)
x⁵−5x⁴
eˣ → none
x/(1+x²)
cos(x)
2x³+3x²−12x

Share This Tool

Share the Points of Inflection Calculator!

Free chemistry, physics, biology & math calculators with step-by-step solutions. Trusted by 100,000+ students. Solve any science problem instantly!

Newsletter

Subscribe to our Newsletter to be updated. We promise not to spam.

Copyright © 2026 SciSolveLab. All Rights Reserved

Scroll to Top