Skip to main content
Mixed Number Calculator

Reduction

Reduce to Lowest Terms

Reduce any fraction to lowest terms using the Euclidean algorithm — a repeated division routine that finds the greatest common factor of the numerator and denominator without ever listing a prime factor. Type a fraction and watch each division step and the final GCF update instantly.

Live — updates as you type

Fraction

Result

View step-by-step working

    Method

    The Euclidean Algorithm, Step by Step

    Worked Example — 48/18

    Divide the larger number by the smaller and keep only the remainder. Then divide the previous divisor by that remainder. Repeat until the remainder hits 0 — the last divisor you used is the GCF.

    1. Divide the larger by the smaller

      48 = 2 × 18 + 12

    2. Repeat with the smaller pair

      18 = 1 × 12 + 6

    3. Repeat again — remainder hits 0

      12 = 2 × 6 + 0

    4. The last nonzero remainder is the GCF

      GCF(48, 18) = 6

    48/18 ÷ 6 = 8/3

    DIVIDE, KEEP THE REMAINDER, REPEAT 48 = 2×18 + 12 18 = 1×12 + 6 12 = 2×6 + 0 GCF = 6

    More Examples

    The Algorithm Across Different Fraction Shapes

    The same repeated-division routine handles every case below without any special-casing.

    Already in lowest terms

    13/29 = 13/29

    29 = 2×13 + 3, then 13 = 4×3 + 1, then 3 = 3×1 + 0. The GCF is 1, so nothing changes.

    One number divides the other

    51/17 = 3/1

    51 = 3×17 + 0 — the remainder is 0 on the very first division, so the GCF is simply 17.

    Large numbers, still quick

    12345/6789 = 4115/2263

    Nine short division steps land on a GCF of 3 — far less work than trial-dividing either number by every prime up toward its square root.

    Why It Matters

    Why Reach for the Euclidean Algorithm

    A fraction is in lowest terms once its numerator and denominator share no common factor above 1 — 8/3 can't be reduced any further because 8 and 3 have nothing in common. Getting there requires finding the greatest common factor first, and the Euclidean algorithm is one of two standard routes to that number. Instead of breaking the numerator and denominator into their prime building blocks and comparing them, it repeatedly divides and keeps only the remainder — a fundamentally different question that happens to arrive at the identical answer every time.

    That difference in approach is exactly what makes the algorithm worth learning on its own, not just as a curiosity alongside prime factorization. It never needs to know whether a number is prime, composite, or anything about its internal structure — only how two numbers divide against each other. That makes it dependable on numbers that are awkward or slow to factor by hand.

    The number of division steps the algorithm needs grows very slowly as the inputs grow — roughly in step with how many digits the numbers have, not with the numbers themselves. Doubling a denominator from four digits to eight digits adds only a handful more divisions, whereas searching for prime factors by testing candidate primes gets measurably slower as the search range widens. That gap is the whole reason this method has stayed the standard choice for large numbers for well over two thousand years.

    Every calculator on this site that reduces a fraction — including the one above — runs the same underlying division logic either way; only the displayed working steps change between the Euclidean view here and the prime-factorization view used elsewhere. The reduced fraction itself is never in question.

    Common Mistakes

    Where the Euclidean Algorithm Goes Wrong

    Quick Reference

    Fractions Reduced to Lowest Terms

    Search or scroll this table for the lowest-terms form of frequently seen fraction pairs — useful for checking homework or double-checking a division-by-hand result.

    Fractions reduced to lowest terms reference table
    FractionLowest terms
    6/8 3/4
    8/12 2/3
    9/12 3/4
    10/15 2/3
    12/16 3/4
    12/18 2/3
    14/21 2/3
    15/20 3/4
    15/25 3/5
    16/24 2/3
    18/24 3/4
    18/27 2/3
    20/25 4/5
    20/30 2/3
    21/28 3/4
    22/33 2/3
    24/32 3/4
    24/36 2/3
    25/35 5/7
    27/36 3/4
    28/42 2/3
    30/40 3/4
    30/45 2/3
    32/48 2/3
    33/44 3/4
    35/49 5/7
    36/48 3/4
    40/50 4/5
    45/60 3/4
    48/64 3/4

    Questions

    Frequently Asked Questions

    Questions specific to the Euclidean algorithm, not already covered elsewhere on the site.

    What is the Euclidean algorithm, in plain terms?

    It's a repeating division routine for finding the greatest common factor of two numbers without ever listing a single prime factor. Divide the larger number by the smaller and keep only the remainder, then divide the previous divisor by that remainder, and keep going. The last remainder before you hit zero is the GCF.

    Why is it called an 'algorithm' rather than just 'dividing'?

    Because it's a fixed, repeatable procedure that always terminates and always lands on the correct answer, regardless of which two whole numbers you feed it — not a trial-and-error search. That reliability is exactly why it has been taught essentially unchanged for over two thousand years.

    What does it mean when the algorithm's answer turns out to be 1?

    A GCF of 1 means the numerator and denominator share no common factor at all — the fraction is already in lowest terms, and dividing both parts by 1 changes nothing. Seeing "1" is a valid, complete result, not a sign the algorithm failed.