1. Arrange powers
Write both polynomials in descending powers of x. Missing powers act like zero-coefficient placeholders, even when they are not displayed.
Get the quotient, remainder, every divide–multiply–subtract step, and an exact check that divisor × quotient + remainder equals the dividend.
Write both polynomials in descending powers of x. Missing powers act like zero-coefficient placeholders, even when they are not displayed.
Divide the leading term of the current remainder by the divisor’s leading term. Add that monomial to the quotient.
Multiply every divisor term by the new quotient term. Subtract that product from the current remainder, combining like powers exactly.
Repeat until the remainder is zero or its degree is lower than the divisor’s. Then multiply back to verify every coefficient.
Dividend = Divisor × Quotient + Remainder, with deg(Remainder) < deg(Divisor)
The degree condition applies when the remainder is nonzero. It makes the quotient and remainder unique for division by any nonzero polynomial over the rational numbers.
(x³−6x²+11x−6) ÷ (x−1) = x²−5x+6. The remainder is 0, so x−1 is a factor of the dividend.
(x³−2x²+4) ÷ (x−2) = x² with remainder 4. Therefore x³−2x²+4=(x−2)x²+4.
If x²+1 is divided by x³−2, no polynomial quotient term is possible. The quotient is 0 and the remainder is x²+1.
When leading coefficients do not divide evenly as integers, the quotient uses an exact fraction. No decimal rounding is introduced.
Parsing, expansion, long division, and verification use reduced BigInt fractions. Finite decimals are converted to exact fractions, so the algebra does not depend on floating-point rounding. All processing stays on this page.
The calculator supports one variable, x, through degree 12 and numeric literals up to 18 digits. It does not accept equations, radicals, functions, negative powers, variables other than x, or division by a polynomial inside either input. Extremely large intermediate fractions are stopped with a clear message. Last reviewed: 4 August 2026.
Divide the current leading term by the divisor’s leading term, place the result in the quotient, multiply the divisor by it, subtract, and repeat until the remainder has lower degree.
It is the polynomial left when no further polynomial quotient term is possible. The remainder must be zero or have lower degree than the divisor.
Yes. Fractional coefficients are normal when the leading coefficients do not divide evenly. This calculator keeps them exact and reduced.
The quotient is 0 and the dividend itself is the remainder. The division identity still holds because dividend = divisor × 0 + dividend.
No. Missing powers are inserted internally. You can enter x³+1 directly; it is treated as x³+0x²+0x+1.
Synthetic division is a shorter method for a linear divisor such as x−3. Long division is the general method and also works for quadratic and higher-degree divisors.