Fraction Division Calculator
Divide fractions and mixed numbers with simplification and decimals.
Fraction A ÷ Fraction B
fraction A
fraction B
Enter each fraction's numerator and denominator. Whole-number inputs use 1 as the denominator.
What is the Fraction Division Calculator?
The Fraction Division Calculator divides any two fractions, mixed numbers, whole numbers, or decimals using the 'keep, change, flip' procedure: keep the first fraction, change the division to multiplication, and flip (take the reciprocal of) the second fraction. The result is simplified by dividing both numerator and denominator by their greatest common divisor.
Inputs are forgiving — you can type 1 1/2 for a mixed number, 3/4 for a proper fraction, 7/4 for an improper fraction, 5 for a whole number, or 0.75 for a decimal. The calculator converts all of them to canonical a/b form before performing the division, and reports the result as an improper fraction, a mixed number, and a decimal (with terminating or repeating expansion).
How the Fraction Division Calculator works
1. Parse each input
Recognise mixed numbers (1 2/3), simple fractions (a/b), whole numbers, and decimals. Convert each to a single (numerator, denominator) pair of BigInts.
2. Invert the second fraction
Replace c/d with its reciprocal d/c. This is the key step that turns division into multiplication.
3. Multiply across
Result = (a × d) / (b × c). Carry signs through; a negative numerator or denominator is normalised after simplification.
4. Simplify to lowest terms
Divide both numerator and denominator by their GCD using the Euclidean algorithm. The result is unique.
Five ways to use fraction division
Cooking and recipes
Halve a 2 1/4 cup recipe by dividing by 2, or scale to feed a different number of guests.
Carpentry and DIY
Convert a stud spacing of 14 1/2 inches to a per-foot ratio, or split a board of length 3 1/4 into n equal pieces.
Algebra prep
Practice rational-expression simplification by hand — the calculator's step-by-step working is an exact match for the textbook procedure.
Music theory
Convert note durations (a half note divided into eighths, etc.) into a single ratio.
Probability
Divide a fractional event count by a fractional total to get a fraction probability without converting to decimal.
Best practices for dividing fractions
Convert mixed numbers first
1 1/2 ÷ 2 1/4 is much easier to compute as 3/2 ÷ 9/4. The calculator does this automatically.
Watch the second fraction
Only the SECOND fraction is flipped. Flipping the first fraction inverts the answer.
Simplify before multiplying when possible
Cancel common factors across the cross-product before multiplying to keep numbers small and the simplification step trivial.
Verify by cross-multiplication
If a/b ÷ c/d = e/f, then a × d × f should equal b × c × e. The calculator can check this in your head with smaller numbers.
Why 'keep, change, flip' works
Dividing by c/d is, by definition, multiplying by its multiplicative inverse — the unique number that satisfies (c/d) × x = 1. That inverse is d/c, because (c × d) / (d × c) = 1. So a/b ÷ c/d = (a/b) × (d/c) = (a × d) / (b × c). Every algebra textbook proves the rule once at this level of generality; the calculator just automates the arithmetic.
The rule extends seamlessly to rational expressions in algebra: (x + 1) / (x − 2) ÷ (x + 3) / (x − 4) = (x + 1)(x − 4) / [(x − 2)(x + 3)]. Same procedure, same simplification, just with polynomials instead of integers. Mastering fraction division at the numerical level is the prerequisite for handling these algebraic divisions confidently.
Tricky fraction-division cases
Dividing by a whole number
5 ÷ (1/3) means 'how many thirds fit in 5?' The answer is 15. Write 5 as 5/1 and apply keep-change-flip.
Negative fractions
The result's sign follows multiplication rules — negative × positive = negative. The calculator normalises the negative sign onto the numerator.
Result is a whole number
When the simplified denominator is 1, the result is a whole number. The calculator flags this and shows the integer.
Repeating decimals from fractions
1/3 ÷ 1/6 = 2 (clean), but 1/3 ÷ 1/4 = 4/3 = 1.333… (repeating). The calculator detects and brackets the repeating block.
Fraction-division formulas
Fraction division
(a/b) ÷ (c/d) = (a × d) / (b × c)
'Keep, change, flip' — multiply by the reciprocal of the second fraction.
Terminating decimal test
a/b terminates ⟺ rad(b) ∈ {2, 5, 10}
A reduced fraction's decimal terminates iff the denominator's only primes are 2 and 5.
Recurring period bound
period(a/b) ≤ b − 1
The length of the repeating block of a/b is at most b − 1.
Verify identity
dividend = divisor × quotient + remainder
Plug your answer back into this equation to verify the division is correct.
Common fraction-division mistakes
✗ Flipping the first fraction
✓ Fix — Only the SECOND fraction flips. Flipping the first one gives the reciprocal of the answer.
✗ Forgetting to simplify
✓ Fix — Always divide numerator and denominator by their GCD — otherwise your answer is correct but not in lowest terms.
✗ Cancelling across an addition
✓ Fix — Common factors can only be cancelled across multiplication or division, never across addition. (a + b)/(b) ≠ a.
✗ Mixing up mixed numbers
✓ Fix — 1 2/3 means 1 + 2/3 = 5/3, NOT 1 × 2/3 = 2/3. Convert to improper fractions before computing.
How we built and tested fraction division
Each input is parsed into a signed (numerator, denominator) BigInt pair, with fraction-of-a-decimal inputs (0.75) converted to 75/100 then simplified. The multiplication and simplification both use BigInt arithmetic so the result is exact for inputs up to 60 digits. Edge cases — division by zero, an improper-fraction numerator larger than its denominator, mixed numbers, and negative inputs — are validated and reported with friendly inline errors.
Output formats (improper fraction, mixed number, decimal expansion) are all derived from the simplified result by deterministic conversions; the decimal expander is the same algorithm used in the Decimal Division tab, ensuring all four tabs agree on every shared computation. Unit tests cover the textbook examples in Stewart's Precalculus §1.1, Larson's Algebra §1.3, and the AMC fraction-arithmetic problem bank.
Frequently Asked Questions
Related Calculators
More division, fraction, and number-theory tools that pair with long-division work.
- Long Division CalculatorLong division with paper-style working, quotient, remainder, decimals, fractions, and modulo.
- Fraction CalculatorAdd, subtract, multiply, divide, simplify, and convert fractions with step-by-step solutions.
- Percentage CalculatorCalculate % of a number, percentage change, and reverse percentages.
- Ratio CalculatorSimplify, scale, and compare ratios; solve equivalent ratios and proportions.
- LCM CalculatorLeast Common Multiple of any list of integers with prime-factor and ladder methods, step-by-step working, and charts.
- Scientific CalculatorAdvanced trig, log, exponent, root, factorial, and memory functions.