Simplify Fraction

Reduce any fraction to its lowest terms using the Greatest Common Divisor (GCD).

How to Simplify a Fraction

Simplifying (or reducing) a fraction means writing it in its lowest terms — where the numerator and denominator have no common factors other than 1. The process uses the Greatest Common Divisor (GCD):

  1. Find the GCD of the numerator and denominator.
  2. Divide both the numerator and denominator by the GCD.
  3. The result is the simplified fraction.

Worked Example

Simplify 36/48:

  1. List factors of 36: 1, 2, 3, 4, 6, 9, 12, 18, 36
  2. List factors of 48: 1, 2, 3, 4, 6, 8, 12, 16, 24, 48
  3. GCD(36, 48) = 12
  4. 36 ÷ 12 = 3  and  48 ÷ 12 = 4
  5. Result: 36/48 = 3/4

The Euclidean Algorithm for GCD

For large numbers, the Euclidean algorithm is the most efficient method:

GCD(a, b) = GCD(b, a mod b) until remainder = 0

Example: GCD(48, 18)

So GCD(48,18) = 6 and 48/18 = 8/3.

Common Uses

Common Mistakes to Avoid

Frequently Asked Questions

How do you simplify a fraction?

Find the GCD of numerator and denominator, then divide both by it. For 18/24: GCD(18,24) = 6, so 18/24 = 3/4.

What is the Greatest Common Divisor (GCD)?

The GCD is the largest number that divides both the numerator and denominator exactly. GCD(12,18) = 6 because 6 is the largest factor shared by both.

When is a fraction fully simplified?

A fraction is in lowest terms when GCD(numerator, denominator) = 1 — they share no common factors. For example, 3/4 is simplified since GCD(3,4) = 1.

How does the Euclidean algorithm find the GCD?

Repeatedly divide: GCD(48,18) → GCD(18,12) → GCD(12,6) → GCD(6,0) = 6. The algorithm stops when the remainder is 0.

Is the Simplify Fraction tool free?

Yes, completely free. No registration, no limits, no hidden fees.

Related Tools