To simplify a fraction, divide the numerator and denominator by their Greatest Common Divisor (GCD). For 18/24, the GCD is 6, so it reduces to 3/4 in a single step.
Here's the fast method, why it works, and the mistakes that trip students up.
The one-step method
Find gcd(numerator, denominator), then divide both by it. Because you used the greatest common divisor, the result is already in lowest terms — no repeated halving needed. The Fraction Simplifier shows each step.
Worked example: 45/60
gcd(45, 60) = 15. So 45 ÷ 15 = 3 and 60 ÷ 15 = 4, giving 3/4. Both equal 0.75 — the value never changes.
Why dividing by the GCD works
Dividing the top and bottom by the same number is the same as multiplying by 1 (like 15/15), so the fraction's value is untouched. The GCD just gets you there in one move instead of several.
Common mistakes
- Dividing by a common factor that isn't the greatest (you'll need to repeat).
- Forgetting to divide both numbers.
- Stopping before the GCD reaches 1 between the new numerator and denominator.
- Divide numerator and denominator by their GCD to reach lowest terms.
- Using the GCD simplifies in a single step.
- A fraction is fully simplified when its numerator and denominator are coprime.
- Simplifying never changes the fraction's value.
Frequently asked questions
How do you simplify a fraction quickly?
Find the GCD of the numerator and denominator and divide both by it. That reaches lowest terms in one step.
When is a fraction fully simplified?
When the numerator and denominator share no common factor other than 1 — i.e. their GCD is 1.
Does simplifying change the value?
No. 18/24 and 3/4 are exactly equal; only the numbers used to write them are smaller.
Math educators and engineers building free, accurate calculators with step-by-step solutions, visual diagrams and AI insights.
Related articles
How to Find the LCM: 4 Methods Explained (2026 Guide)
Learn how to find the Least Common Multiple (LCM) using four methods — prime factorization, the GCF formula, l…
How to Find the GCD Using the Euclidean Algorithm
The Euclidean algorithm finds the Greatest Common Divisor in just a few steps. Learn how it works, why it work…
How to Find All the Factors of a Number
Find every factor of a number efficiently by pairing divisors up to the square root. Learn the method, spot pe…