🧮 Math · calculator

Fraction Calculator — Add, Subtract, Multiply, Divide

Calculate fractions instantly. Add, subtract, multiply, and divide fractions with step-by-step solutions. Simplifies results automatically.

Fraction Calculator

What is the Fraction Calculator?

A fraction calculator performs the four fundamental arithmetic operations — addition, subtraction, multiplication, and division — on two fractions, automatically simplifies the result to lowest terms, and displays the decimal equivalent. Enter any two fractions (proper, improper, or by entering whole numbers as numerators), select the operation, and get the exact result instantly with full simplification.

Fractions are one of the foundational structures of mathematics, predating decimal notation by thousands of years. Ancient Egyptians used unit fractions (fractions with numerator 1) for practical measurement and trade; ancient Babylonians used a base-60 fraction system from which we still derive our time units (60 minutes, 60 seconds). Today, fractions are indispensable in cooking, construction, engineering, finance, science, and music — anywhere precise ratios between quantities need to be expressed exactly rather than approximately as decimals.

The key advantage of fractions over decimals is exactness: 1/3 is exact, while 0.333... is an infinite non-terminating decimal. In any calculation chain where exact rational numbers matter — such as pharmaceutical dosing, engineering tolerances, or probability calculations — working in fractions preserves precision that decimal rounding would destroy. This calculator gives you the exact fractional result alongside the decimal approximation.

Fraction Calculator Formula

Addition: a/b + c/d = (a×d + c×b) / (b×d) Subtraction: a/b − c/d = (a×d − c×b) / (b×d) Multiplication: a/b × c/d = (a×c) / (b×d) Division: a/b ÷ c/d = a/b × d/c = (a×d) / (b×c) Simplification — divide by GCD: GCD(p, q) found via Euclidean algorithm: while q ≠ 0: (p, q) = (q, p mod q); return p Simplified fraction: (p÷GCD) / (q÷GCD) Mixed number conversion: Improper fraction p/q → whole: p÷q (integer division), remainder: p mod q Mixed number (n and r/q) → improper: (n×q + r)/q Decimal = simplified numerator / simplified denominator

Fraction Calculator Example

Example 1 — Addition: 2/3 + 3/8 Common denominator: 3×8 = 24 Numerator: (2×8) + (3×3) = 16 + 9 = 25 Result: 25/24 (improper fraction) GCD(25,24) = 1 → already simplified Decimal: 25÷24 = 1.0417 (or 1 and 1/24 as mixed number)

Example 2 — Subtraction: 5/6 − 1/4 Numerator: (5×4) − (1×6) = 20 − 6 = 14 Denominator: 6×4 = 24 Result: 14/24 → GCD(14,24) = 2 → simplified: 7/12 Decimal: 7÷12 = 0.5833

Example 3 — Multiplication: 4/5 × 3/7 Numerator: 4×3 = 12 Denominator: 5×7 = 35 Result: 12/35 → GCD(12,35) = 1 → already simplified Decimal: 0.3429

Example 4 — Division: 7/8 ÷ 3/4 = 7/8 × 4/3 = 28/24 GCD(28,24) = 4 → simplified: 7/6 Decimal: 1.1667 (or 1 and 1/6)

How to Use the Fraction Calculator

  1. 1Enter the numerator and denominator for the first fraction. The numerator is the top number (parts counted); the denominator is the bottom number (total equal parts the whole is divided into). Negative numerators are accepted for negative fractions. Denominators must be non-zero — division by zero is undefined in mathematics.
  2. 2Select the operation: Add (+), Subtract (−), Multiply (×), or Divide (÷). Then enter the numerator and denominator for the second fraction. For division, remember the calculator takes the reciprocal of the second fraction automatically — you do not need to do this yourself.
  3. 3Click Calculate. The result appears as both a simplified fraction (numerator and denominator in lowest terms after GCD reduction) and as a decimal. If the result is an improper fraction (numerator greater than denominator), the decimal will be greater than 1. Use the decimal for quick comparison or further calculation; use the fraction form for exact representation.

Why Fraction Calculator Matters

