Analyze zeros using polynomial coefficients, intervals, and plots. Check sign changes, refined roots, and details. Export results for classes, assignments, reports, revision, and practice.
This example uses f(x) = x3 - 6x2 + 11x - 6 over the interval [0, 4].
| x | f(x) | Observation |
|---|---|---|
| 0 | -6 | Below the axis |
| 1 | 0 | Zero at x = 1 |
| 2 | 0 | Zero at x = 2 |
| 3 | 0 | Zero at x = 3 |
| 4 | 6 | Above the axis |
The calculator evaluates a polynomial function in the form:
f(x) = anxn + an-1xn-1 + ... + a1x + a0
A zero of the function is any value r that makes f(r) = 0.
To detect zeros, the calculator samples the selected interval, checks for sign changes between nearby points, refines each candidate with bisection, and also tries numerical iteration with the Newton update:
xnext = x - f(x) / f'(x)
This mixed method helps capture both visible crossings and roots that need refinement.
A zero is an x-value that makes the function equal to zero. On a graph, it is where the curve touches or crosses the horizontal axis.
This version is designed for polynomial functions entered through coefficients. It does not directly accept trigonometric, logarithmic, or exponential expressions.
The interval tells the calculator where to look. Roots outside that range will not appear, so a wider interval can reveal additional zeros.
A smaller step checks more sample points and improves root detection. A larger step is faster, but it can miss narrow crossings or closely spaced zeros.
The function may have no real zero in that interval, or the settings may be too coarse. Try expanding the interval or reducing the step size.
It can detect some repeated roots through numerical refinement, but repeated roots are harder because the graph may only touch the axis without changing sign.
The graph gives a visual check of where the curve approaches or crosses zero. It helps confirm whether the listed roots match the function behavior.
The export includes the function summary, detected roots, and sampled value table. That makes it useful for notes, homework checks, and reporting.
Important Note: All the Calculators listed in this site are for educational purpose only and we do not guarentee the accuracy of results. Please do consult with other sources as well.