Long Division Calculator — Quotient & Remainder
Enter a dividend and divisor to get the quotient, remainder, and full decimal result, along with a step to verify the answer.
📝 Enter Dividend and Divisor
📊 Result
Disclaimer: This tool performs standard mathematical calculations for educational and reference purposes. Always double-check results independently for graded coursework or exams.
How Long Division Works
Long division breaks a division problem into two whole-number pieces: a quotient (how many times the divisor fits into the dividend) and a remainder (whatever is left over after the divisor has been subtracted as many whole times as possible). Together they can always be checked with one relationship: dividend = divisor × quotient + remainder.
Handling Negative Numbers
This calculator always reports the remainder as zero or positive, matching the convention taught in classroom long division, even when the dividend or divisor is negative. Some programming languages return a negative remainder when the dividend is negative, but that's a technical detail of how their modulo operator is built, not the mathematical definition used here. The quotient is adjusted so the check equation, dividend = divisor × quotient + remainder, always holds true.
Worked Example
Divide 47 by 5.
- Step 1: 5 fits into 47 a total of 9 whole times, since 5 × 9 = 45
- Step 2: Subtract: 47 − 45 = 2, which is the remainder
- Step 3: As a full decimal, 47 ÷ 5 = 9.4
- Step 4: Check: 5 × 9 + 2 = 47 ✓