Fraction arithmetic is not simply a school subject — it is the computational backbone of countless practical fields. In cooking, scaling a recipe from 4 servings to 6 requires multiplying every fractional ingredient measurement by 3/2 (or 1.5). Getting 2/3 cup × 3/2 wrong means the dish fails. In construction, cutting lumber or tile to fractional dimensions (3/8 inch, 7/16 inch) requires precise fraction subtraction and addition to minimize waste. In medicine, drug dosing calculations often involve fractions of standard doses adjusted for patient weight — an error here has direct consequences for patient safety.

In mathematics education, fluency with fraction arithmetic is the gateway to algebra, proportional reasoning, probability, and calculus. Research in mathematics education consistently shows that students who struggle with fraction concepts in middle school face persistent difficulties in algebra and higher mathematics. The National Mathematics Advisory Panel identified fraction proficiency as 'the most important foundational skill for algebra' — not because fractions are intrinsically more important than other topics, but because fraction arithmetic exercises every core skill needed for abstract mathematics: equivalence, ratio, inverse operations, and exact symbolic manipulation.

Professionally, fraction literacy distinguishes workers who can reason precisely from those who cannot. A nurse calculating medication drips, a carpenter calculating joint tolerances, a financial analyst computing fractional interest accruals, and a chef scaling a banquet recipe all rely on the same fraction arithmetic this calculator performs. The decimal approximation is useful; the exact fraction is necessary for precise work.

Limitations & Accuracy

This calculator performs operations on two fractions at a time. For expressions with more than two fractions (e.g., 1/2 + 1/3 + 1/4), you must chain calculations: first compute 1/2 + 1/3 = 5/6, then compute 5/6 + 1/4 = 13/12. The result of the first calculation feeds into the second as a new input. This sequential approach is necessary because the calculator evaluates one binary operation at a time.

The calculator displays the result as an improper fraction if the numerator exceeds the denominator — it does not automatically convert to mixed number form. For example, 7/4 is displayed as 7/4 with decimal 1.75, not as '1 and 3/4'. To convert manually: whole part = 7÷4 = 1 (integer division), remainder = 7 mod 4 = 3, so 7/4 = 1 and 3/4. This is a display choice — the mathematical value is identical.

This calculator handles rational numbers (integers expressed as fractions) only. Irrational numbers expressed as fractions (such as √2/2 or π/4) cannot be entered directly as fractions since their numerators are not integers. For calculations involving irrational numbers, use a scientific calculator with decimal input.

Practical Tips

  • When adding or subtracting fractions by hand, use the LCD (Least Common Denominator) instead of the product of denominators to keep numbers smaller. The LCD of 4 and 6 is 12, not 24. Using the product (24) still works but produces a larger intermediate fraction that requires more simplification. This calculator uses the product-then-simplify approach internally, which is equivalent but you can verify results mentally using LCD.
  • For fraction division, always use 'keep, change, flip': Keep the first fraction unchanged, Change division to multiplication, Flip (reciprocate) the second fraction. This is the standard algorithm: a/b ÷ c/d = a/b × d/c. The mathematical justification: multiplying by d/c is the same as dividing by c/d, because (c/d) × (d/c) = 1.
  • Cross-cancellation before multiplying fractions simplifies the calculation. Before multiplying 4/9 × 3/8: check if any numerator shares a common factor with any denominator. 4 and 8 share factor 4 (4÷4=1, 8÷4=2). 3 and 9 share factor 3 (3÷3=1, 9÷3=3). So: (4/9) × (3/8) = (1/3) × (1/2) = 1/6. Much simpler than 12/72 → GCD → 1/6.
  • Converting between fractions and percentages is a daily skill: percentage = fraction × 100. Common equivalents to memorize: 1/2 = 50%, 1/3 ≈ 33.3%, 1/4 = 25%, 3/4 = 75%, 1/5 = 20%, 1/8 = 12.5%, 3/8 = 37.5%, 5/8 = 62.5%, 7/8 = 87.5%. These appear constantly in discounts, statistics, and proportional reasoning. The decimal output from this calculator × 100 = percentage.

Frequently Asked Questions

