Master polynomial division with an intuitive, professional calculator interface for experts. Input coefficients, select divisor form, and see synthetic tables with clear operations. Get quotient terms, remainder value, and verification via Remainder Theorem for accuracy. Export CSV and PDF for records, audits, sharing easily.
Try these examples by copying the coefficients and divisor values:
| Polynomial (coefficients) | Divisor | Expected remainder |
|---|---|---|
2, -3, 0, 5, -7 |
x - 3 |
P(3) |
1, 0, -4, 4 |
x - 2 |
P(2) |
3, -1, -7, 10 |
2x - 6 |
P(3) (since r = b/a = 3) |
| r | 2 | -3 | 0 | 5 | -7 |
|---|---|---|---|---|---|
| 3 | 6 | 9 | 27 | 96 | |
| Sum | 2 | 3 | 9 | 32 | 89 |
Remainder Theorem: When dividing a polynomial P(x) by (x - r), the remainder equals P(r).
Horner’s Method / Synthetic Division: For coefficients [a0, a1, ..., an] and root r:
The remainder is bn and the quotient coefficients are [b0, ..., bn-1]. For divisors of the form a·x - b, use r = b / a for the remainder.
| Polynomial | r | Remainder | Notes |
|---|---|---|---|
P(x) = 2x^4 - 3x^3 + 5x - 7 |
3 |
89 |
From coefficients [2,-3,0,5,-7]. |
P(x) = x^3 - 4x + 4 |
2 |
4 |
From coefficients [1,0,-4,4]. |
P(x) = 3x^3 - x^2 - 7x + 10 |
3 |
61 |
Divisor 2x - 6 gives r = 3. |
P(x) = x^3 - 6x^2 + 11x - 6 |
1 |
0 |
Root at 1 ⇒ remainder zero. |
For degree n: multiplications = n, additions = n. Remainder equals P(r).
| Degree n | Multiplications | Additions |
|---|---|---|
| 1 | 1 | 1 |
| 2 | 2 | 2 |
| 3 | 3 | 3 |
| 4 | 4 | 4 |
| 5 | 5 | 5 |
| 6 | 6 | 6 |
| Divisor | Use r = | Remainder Valid | Quotient Displayed | Notes |
|---|---|---|---|---|
x - r |
r |
Yes | Yes | Standard synthetic division. |
a·x - b |
b / a |
Yes | Not directly | Quotient needs scaling by a across steps. |
x + c |
-c |
Yes | Yes | Special case of x - r. |
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.