Fraction Calculator
Enter two fractions and pick an operation. The result is simplified to lowest terms automatically, with every step shown underneath.
On-screen number pad
Step-by-step proofCheck by hand
How each operation works
Adding or subtracting fractions first converts both to a common denominator, by cross-multiplying, then adds or subtracts the numerators. Multiplying just multiplies numerators together and denominators together. Dividing flips the second fraction and multiplies — dividing by a number and multiplying by its reciprocal are the same operation.
Every result is reduced to lowest terms using the greatest common divisor, computed with exact integer arithmetic (the Euclidean algorithm) rather than decimals, so nothing rounds before the final simplification.
The formulas
Worked example
1/2 + 1/3: cross-multiplying gives (1×3 + 1×2) / (2×3) = 5/6, which is already in lowest terms since 5 and 6 share no common factor — equal to 0.8333 as a decimal.
Frequently asked questions
Why do I need a common denominator to add or subtract fractions?
Why doesn't multiplying fractions need a common denominator?
Why does dividing by a fraction mean flipping and multiplying?
What does 'simplified to lowest terms' mean?
- Standard fraction arithmetic (addition, subtraction, multiplication, division via the reciprocal) — general published mathematics.
- Results are computed with exact integer arithmetic and simplified via the Euclidean algorithm, not with floating-point decimals, so no rounding error enters before the final display.