quotient and remainder calculator

The calculator allows to find online the quotient and the remainder in the euclidean division of two polynomials or two integers.
  • euclidean_division(`x^2+x+1;x`) returns `{x^2+x+1=x*(1+x)+1}`
  • euclidean_division(`(x^2+x+1)/x`) returns `{x^2+x+1=x*(1+x)+1}`
  • euclidean_division(`19;3`) returns {19=3*6+1}
  • euclidean_division(`19/3`) returns {19=3*6+1}
See also