Horner's Method Calculator
Enter the polynomial coefficients and an x value to evaluate it via Horner's method.
Result
How to use
- Enter your values in the fields above.
- Press Calculate to see your result instantly.
- Use the Share button to copy a link to your result.
About this calculator
Horner’s method (also called Horner’s scheme or nested multiplication) evaluates a polynomial at a given x value far more efficiently than computing each term’s power directly. A polynomial like a₃x³ + a₂x² + a₁x + a₀ is rewritten in nested form as ((a₃x + a₂)x + a₁)x + a₀: starting from the highest-degree coefficient, each step multiplies the running result by x and adds the next coefficient down, working through the coefficients highest-degree first.
This nested form needs only n multiplications and n additions to evaluate a degree-n polynomial, versus the roughly n(n+1)/2 multiplications a naive term-by-term approach requires when each power of x is computed separately — making Horner’s method both faster and less prone to floating-point rounding error. It’s the standard technique behind synthetic division and root-finding algorithms in numerical computing, and it’s how calculators, compilers, and scientific software libraries evaluate polynomials internally. This calculator takes a list of coefficients (highest degree first) and an x value and evaluates the polynomial via Horner’s method.
Was this helpful?
Popular calculators
Loan Calculator
Monthly payment, total interest and full amortization schedule.
Percentage Calculator
Percent change, percent of, and ratio calculations.
Discount Calculator
Calculate final price, savings, and discount amount.
BMI Calculator
Body mass index from height and weight (metric or imperial).
Age Calculator
Compute your exact age in years, months and days from a birth date.
Compound Interest Calculator
Calculate the final amount and interest earned with compounding.
All Calculators
No calculators found
Comments (0)