An essential tool for finding the quotient and remainder in a division operation.
Enter a dividend and a divisor to calculate the result of the division, including the whole number quotient and the leftover remainder.
Click on any example to load it into the calculator.
A basic example of division with a remainder.
Dividend: 10
Divisor: 3
An example where the division results in a zero remainder.
Dividend: 20
Divisor: 5
An example using a negative number as the dividend.
Dividend: -10
Divisor: 3
An example involving decimal numbers.
Dividend: 15.5
Divisor: 4.2
a = qd + r
and 0 ≤ r < |d|
.q = trunc(a / d)
, r = a - q * d
q = floor(a / d)
, r = a - q * d