All Tools LCM Calculator GCF Calculator LCD Calculator Blog About Contact ⚡ Calculate LCM

Mixed Fraction Calculator

Add, subtract, multiply, and divide mixed numbers with clear step-by-step solutions.

Input Mixed Numbers

Each mixed number = Whole + Numerator / Denominator. Leave whole blank to enter a plain fraction.

Quick Presets
Result
Result in decimals: —
Calculation Steps

Mixed Number Operations Explained

Addition

Convert to improper, find LCD, add numerators, convert back.

Subtraction

Same process as addition, but subtract the numerators.

Multiplication

Convert to improper, multiply directly, simplify, convert back.

Division

Convert to improper, multiply by reciprocal, simplify, convert back.

Related Math Tools

Mixed Fraction Calculator: The Complete Guide to Mixed Number Arithmetic

The Mixed Fraction Calculator on lcmcalculator.info is a free online tool that instantly performs all four basic arithmetic operations on mixed numbersaddition, subtraction, multiplication, and division. Whether you are a student learning about mixed numbers, a teacher preparing lesson materials, or a cook scaling a recipe with mixed measurements, this tool delivers fast, accurate results with full step-by-step solutions.

What Is a Mixed Number?

A mixed number (also called a mixed fraction) combines a whole number and a proper fraction. For example:

2 3/4

This is read as "two and three-quarters." It represents the sum of the whole number and the fraction:

2 3/4 = 2 + 3/4

Mixed numbers are common in everyday life — you might say "1 1/2 cups of flour" or "3 3/8 inches." They provide a natural way to express quantities that are not whole numbers but larger than 1.

Mixed Numbers vs Improper Fractions

Every mixed number can be written as an improper fraction (a fraction where the numerator is larger than or equal to the denominator):

2 3/4 = 11/4

And conversely, every improper fraction can be converted back to a mixed number. The two forms are mathematically equivalent — they just express the same value in different ways.

1. Converting a Mixed Number to an Improper Fraction

The formula is simple:

a b/c = (a × c + b) / c

Steps:

  1. Multiply the whole number by the denominator.
  2. Add the numerator to the result.
  3. Place the total over the original denominator.

Example: Convert 2 3/5 to an improper fraction.

  • 2 × 5 = 10
  • 10 + 3 = 13
  • Result: 13/5

2. Converting an Improper Fraction to a Mixed Number

Steps:

  1. Divide the numerator by the denominator.
  2. The quotient becomes the whole number.
  3. The remainder becomes the new numerator.
  4. The denominator stays the same.

Example: Convert 17/5 to a mixed number.

  • 17 ÷ 5 = 3 remainder 2
  • Result: 3 2/5

3. Adding Mixed Numbers

To add mixed numbers, follow these steps:

  1. Convert each mixed number to an improper fraction.
  2. Find the LCD of the two fractions.
  3. Convert each to an equivalent fraction with the LCD.
  4. Add the numerators.
  5. Simplify and convert back to a mixed number if needed.

Example: 2 1/2 + 1 3/4

  • 2 1/2 = 5/2 and 1 3/4 = 7/4
  • LCD(2, 4) = 4. So 5/2 = 10/4
  • 10/4 + 7/4 = 17/4
  • 17/4 = 4 1/4

4. Subtracting Mixed Numbers

The process is nearly identical to addition:

  1. Convert each mixed number to an improper fraction.
  2. Find the LCD.
  3. Convert each to an equivalent fraction.
  4. Subtract the numerators.
  5. Simplify and convert back to a mixed number if needed.

Example: 3 1/2 − 1 3/4

  • 3 1/2 = 7/2 and 1 3/4 = 7/4
  • LCD(2, 4) = 4. So 7/2 = 14/4
  • 14/4 − 7/4 = 7/4
  • 7/4 = 1 3/4

5. Multiplying Mixed Numbers

Multiplication is often simpler with improper fractions:

  1. Convert each mixed number to an improper fraction.
  2. Multiply the numerators together.
  3. Multiply the denominators together.
  4. Simplify and convert back to a mixed number if needed.

Example: 1 1/2 × 2 2/3

  • 1 1/2 = 3/2 and 2 2/3 = 8/3
  • 3/2 × 8/3 = 24/6
  • 24/6 = 4
  • Result: 4

6. Dividing Mixed Numbers

Division works by multiplying by the reciprocal:

  1. Convert each mixed number to an improper fraction.
  2. Multiply the first fraction by the reciprocal of the second.
  3. Simplify and convert back to a mixed number if needed.

Example: 3 1/2 ÷ 1 3/4

  • 3 1/2 = 7/2 and 1 3/4 = 7/4
  • 7/2 × 4/7 = 28/14
  • 28/14 = 2
  • Result: 2

Why Mixed Numbers Matter