How do you add fractions with different denominators?
To add fractions with unlike denominators, you must first find a common denominator. The most reliable method is to use the product of both denominators: a/b + c/d = (a×d + c×b) / (b×d). For example, 1/3 + 1/4: the common denominator is 3×4=12. Convert: (1×4)/(3×4) = 4/12 and (1×3)/(4×3) = 3/12. Add numerators: 4+3=7. Result: 7/12. Alternatively, you can use the Least Common Multiple (LCM) of the denominators for a smaller intermediate number, but both methods produce the same simplified result.
How does the calculator simplify fractions?
After performing the operation, the calculator divides both the numerator and denominator by their Greatest Common Divisor (GCD). The GCD is found using the Euclidean algorithm: repeatedly replace the larger number with the remainder of dividing the larger by the smaller, until the remainder is zero. For example, GCD(12, 8): 12 = 1×8 + 4; 8 = 2×4 + 0 → GCD = 4. So 8/12 simplifies to 2/3. This always produces the fraction in its lowest terms.
Why does multiplying fractions not require a common denominator?
Fraction multiplication and division work differently from addition and subtraction. When multiplying, you are scaling a fraction by another fraction — you simply multiply numerator by numerator and denominator by denominator: (a/b) × (c/d) = (a×c)/(b×d). No common denominator is needed because the operation does not involve combining parts of the same whole. This is why 2/3 × 3/4 = 6/12 = 1/2 — you can also cross-cancel before multiplying: 2/4 × 3/3 = 1/2 × 1/1 = 1/2.
How do you divide fractions?
Dividing by a fraction is equivalent to multiplying by its reciprocal: a/b ÷ c/d = a/b × d/c = (a×d)/(b×c). The 'keep, change, flip' mnemonic: keep the first fraction, change division to multiplication, flip (reciprocate) the second fraction. For example, 3/4 ÷ 2/5 = 3/4 × 5/2 = 15/8 = 1 and 7/8 as a mixed number. This rule works because multiplying and dividing by the same non-zero number cancel each other out — flipping the divisor fraction makes the operation algebraically correct.
What is the difference between a proper fraction, improper fraction, and mixed number?
A proper fraction has a numerator smaller than the denominator — its value is between 0 and 1 (e.g., 3/4, 7/8). An improper fraction has a numerator equal to or greater than the denominator — its value is 1 or more (e.g., 5/3, 9/4). A mixed number combines a whole number and a proper fraction (e.g., 1 and 2/3, which equals the improper fraction 5/3). This calculator works with all three: enter an improper fraction directly or enter whole numbers in the numerator field if needed. The result will display as an improper fraction with the decimal equivalent.
Can I enter mixed numbers in this calculator?
This calculator accepts numerator and denominator as separate integers, which works directly for proper and improper fractions. For a mixed number like 2 and 3/4, convert it to an improper fraction first: multiply the whole number by the denominator and add the numerator: 2 × 4 + 3 = 11. Enter 11 as the numerator and 4 as the denominator. The conversion formula is: mixed number (n and a/b) = (n×b + a) / b.
What are fractions used for in real life?
Fractions appear constantly in everyday contexts. Cooking: recipes specify 3/4 cup flour, 1/2 teaspoon salt. Construction: lumber dimensions (2×4 is actually 1.5×3.5 inches), tile spacing (3/8 inch grout lines). Finance: interest rates expressed as fractions of a percent; stock prices historically quoted in sixteenths (1/16 of a dollar). Probability: a 1/6 chance of rolling a specific number on a die. Time: quarter-hours (1/4 of 60 minutes = 15 minutes), half-hours. Measurement: a bolt with a 5/16 inch diameter. Music: time signatures (3/4 time means 3 quarter-note beats per measure). Understanding fraction arithmetic is practical, not abstract.
How do negative fractions work in arithmetic?
Negative fractions follow the same rules as negative integers. A fraction is negative when either the numerator or denominator (but not both) is negative: −1/2 = 1/(−2) = −0.5. When both are negative, the fraction is positive: −1/−2 = 1/2 = 0.5. For addition: (−1/3) + (1/4) = (−4 + 3)/12 = −1/12. For multiplication: (−2/3) × (3/4) = −6/12 = −1/2. The sign rules for fractions are identical to integer sign rules: negative × negative = positive, negative × positive = negative.

Continue Your Journey

Trusted Sources & Methodology

NIST (National Institute of Standards)Mathematical standards and measurement science
Khan AcademyMathematical education and formula verification

API Access

Coming Soon
https://api.solviqlab.com/v1/fraction-calculator

REST API for developers. Integrate this tool into your app.