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

1

Cooking and recipes

Halve a 2 1/4 cup recipe by dividing by 2, or scale to feed a different number of guests.

2

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.

3

Algebra prep

Practice rational-expression simplification by hand — the calculator's step-by-step working is an exact match for the textbook procedure.

4

Music theory

Convert note durations (a half note divided into eighths, etc.) into a single ratio.

5

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

Use 'keep, change, flip': keep the first fraction the same, change the division to multiplication, and flip (take the reciprocal of) the second fraction. (a/b) ÷ (c/d) = (a/b) × (d/c) = (a × d) / (b × c). Simplify by dividing both numerator and denominator by their greatest common divisor.

Because dividing by c/d is the same as multiplying by its reciprocal d/c. (c/d) × (d/c) = 1, so multiplying by d/c undoes the c/d, leaving the first fraction multiplied by the inverse. This is the same reason 6 ÷ 2 = 6 × (1/2): division and multiplication-by-reciprocal are equivalent.

First convert each mixed number to an improper fraction. 1 1/2 = 3/2, 2 1/4 = 9/4. Then apply 'keep, change, flip' as for normal fractions: (3/2) ÷ (9/4) = (3/2) × (4/9) = 12/18 = 2/3. The Fraction Division tab accepts both mixed numbers (e.g. 1 1/2) and improper fractions directly.

Find the greatest common divisor (GCD) of the numerator and denominator, then divide both by it. 12/18 simplifies to 2/3 because GCD(12, 18) = 6, and 12 ÷ 6 = 2, 18 ÷ 6 = 3. The calculator simplifies automatically using the Euclidean algorithm.

An improper fraction has a numerator greater than or equal to its denominator, e.g. 7/4 or 9/9. It represents a value of 1 or more. Improper fractions can be converted to mixed numbers — 7/4 = 1 3/4, 9/9 = 1 — by dividing the numerator by the denominator.

A mixed number combines a whole number with a proper fraction, e.g. 1 3/4 means 1 + 3/4 = 7/4. Mixed numbers are easier to compare to whole quantities ('about 1¾ cups') while improper fractions are easier to compute with. The calculator returns both forms.

Yes — whenever the cross-product simplifies to a denominator of 1. (3/4) ÷ (3/8) = (3/4) × (8/3) = 24/12 = 2/1 = 2. The calculator flags whole-number results automatically.

Write the whole number as itself over 1 (e.g. 5 = 5/1), then apply 'keep, change, flip'. 5 ÷ (2/3) = (5/1) × (3/2) = 15/2 = 7 1/2. The Fraction Division tab accepts whole numbers and treats them as a/1 automatically.

Once the result is a simplified fraction a/b, its decimal form is computed by long division of a by b. The Fraction Division tab shows the terminating or repeating decimal, with the repeating block in parentheses if applicable.

Because division is defined as the inverse of multiplication. The reciprocal of c/d is d/c, and (c/d) × (d/c) = cd/dc = 1. Multiplying by the reciprocal therefore 'cancels' the divisor and leaves only the first fraction. This is true for any non-zero divisor — including whole numbers, decimals, and even algebraic expressions.