Mixed Numbers Calculator
Add, subtract, multiply, and divide mixed and improper fractions.
Fractions
Mixed Numbers
Simplify
Decimal → Fraction
Fraction → Decimal
Fractions
What Is a Mixed Number?
A mixed number is a whole number written together with a proper fraction, like 4 2/5 or 1 3/10. It's the form humans naturally use to describe quantities in everyday life — 3½ cups of flour, 6¾ feet of fence, 2¼ hours of homework. Mathematically, a mixed number w n/d equals w + n/d, where n/d is always a proper fraction (numerator smaller than denominator).
This Mixed Numbers Calculator adds, subtracts, multiplies, and divides any two mixed numbers (or plain whole numbers, or plain fractions — the whole part is optional). Internally it converts each input to an improper fraction, runs the arithmetic with exact BigInt math, reduces by the greatest common factor, then converts the answer back to a tidy mixed-number form. Related: basic fraction calculator, simplify fractions.
How the Mixed Numbers Calculator Works
Convert to improper form
Every mixed number w n/d becomes the single improper fraction (w × d + n)/d. This single representation is what every arithmetic operation actually uses internally.
Apply the operation
Addition, subtraction, multiplication, and division on the improper fractions follow the standard fraction recipes — LCM for + and −, straight-across for ×, reciprocal flip for ÷.
Reduce by GCF
The improper result is divided by the greatest common factor of its numerator and denominator, so the answer is always in lowest terms before the next step.
Convert back to mixed
If the reduced numerator is larger than the denominator, integer division extracts the whole part: n/d = ⌊n/d⌋ remainder/d. That's the mixed-number form you see in the result card.
6 Ways to Use the Mixed Numbers Calculator
Cooking & baking
Triple a recipe: 2 1/2 cups × 3 = 7 1/2 cups. Halve it: 2 1/2 ÷ 2 = 1 1/4 cups. Exact arithmetic, no rounding.
Carpentry & construction
Add the lengths 3 5/8 in + 4 11/16 in = 8 5/16 in. Subtract 12 ft − 3 1/4 ft = 8 3/4 ft. Always in inch-fraction form.
Sewing & quilting
Combine seam allowances: 1 1/4 + 5/8 = 1 7/8 in. Multiply 2 1/2 yd × 4 = 10 yd. The mixed form maps directly to a ruler.
Time & schedule math
Sum up uneven shift lengths like 7 3/4 hr + 6 1/2 hr = 14 1/4 hr — perfect for timesheets and freelance billing.
Distance & travel
Add stages of a road trip in miles or kilometres without converting to a single decimal — 47 1/2 mi + 38 3/4 mi = 86 1/4 mi.
Homework verification
Check mixed-number arithmetic homework with full worked solutions that show the improper-form conversion and the back-conversion at the end.
Best Practices for Mixed Number Arithmetic
Always convert to improper form before multiplying or dividing. The common student error 2 1/2 × 1 1/2 = 2 1/4 (multiplying wholes and fractions separately) is wrong. Convert first to 5/2 × 3/2 = 15/4 = 3 3/4.
Watch the sign carefully. A negative sign on a mixed number applies to the whole quantity: −2 3/4 means −(2 + 3/4) = −11/4, not (−2) + 3/4 = −5/4. Keep that in mind when entering negatives.
Keep the proper-fraction part proper. A mixed number's fractional piece must satisfy n < d. If your numerator equals or exceeds the denominator, simplify first by extracting the extra whole — e.g. 2 8/5 should be 3 3/5.
Why Mixed Numbers Matter
Human-readable form
3 1/2 cups communicates the quantity in a way nobody has to translate. 7/2 cups makes the same statement, but the reader has to do mental long division first.
Inch-based trades
US carpentry, plumbing, electrical, and HVAC all measure in inch fractions. Mixed numbers like 12 5/16 in are written on every plan, ruler, and tape measure.
Cooking & nutrition
Recipes are universally in mixed numbers — 1 3/4 tsp salt, 2 1/2 cups flour. Math errors here mean inedible food, so getting the arithmetic right is practical.
Music & rhythm
Time signatures and note values rely on mixed-number arithmetic — 4 1/2 bars rest, a dotted half note as 1 1/2 beats. Composers and arrangers compute these constantly.
Tricky Cases for Mixed Numbers
Subtracting a larger from a smaller
2 1/4 − 3 1/2 = −1 1/4. The negative sign sits on the whole part; the proper-fraction piece stays positive in the display.
Result is whole only
1 1/2 + 1 1/2 = 3, with no fractional remainder. The calculator drops the empty fraction and shows just the whole number.
Result is fraction only
If two mixed numbers cancel out their whole parts (e.g. 2 1/4 − 2 = 1/4), the answer shows as a plain fraction with no whole-number prefix.
Improper-input handling
If you enter 2 7/4 (numerator larger than denominator), the calculator interprets it literally — 2 + 7/4 = 15/4 = 3 3/4. The final answer is in standard mixed form.
Core Mixed Number Formulas
Let w n/d represent a mixed number with whole part w, numerator n, and denominator d. The calculator uses these conversions on the way in and out of arithmetic.
Mixed → improper
w n/d = (w × d + n) / d
Improper → mixed
n/d = ⌊n/d⌋ + (n mod d)/d
Addition
(a + p/q) + (b + r/s) → improper, LCM, simplify
Subtraction
(a + p/q) − (b + r/s) → improper, LCM, simplify
Multiplication
(a + p/q) × (b + r/s) → (aq + p)/q × (bs + r)/s
Division
(a + p/q) ÷ (b + r/s) → (aq + p)/q × s/(bs + r)
Decimal value
w n/d = w + n ÷ d
Negative form
−(w n/d) = −(w × d + n) / d
Common Mixed Number Mistakes
Multiplying without converting
2 1/2 × 3 1/3 ≠ 6 1/6. You must convert to improper first: 5/2 × 10/3 = 50/6 = 25/3 = 8 1/3.
Mishandling negatives
Treating −2 3/4 as (−2) + 3/4 = −5/4 instead of −(2 + 3/4) = −11/4 changes the answer entirely. The sign covers the whole mixed number.
Skipping the back-conversion
Leaving 27/4 as the final answer when the question asked for a mixed number costs marks — always finish with 6 3/4.
Leaving an improper fractional part
Writing 2 7/4 as the answer is non-standard; convert the improper piece to add to the whole: 2 + 7/4 = 2 + 1 3/4 = 3 3/4.
Adding whole and fraction parts in isolation
2 3/4 + 1 5/6 ≠ 3 8/10 = 3 4/5. The fractional parts need a common denominator first, then any overflow carries to the whole part.
Forgetting to reduce the fractional part
8 4/6 should be written as 8 2/3. The whole part isn't enough — the fraction also needs to be in lowest terms.
Built for cooks, carpenters, students, teachers, and anyone who works with mixed numbers daily.
Internal math uses exact BigInt arithmetic, so even mixed numbers with very large whole parts simplify without floating-point error. See our methodology.
Mixed Numbers — Frequently Asked Questions
Related Calculators
Pair the fraction calculator with other math tools for ratios, percentages, factorisation, and step-by-step number work.
- Percentage CalculatorCalculate % of a number, percentage change, and reverse percentages.
- Ratio CalculatorSimplify, scale, and compare ratios; solve equivalent ratios and proportions.
- Common Factor CalculatorGreatest common factor (GCF, HCF, GCD) with step-by-step prime factorization.
- Scientific CalculatorAdvanced trig, log, exponent, root, factorial, and memory functions.
- Prime Factorization CalculatorPrime factors with a visual factor tree and step-by-step working.
- Scientific Notation CalculatorConvert to and from scientific, engineering, and E-notation with arithmetic support.