Math July 19, 2026 · 10 min read

Simplifying Fractions: The Role of Greatest Common Divisors in Fraction Reduction

Discover how to simplify fractions using GCD. Learn step-by-step fraction reduction, prime factorization methods, and why simplified fractions matter in math.

Fractions are a cornerstone of mathematical expression, but a fraction like 72/96 is far less useful than its simplified form 3/4. Simplifying fractions reduces them to their lowest terms, making comparisons, arithmetic, and communication significantly easier. The process of simplification relies entirely on the concept of the Greatest Common Divisor (GCD), also known as the Greatest Common Factor (GCF).

A fraction a/b is in its simplest form when the GCD of a and b equals 1, meaning the numerator and denominator share no common factors other than 1. To simplify any fraction, you divide both the numerator and denominator by their GCD. For example, 72/96 simplifies by dividing both by GCD(72, 96) = 24, yielding 3/4.

Core Algorithm

simplify(a, b) = (a ÷ GCD(a, b)) / (b ÷ GCD(a, b))

Finding the GCD: Euclidean Algorithm

The most efficient method for finding the GCD is the Euclidean Algorithm, dating back to 300 BC. It works by repeatedly replacing the larger number with the remainder of dividing the larger by the smaller. For example, GCD(72, 96): 96 mod 72 = 24, then 72 mod 24 = 0. When the remainder reaches 0, the last non-zero remainder (24) is the GCD. This algorithm runs in O(log(min(a,b))) time, making it extremely efficient even for large numbers.

Prime Factorization Method

An alternative approach is prime factorization, where you express both numbers as products of prime factors and then multiply the shared primes. For 72 = 2³ × 3² and 96 = 2⁵ × 3¹, the common factors are 2³ × 3¹ = 24. While intuitive for small numbers, this method becomes impractical for large values, which is why the Euclidean algorithm is preferred in computational applications.

Why Simplified Fractions Matter

  • Comparison: It is immediately obvious that 3/4 is larger than 2/3, but comparing 72/96 to 66/99 requires simplification first.
  • Arithmetic: Adding, subtracting, and multiplying simplified fractions requires smaller common denominators and produces cleaner intermediate steps.
  • Communication: Expressing results in lowest terms is a universal convention in mathematics and science.
  • Error Reduction: Working with smaller numbers reduces the chance of computational mistakes in multi-step problems.

Key Takeaway

To simplify a fraction, find the GCD of the numerator and denominator using the Euclidean Algorithm, then divide both by that GCD. The result is the fraction in lowest terms, where numerator and denominator share no common factors other than 1.