How this instrument works
This calculator evaluates a cubic polynomial, y = ax³+bx²+cx+d, at a chosen x-value, and alongside it computes the cubic's own derivative, 3ax²+2bx+c, at that identical point — the curve's height and the slope of its tangent line, both at once, from the same set of coefficients and the same x.
Together, these two numbers are exactly the starting information needed to sketch a cubic's local behavior around a point without plotting the whole curve: the height fixes where the point sits, and the slope shows which way the curve is heading right there — rising, falling, or momentarily flat if the slope comes out to zero.
This same pair of numbers is also exactly what Newton's method for finding a nearby root needs as its starting step: given a current guess x, the next, improved guess is x minus the height divided by the slope — this calculator supplies both halves of that formula directly, from the same coefficients and point.
- Enter the cubic's four coefficients into the a, b, c, and d fields, from ax³+bx²+cx+d.
- Enter the x-value to evaluate at into the x field.
- Read y and Slope at x: the sheet computes the cubic's height and its derivative's value simultaneously.
Worked example — y = x³−2x²+x+3 at x = 2
The cubic y = x³−2x²+x+3, evaluated at x=2, gives y = 8−8+2+3 = 5, and its derivative, 3x²−4x+1, evaluated at that same point, gives 12−8+1 = 5 — both the curve's height and its tangent-line slope at x=2, computed together from the same four coefficients.
The cubic y = x³, at x=0, gives y=0 and a slope of 0 too — this particular cubic's own inflection point, where the curve briefly flattens before continuing its climb, a landmark visible directly from the paired height-and-slope output.
Questions
What does this calculator return?
Two numbers at once: the cubic's own height (y-value) at the chosen x, and the slope of its tangent line at that same point, found from the cubic's derivative.
How is the derivative of a cubic found?
By reducing each term's exponent by one and multiplying by the original exponent: ax³ becomes 3ax², bx² becomes 2bx, cx becomes just c, and the constant d disappears entirely, since its slope contribution is always zero.
What does a slope of zero mean at a given point?
The curve is momentarily flat there — neither rising nor falling — often marking a local maximum, a local minimum, or an inflection point where the curve's direction of curvature itself changes.
How does this relate to Newton's method?
Newton's method finds a nearby root by repeatedly updating a guess x to x minus (height ÷ slope) — exactly the two values this calculator returns together, supplying both halves of that update formula directly from the same coefficients and starting point.
Can this evaluate polynomials of a different degree?
Not directly — this page is scoped to cubics specifically, the most common higher-degree polynomial encountered in early algebra and calculus; a linear or quadratic evaluator would follow the identical pattern with fewer terms.