Mixed numbers appear everywhere in daily life and in many professional fields:

  • Cooking: Recipes often call for 1 1/2 cups or 2 3/4 tablespoons of ingredients.
  • Construction: Measurements like 3 5/8 inches or 4 1/2 feet are common in carpentry, plumbing, and masonry.
  • Sports: Distances in track and field are often expressed as mixed numbers (e.g., 2 1/2 miles).
  • Time: "Two and a half hours" is a mixed number (2 1/2).
  • Finance: Stock prices and interest rates are sometimes expressed as mixed numbers.
  • Education: Mixed numbers are a key topic in elementary and middle school math.

Mixed Numbers in Programming

If you are a developer, here is how to work with mixed numbers in several languages:

Python

from fractions import Fraction # Convert mixed to improper def mixed_to_improper(whole, num, den): return Fraction(whole * den + num, den) # Convert improper to mixed def improper_to_mixed(frac): whole = frac.numerator // frac.denominator remainder = frac.numerator % frac.denominator return whole, remainder, frac.denominator a = mixed_to_improper(2, 1, 2) # 5/2 b = mixed_to_improper(1, 3, 4) # 7/4 print(a + b) # 17/4 print(improper_to_mixed(a + b)) # (4, 1, 4)

JavaScript

function mixedToImproper(whole, num, den) { return { num: whole * den + num, den }; } function improperToMixed(num, den) { const whole = Math.floor(num / den); const remainder = num % den; return { whole, num: remainder, den }; } function add(a, b, c, d, e, f) { const A = mixedToImproper(a, b, c); const B = mixedToImproper(d, e, f); // ... add logic ... } console.log(improperToMixed(17, 4)); // { whole: 4, num: 1, den: 4 }

Common Mistakes to Avoid

  • Adding whole numbers and fractions separately: Always convert to improper fractions first, then perform the operation — don’t try to add the whole parts and fraction parts separately.
  • Forgetting to simplify: Always reduce the final answer to lowest terms before converting back to a mixed number.
  • Forgetting to convert back: After calculating, always present the answer as a mixed number if the original inputs were mixed numbers.
  • Ignoring negative signs: Track negative signs carefully throughout the calculation.
  • Denominator errors: When converting to improper fractions, the denominator never changes — only the numerator.

How to Use the Mixed Fraction Calculator

Using our free online mixed number solver is straightforward:

  1. Enter Mixed Number A: Type the whole number and the fraction (numerator and denominator).
  2. Choose an operator: Click + (add), − (subtract), × (multiply), or ÷ (divide).
  3. Enter Mixed Number B: Type the second mixed number.
  4. See the result: The answer appears instantly in the hero banner and the full step-by-step solution appears below.
  5. Copy the result: Use the "Copy Result" or "Copy Solution Steps" buttons to save the work.

Conclusion

The Mixed Fraction Calculator on lcmcalculator.info is a complete, free, and easy-to-use tool for adding, subtracting, multiplying, and dividing mixed numbers. With automatic improper fraction conversion, simplification, and step-by-step solutions, it is suitable for students, teachers, and anyone working with mixed measurements. Bookmark this page and use it whenever you need to work with mixed numbers.

Frequently Asked Questions About Mixed Numbers

Answers to the most common questions about mixed fraction arithmetic.

What is a mixed number?

A mixed number (also called a mixed fraction) combines a whole number and a proper fraction, such as 1 3/4. It represents the sum of the whole number and the fraction: 1 3/4 = 1 + 3/4 = 7/4.

How do you convert a mixed number to an improper fraction?

Multiply the whole number by the denominator, add the numerator, and keep the same denominator. For example, 2 3/5 = (2×5 + 3)/5 = 13/5.

How do you convert an improper fraction to a mixed number?

Divide the numerator by the denominator. The quotient is the whole number, the remainder becomes the new numerator, and the denominator stays the same. For example, 17/5 = 3 remainder 2 = 3 2/5.

How do you add mixed numbers?

Convert each mixed number to an improper fraction, find a common denominator, add the numerators, simplify, and convert back to a mixed number if needed.

How do you subtract mixed numbers?

Convert both mixed numbers to improper fractions, find a common denominator, subtract the numerators, simplify, and convert back to a mixed number if needed.

How do you multiply mixed numbers?

Convert both mixed numbers to improper fractions, multiply numerator by numerator and denominator by denominator, simplify, and convert back to a mixed number if needed.

How do you divide mixed numbers?

Convert both mixed numbers to improper fractions, multiply the first by the reciprocal of the second, simplify, and convert back to a mixed number if needed.

What is 2 1/2 + 1 3/4?

Convert to improper fractions: 2 1/2 = 5/2 and 1 3/4 = 7/4. LCD(2, 4) = 4. 5/2 = 10/4. Then 10/4 + 7/4 = 17/4 = 4 1/4.

Is this mixed fraction calculator free?

Yes, this mixed fraction calculator is completely free with no registration required and no usage limits.

Can I use negative mixed numbers?

Yes, you can enter negative whole numbers. The calculator will compute the result with the correct sign.