CALCS

Math

Fraction calculator

Enter two fractions and pick an operation (+, −, ×, ÷). The result is reduced to lowest terms automatically, with the decimal value shown for reference.

=
56
= 0.8333

Formula

Subtraction is the same as addition with c → −c. Multiplication is (a·c)/(b·d). All results are reduced by dividing both parts by gcd(num, den).

Fractions are exact — unlike decimals, 1/3 stays exactly 1/3 rather than 0.33333… The calculator works entirely with integers, computes the answer using the standard four-operation rules, then reduces using the greatest common divisor (Euclid's algorithm).

Addition and subtraction use a common denominator (the product of the two denominators, then simplified). Multiplication multiplies numerators and denominators directly. Division flips the second fraction and multiplies. All results are reduced to lowest terms — so 6/8 becomes 3/4, and 4/2 becomes 2.

Mixed-number form is shown alongside when the result is improper (numerator > denominator).

Examples

  1. 011/2 + 1/3
    (1·3 + 1·2)/(2·3) = 5/6 ≈ 0.8333
  2. 023/4 × 2/5
    (3·2)/(4·5) = 6/20 = 3/10 = 0.3
  3. 035/6 − 1/4
    (5·4 − 1·6)/(6·4) = 14/24 = 7/12 ≈ 0.5833
  4. 047/8 ÷ 1/2
    (7·2)/(8·1) = 14/8 = 7/4 = 1 3/4 = 1.75

FAQ

  • We reduce using Euclid's algorithm — find the greatest common divisor of numerator and denominator, then divide both by it. Standard math practice is to always express fractions in lowest terms unless instructed otherwise.

References

Related calculators