Remainder Calculator
Divide two integers to find the whole-number quotient, remainder, and division equation instantly.
About division with remainders
Remainder examples
Each result satisfies dividend = divisor × quotient + remainder.
| Division | Result | Check |
|---|---|---|
| 17 ÷ 5 | Quotient 3, remainder 2 | 5 × 3 + 2 = 17. |
| 144 ÷ 12 | Quotient 12, remainder 0 | 12 divides 144 exactly. |
| 53 ÷ 8 | Quotient 6, remainder 5 | Six groups use 48 and leave 5. |
| -17 ÷ 5 | Quotient -3, remainder -2 | Truncation toward zero determines the signed result. |
How to calculate a remainder
- Enter the integer to be divided in the Dividend field.
- Enter a nonzero integer in the Divisor field.
- Select Calculate remainder.
- Read the quotient and remainder, then verify them with the displayed equation.
Remainder calculator FAQ
What is the formula for a remainder?
The remainder equals the dividend minus the divisor multiplied by the integer quotient. The quotient used here is the decimal division result truncated toward zero.
What does a remainder of zero mean?
It means the dividend is exactly divisible by the divisor. In other words, the divisor is a factor of the dividend.
Can a remainder be negative?
Yes under the truncation convention, a negative dividend can produce a negative remainder. Other contexts use Euclidean division and adjust the result so the remainder is always nonnegative.
Why can I not divide by zero?
No number multiplied by zero can recover a nonzero dividend, so a quotient cannot be defined consistently. Division by zero is therefore excluded.
Is remainder the same as modulo?
They agree for positive integers in common usage. For negative inputs, modulo and remainder operators can differ because languages and mathematical texts choose different sign conventions.