Precisely locate inflection points where concavity changes. Visualize polynomial curves, second-derivative zero crossings, and determine concave up/down intervals.
In calculus, an inflection point (or point of inflection) is a point on a smooth curve where the curvature changes sign — the function switches from concave up (convex) to concave down (concave), or vice versa. At such a point, the second derivative f''(x) is zero or undefined, and it must change sign across that x‑value. Inflection points reveal where the rate of change of the slope itself changes, offering deep insight into the shape of physical, economic, and biological processes.
For a twice‑differentiable function f, if f''(x₀) = 0 and f'' changes sign at x₀, then (x₀, f(x₀)) is an inflection point.
Given polynomial f(x) = ax⁴ + bx³ + cx² + dx + e, the first derivative is f'(x) = 4ax³ + 3bx² + 2cx + d, and the second derivative is f''(x) = 12ax² + 6bx + 2c. Setting f''(x) = 0 yields a quadratic equation (if a ≠ 0): 12a x² + 6b x + 2c = 0 → simplified to 6a x² + 3b x + c = 0. Real roots are candidate inflection points. For each root we verify sign change of f''(x) around the root (by sampling or discriminant analysis). For lower-degree polynomials (a=0, b≠0), f'' becomes linear; if constant, there are either no inflection points or the function is everywhere linear/quadratic (no sign change). Our solver handles all cases automatically.
The computed roots are then evaluated on the original function to produce the inflection point coordinates. Additionally, we compute the equation of the tangent line at each inflection point to illustrate the crossing of the curve at that special point — a hallmark of true inflection points where the curve crosses its tangent.
| Function f(x) | Inflection point(s) | Concavity | Second derivative zeros |
|---|---|---|---|
| x⁴ – 4x² | (-0.8165, -2.6667) & (0.8165, -2.6667) | CU: (-∞,-0.816), CD: (-0.816,0.816), CU: (0.816,∞) | x = ±√(2/3) |
| x³ – 3x | (0, 0) | CD: (-∞,0), CU: (0,∞) | x = 0 |
| x³ | (0,0) | CD: (-∞,0), CU: (0,∞) | x = 0 (triple root, but sign change) |
| x² | None | CU everywhere | No real zero of f''(x) = 2 |
A company’s monthly revenue (in thousands) is modeled by R(t) = -0.2t⁴ + 3t³ – 12t² + 20t, where t is months. Finding inflection points of R(t) indicates where the growth rate (first derivative) changes from accelerating to decelerating (or vice versa). Using our calculator, one inflection point near t ≈ 2.5 months signals the transition from rapid growth to slower expansion — a critical decision point for scaling operations. Such applications underline why inflection point analysis is vital in data‑driven strategy.