ZovaTool

Fraction Calculator

Result

3/4 + 2/3
Result
17/12
Mixed
1 5/12
Decimal
1.41(6)
Percent
141.(6)%

Step-by-step solution

Step 1 — Write the problem
34+23
Step 2 — Find the LCD of 4 and 3
LCM(4, 3) = 12

The Least Common Denominator becomes our shared bottom.

Step 3 — Rewrite each fraction with denominator 12
34×33=912
23×44=812
Step 4 — Add the numerators (keep the denominator)
912+812=9 + 812=1712
Step 5 — Already in lowest terms
1712
Final answer
1712

= 1 5/12 (mixed) = 1.41(6) (decimal)

How to use the Fraction Calculator

  1. Pick a mode: Fractions (a/b op c/d), Mixed Numbers, Simplify, Decimal↔Fraction, Big Number (BigInt), Expression (multi-operand) or Compare.
  2. Type fractions in any common form: 3/4, 1 1/2 (mixed), 0.625 (decimal), 0.(3) (repeating), or plain integers.
  3. Choose the operator: + − × ÷ or ^ (power). The result is shown as fraction, mixed number, decimal and percent.
  4. Expand the Step-by-step panel to see LCD, common-denominator conversion, GCD simplification and the final reduced form.
  5. Use Simplify mode to reduce any fraction by its greatest common divisor and view the work.
  6. Decimal → Fraction supports both Exact (terminating/repeating) and Best-approximation (bounded denominator, e.g. for π ≈ 22/7 or 355/113).
  7. Fraction → Decimal uses arbitrary-precision long division and marks the repeating block in parentheses, e.g. 1/7 = 0.(142857).
  8. Big Number mode handles numerators and denominators of unlimited length using BigInt — no overflow.
  9. Expression mode evaluates full chains like (1/2 + 2/3) × 3/4 - 1/6 with correct precedence and parentheses.
  10. Compare mode sorts any list of fractions ascending and shows them with decimal and % equivalents.
  11. Tap ★ Save to keep a calculation in browser history; use Share/CSV/PDF to export.
Advertisement

Fractions, decimals and the math under the hood

A fraction is a quotient of two integers — the numerator over the denominator — and despite looking simple, it powers almost every measurement system humans use: cooking (½ cup), construction (5/8" plywood), music (3/4 time), finance (basis points = 1/10000) and probability.

Adding or subtracting fractions requires a common denominator, which is built from the Least Common Multiple of the two denominators. Multiplication and division skip that step — multiplication multiplies tops and bottoms, division multiplies by the reciprocal. Every result is then reduced by dividing both parts by their Greatest Common Divisor (Euclid's algorithm, ~2300 years old and still the fastest).

Some decimals terminate (0.625 = 5/8) and others repeat forever (1/3 = 0.333..., 1/7 = 0.142857142857...). A decimal terminates exactly when its reduced denominator has only 2 and 5 as prime factors. The repeating block length divides the multiplicative order of 10 modulo the denominator — pure number theory in a calculator.

For irrational numbers like π, the calculator's Best-approximation mode finds the closest fraction under a denominator cap. The continued-fraction expansion produces 22/7 (denom < 10), 333/106 (denom < 200), then 355/113 — accurate to 7 digits and famously discovered by Chinese astronomer Zu Chongzhi in the 5th century.

Big-number mode uses JavaScript BigInt so you can compute things like 99999999999999999999/3 exactly without losing a single digit — useful for cryptography, combinatorics and just-for-fun math.

Tip: store an intermediate result with ★ Save, then paste it into the Expression box to chain longer calculations without retyping.