Simplify Fractions Calculator
Reduce any fraction to lowest terms with steps
Last updated September 6, 2026
Method: The numerator and denominator are divided by their greatest common divisor, found with the Euclidean algorithm gcd(a, b) = gcd(b, a mod b). Exact integer arithmetic, no rounding in the fraction itself.
Included: Simplest form, the GCD, every Euclidean step, a prime-factor check, improper-to-mixed-number conversion, mixed-number input, decimal and percent equivalents, and a table of common fractions in lowest terms.
Not included: Adding, subtracting, multiplying or dividing two fractions (use the Fraction Calculator), and decimal inputs (use the Decimal to Fraction Calculator first).
โ Enter your fraction
Whole numbers only. Negative signs are handled automatically; the result keeps the sign of the fraction.
โ Simplest form
๐งฎ Step by step
- 1Find the GCD of 84 and 126 with the Euclidean algorithm
Step 1 126 mod 84 = 42 continue with the divisor and remainder Step 2 84 mod 42 = 0 remainder 0, so GCD = 42 - 2Divide numerator and denominator by the GCD84 รท 42 = 2 ย ย 126 รท 42 = 3
- 3Write the result84/126 = 2/3
๐ Check with prime factors
The product of the prime factors both numbers share is the GCD (42). Cancelling those shared factors leaves 2/3.
๐ Common fractions in lowest terms
| Fraction | GCD | Simplest form | Decimal |
|---|---|---|---|
| 2/4 | 2 | 1/2 | 0.5 |
| 4/8 | 4 | 1/2 | 0.5 |
| 6/8 | 2 | 3/4 | 0.75 |
| 8/12 | 4 | 2/3 | 0.666667 |
| 9/12 | 3 | 3/4 | 0.75 |
| 12/16 | 4 | 3/4 | 0.75 |
| 18/24 | 6 | 3/4 | 0.75 |
| 16/64 | 16 | 1/4 | 0.25 |
| 25/100 | 25 | 1/4 | 0.25 |
| 75/100 | 25 | 3/4 | 0.75 |
Exact integer arithmetic. The simplified fraction is found by dividing both parts by their greatest common divisor, computed with the Euclidean algorithm. Decimal and percent values are rounded for display only.
Simplify fractions calculator: everything you need to know
This free simplify fractions calculator reduces any fraction to its simplest form by dividing the numerator and denominator by their greatest common divisor. Example: 84/126 has a GCD of 42, so it reduces to 2/3, which is 0.6667 as a decimal. The tool shows every step of the Euclidean algorithm, converts improper fractions to mixed numbers, and accepts mixed numbers as input.
Two sister tools cover the neighboring jobs: the Fraction Calculator adds, subtracts, multiplies and divides two fractions and then reduces the answer, and the Decimal to Fraction Calculator turns a decimal such as 0.375 into the fraction 3/8. Use this page when you already have a fraction and only want it in lowest terms, with the working shown.
How simplifying a fraction works
A fraction is in lowest terms when its numerator and denominator share no factor other than 1. To get there, divide both parts by their greatest common divisor:
a / b = (a ÷ g) / (b ÷ g), where g = gcd(a, b) Dividing top and bottom by the same number does not change the value, because you are multiplying by g/g = 1. What changes is the way the fraction is written. Because g is the greatest common divisor, the result cannot be reduced any further; that is what makes it the simplest form, and every fraction has exactly one.
The calculator finds g with the Euclidean algorithm: replace the larger number with the remainder of dividing it by the smaller, and repeat until the remainder is 0. The last non-zero divisor is the GCD. This takes only a handful of steps even for numbers in the millions, which is why it beats listing every factor by hand.
gcd(a, b) = gcd(b, a mod b), until the remainder is 0 Worked example: 84/126 in simplest form
Take 84/126. Run the Euclidean algorithm on 126 and 84:
- 126 mod 84 = 42 (126 = 1 × 84 + 42)
- 84 mod 42 = 0 (84 = 2 × 42 exactly)
The remainder hit 0 when the divisor was 42, so gcd(84, 126) = 42. Now divide both parts: 84 ÷ 42 = 2 and 126 ÷ 42 = 3. The simplest form is 2/3. As a check, 2 and 3 share no factor other than 1, and 84 ÷ 126 = 0.6667, exactly what 2 ÷ 3 gives. In percent terms the fraction is 66.67%.
The prime-factor route reaches the same answer: 84 = 2 × 2 × 3 × 7 and 126 = 2 × 3 × 3 × 7. The shared factors are one 2, one 3 and one 7, whose product is 2 × 3 × 7 = 42. Cancel them and 2/3 is left. If you instead divide by small common factors one at a time, you go 84/126 → 42/63 (divide by 2) → 14/21 (divide by 3) → 2/3 (divide by 7); three steps instead of one, but the same destination.
Second example: an improper fraction to a mixed number
Now take 45/12, where the numerator is larger than the denominator. First reduce: gcd(45, 12) = 3, so 45 ÷ 3 = 15 and 12 ÷ 3 = 4, giving 15/4. Then convert: 15 ÷ 4 = 3 remainder 3, so the mixed number is 3 3/4, and the decimal is 15 ÷ 4 = 3.75. Reducing before converting keeps the numbers small; converting 45/12 directly gives 3 9/12, which you would still have to reduce to 3 3/4.
Common fractions reduced to lowest terms
The fractions that come up most in recipes, tape measures and school worksheets reduce as follows. Each row was computed by dividing both parts by the GCD shown.
| Fraction | GCD | Simplest form | Decimal |
|---|---|---|---|
| 2/4 | 2 | 1/2 | 0.5 |
| 4/8 | 4 | 1/2 | 0.5 |
| 6/8 | 2 | 3/4 | 0.75 |
| 5/10 | 5 | 1/2 | 0.5 |
| 8/12 | 4 | 2/3 | 0.6667 |
| 9/12 | 3 | 3/4 | 0.75 |
| 10/15 | 5 | 2/3 | 0.6667 |
| 12/16 | 4 | 3/4 | 0.75 |
| 14/21 | 7 | 2/3 | 0.6667 |
| 18/24 | 6 | 3/4 | 0.75 |
| 16/64 | 16 | 1/4 | 0.25 |
| 25/100 | 25 | 1/4 | 0.25 |
| 50/100 | 50 | 1/2 | 0.5 |
| 75/100 | 25 | 3/4 | 0.75 |
| 36/48 | 12 | 3/4 | 0.75 |
| 45/60 | 15 | 3/4 | 0.75 |
| 125/1000 | 125 | 1/8 | 0.125 |
Notice how many different-looking fractions collapse to the same value: 6/8, 9/12, 12/16, 18/24, 36/48, 45/60 and 75/100 are all 3/4. That is the point of simplest form: it gives every value one standard name, so two fractions are equal exactly when their reduced forms match.
Euclidean algorithm step by step
The table shows the full remainder chain for a few fractions. The GCD is the divisor in the row where the remainder first becomes 0. Even the largest example needs only three steps.
| Fraction | Remainder steps | GCD | Simplest form |
|---|---|---|---|
| 84/126 | 126 mod 84 = 42; 84 mod 42 = 0 | 42 | 2/3 |
| 36/48 | 48 mod 36 = 12; 36 mod 12 = 0 | 12 | 3/4 |
| 96/144 | 144 mod 96 = 48; 96 mod 48 = 0 | 48 | 2/3 |
| 255/340 | 340 mod 255 = 85; 255 mod 85 = 0 | 85 | 3/4 |
| 1000/3500 | 3500 mod 1000 = 500; 1000 mod 500 = 0 | 500 | 2/7 |
| 1071/462 | 1071 mod 462 = 147; 462 mod 147 = 21; 147 mod 21 = 0 | 21 | 51/22 |
The last row is a classic: 1071/462 reduces to 51/22, an improper fraction that the calculator would also write as 2 7/22 (51 ÷ 22 = 2 remainder 7) and as the decimal 2.3182.
Improper fractions and mixed numbers
An improper fraction has a numerator at least as large as its denominator (7/4, 45/12). A mixed number writes the same value as a whole part plus a proper fraction (1 3/4, 3 3/4). Simplest form applies to both: reduce the fraction first, then divide to split off the whole part. The table shows the reduced improper fraction, the mixed number, and the decimal.
| Improper fraction | Lowest terms | Mixed number | Decimal |
|---|---|---|---|
| 7/4 | 7/4 | 1 3/4 | 1.75 |
| 9/2 | 9/2 | 4 1/2 | 4.5 |
| 11/3 | 11/3 | 3 2/3 | 3.6667 |
| 22/8 | 11/4 | 2 3/4 | 2.75 |
| 30/12 | 5/2 | 2 1/2 | 2.5 |
| 45/12 | 15/4 | 3 3/4 | 3.75 |
| 64/10 | 32/5 | 6 2/5 | 6.4 |
| 100/8 | 25/2 | 12 1/2 | 12.5 |
| 150/100 | 3/2 | 1 1/2 | 1.5 |
| 200/12 | 50/3 | 16 2/3 | 16.6667 |
Going the other way, a mixed number becomes an improper fraction with whole × denominator + numerator over the denominator: 3 3/4 = (3 × 4 + 3)/4 = 15/4. The calculator's Mixed number mode does this conversion for you before reducing, so an input like 2 12/16 comes back as 2 3/4 and 11/4.
How to use this calculator
- Pick the input type: Simple fraction for a plain a/b, or Mixed number when you have a whole part as well.
- Type the numerator in the top box and the denominator in the bottom box. Whole numbers only; negatives are fine.
- Read the simplest form in the blue result card, along with the GCD, the mixed-number form for improper fractions, the decimal and the percent.
- Follow the steps: the step-by-step card lists every Euclidean remainder, the division by the GCD, and the final rewrite.
- Check with prime factors if your class uses the factor-tree method; the shared primes multiply to the same GCD.
- Try the quick buttons for common fractions such as 6/8 or 25/100 to see the pattern.
Everything updates as you type, and no data leaves your browser.
Who this calculator is for
- Students in grades 4 through 8 learning to write fractions in simplest form, and anyone checking homework where the steps must be shown.
- Parents and tutors who want a worked example to explain alongside, rather than just an answer.
- Cooks and bakers scaling recipes: 6/8 cup is 3/4 cup, and 10/16 of a cup is 5/8.
- Woodworkers and DIYers reading tape measures, where 12/16 inch is 3/4 inch and 10/16 inch is 5/8 inch.
- Anyone converting ratios or survey counts to a clean fraction: 12 out of 18 is 2/3.
Key terms
- Numerator / denominator: the top and bottom numbers of a fraction. The denominator says how many equal parts make a whole; the numerator says how many of them you have.
- Simplest form (lowest terms, reduced form): the version of a fraction in which the numerator and denominator have no common factor other than 1.
- GCD / GCF / HCF: greatest common divisor, greatest common factor and highest common factor are three names for the same number, the largest integer dividing both parts. See the GCF Calculator.
- Coprime (relatively prime): two numbers whose GCD is 1. A fraction is in lowest terms exactly when its numerator and denominator are coprime.
- Equivalent fractions: fractions with the same value, such as 6/8 and 3/4. All equivalent fractions share one simplest form.
- Proper / improper fraction: proper when the numerator is smaller than the denominator (3/4), improper when it is not (7/4).
- Mixed number: a whole number plus a proper fraction, such as 1 3/4.
What changes the result
- The GCD: the only thing that matters. A GCD of 1 means no reduction at all; a large GCD such as 500 in 1000/3500 collapses the fraction dramatically, to 2/7.
- Shared prime factors: the GCD is the product of every prime the two numbers have in common, counted with multiplicity. 84 and 126 share 2, 3 and 7 once each, so the GCD is 42 rather than, say, 84.
- Sign: has no effect on the digits. -18/24 reduces to -3/4 exactly as 18/24 reduces to 3/4.
- Scaling both parts: multiplying numerator and denominator by the same number changes the look but never the reduced form. 2/3, 14/21 and 40/60 all reduce to 2/3.
- Denominators of 10, 100, 1000: these reduce whenever the numerator shares a factor of 2 or 5, which is why 75/100 becomes 3/4 and 125/1000 becomes 1/8.
Tips for simplifying by hand
- Try 2, 3 and 5 first. Both even: divide by 2. Both digit sums divisible by 3: divide by 3. Both ending in 0 or 5: divide by 5. Repeat until none applies.
- Use the Euclidean algorithm for big numbers. Finding gcd(1071, 462) by listing factors is slow; three remainder steps give 21 immediately.
- Reduce before you convert. Turning 45/12 into 15/4 first makes the mixed number 3 3/4 fall out directly.
- Check your answer by cross-multiplying: 84 × 3 = 252 and 126 × 2 = 252, so 84/126 and 2/3 are equal.
- Watch for GCD = 1. If nothing divides both parts, the fraction was already in simplest form. 17/23 is one such case.
Limitations
- Inputs must be whole numbers. For a decimal numerator or denominator, multiply both parts by 10, 100 or 1000 first, or start from the Decimal to Fraction Calculator.
- The tool simplifies one fraction. It does not add, subtract, multiply or divide fractions; that is the job of the Fraction Calculator.
- Decimal and percent outputs are rounded for display (to 6 decimal places and 2 decimal places respectively). The fraction itself is exact.
- Values are limited to JavaScript's safe integer range (about 9 × 1015). Anything longer than 15 digits should be reduced by hand or with a computer algebra system.
Related fraction and factor tools
Use this page when you already have a single fraction and want it in lowest terms with the working shown. Reach for the Fraction Calculator when you need to combine two fractions with an operation, the Decimal to Fraction Calculator when your starting point is a decimal like 0.625 (which becomes 5/8), the Mixed Number Calculator when you are doing arithmetic on mixed numbers, the GCF Calculator when the greatest common factor itself is the question, the LCM Calculator when you need a common denominator, and the Ratio Calculator when the numbers are a ratio such as 12:18 (which simplifies to 2:3 by the same GCD method).
๐ก Good to know
Simplest form is unique
Every fraction has exactly one lowest-terms version, so reducing is the standard way to test whether two fractions are equal. 36/48 and 45/60 look different, but both reduce to 3/4, so they are the same number.
Reduced does not mean smaller
Simplifying changes the numbers, not the value. 84/126 and 2/3 both equal 0.6667. If a homework answer of 2/3 is marked against a key that says 84/126, both are correct; the key just was not reduced.
The same trick reduces ratios
A ratio like 12:18 simplifies exactly like the fraction 12/18: divide both sides by the GCD 6 to get 2:3. Recipe scaling, aspect ratios and map scales all use this.
โ ๏ธ Common mistakes & edge cases
Stopping after one division
Dividing 84/126 by 2 gives 42/63, which is not yet in lowest terms; 3 and then 7 still divide both parts. Either keep going until nothing divides both, or divide by the full GCD (42) once.
Dividing only the top or only the bottom
Both parts must be divided by the same number. Turning 84/126 into 2/126 or 84/3 changes the value completely. The check: the decimal must stay 0.6667 before and after.
Cancelling digits instead of factors
Crossing out matching digits (writing 16/64 as 1/4 by deleting the 6s) happens to work here because gcd(16, 64) = 16, but it is a coincidence, not a method. 12/24 is 1/2, not 1/4.
Converting to a mixed number before reducing
45/12 turned into a mixed number directly gives 3 9/12, which still needs reducing to 3 3/4. Reduce to 15/4 first and the mixed number comes out clean.
Losing the sign
-18/24 reduces to -3/4, not 3/4. Simplify the absolute values and put the sign back in front of the numerator; a negative denominator should be moved up top as well.
A denominator of zero
Anything over 0 is undefined, so it cannot be simplified. A numerator of 0 is fine: 0/126 is simply 0.
❓ Frequently asked questions
How do you simplify a fraction?
Find the greatest common divisor (GCD) of the numerator and denominator, then divide both by it. For 84/126 the GCD is 42, so 84 / 42 = 2 and 126 / 42 = 3, which gives 2/3. Dividing by the GCD in one step always lands on the simplest form; dividing by smaller common factors one at a time also works but takes more steps.
What does simplest form (lowest terms) mean?
A fraction is in simplest form, also called lowest terms or reduced form, when its numerator and denominator have no common factor other than 1. 2/3 is in simplest form because GCD(2, 3) = 1, while 84/126 is not because both parts are divisible by 42. Simplest form is unique: every fraction has exactly one.
How do I know if a fraction is already in lowest terms?
Compute the GCD of the numerator and denominator. If it is 1, the fraction is already in lowest terms. For example 17/23 has GCD 1, so it cannot be reduced. Quick checks: if one part is even and the other odd, 2 is not a common factor; if the digit sums are not both divisible by 3, 3 is not; but only the GCD gives a definite answer.
What is the GCD and why does the calculator use it?
The greatest common divisor (GCD), also called the greatest common factor (GCF), is the largest whole number that divides both the numerator and denominator exactly. Dividing by the GCD removes every shared factor at once, so the result is guaranteed to be in simplest form. The calculator finds it with the Euclidean algorithm: repeatedly replace the larger number with the remainder of dividing it by the smaller until the remainder is 0.
How do I turn an improper fraction into a mixed number?
Divide the numerator by the denominator: the quotient is the whole part and the remainder is the new numerator over the same denominator. First simplify, then convert: 45/12 reduces to 15/4, and 15 / 4 = 3 remainder 3, so 45/12 = 3 3/4 = 3.75. The calculator shows both forms whenever the numerator is larger than the denominator.
Can this calculator simplify a mixed number?
Yes. Switch to the Mixed number mode and enter the whole part, numerator and denominator. The calculator converts it to an improper fraction (whole x denominator + numerator over the denominator), reduces it, and then writes the answer back as a simplified mixed number, a lowest-terms improper fraction and a decimal.
What about negative fractions?
The sign does not affect the reduction. Simplify the absolute values and keep the sign in front: -18/24 has GCD 6, so it reduces to -3/4. A negative denominator is moved to the numerator, so 18/-24 is also -3/4, and a negative numerator over a negative denominator is positive.
How do I simplify a fraction with a decimal, like 2.5/10?
Multiply both parts by 10 for every decimal place until both are whole numbers, then reduce. 2.5/10 becomes 25/100, whose GCD is 25, giving 1/4. For a single decimal such as 0.375, write it over a power of ten (375/1000, GCD 125) and reduce to 3/8, or use the Decimal to Fraction Calculator, which does exactly that.
What is 84/126 in simplest form?
84/126 simplifies to 2/3. The Euclidean algorithm takes two steps: 126 mod 84 = 42, then 84 mod 42 = 0, so the GCD is 42. Dividing gives 84 / 42 = 2 and 126 / 42 = 3. As a decimal 2/3 is 0.6667 (repeating) and as a percent about 66.67%.
Is there a fraction that cannot be simplified?
Any fraction whose numerator and denominator are coprime (GCD = 1) is already in lowest terms and cannot be reduced further, for example 3/8, 7/9 or 17/23. Note that neither number needs to be prime: 8 and 9 are both composite, but 8/9 is still in simplest form because they share no prime factor.
What is the difference between simplifying and converting to a decimal?
Simplifying keeps the value as an exact fraction with smaller numbers: 84/126 becomes 2/3, still exactly two thirds. Converting to a decimal divides the numerator by the denominator and often introduces rounding: 2/3 = 0.6666..., which no finite decimal captures exactly. When exactness matters (recipes, measurements, algebra), keep the reduced fraction.
Why does the calculator show prime factors?
The prime factorization is a second way to see the reduction. 84 = 2 x 2 x 3 x 7 and 126 = 2 x 3 x 3 x 7; the factors they share are 2, 3 and 7, whose product 42 is the GCD. Cancelling those shared factors leaves 2 on top and 3 on the bottom. Many textbooks teach this method first, so the calculator shows it alongside the faster Euclidean algorithm.
Does simplifying change the value of a fraction?
No. Dividing numerator and denominator by the same non-zero number leaves the value unchanged, because you are multiplying the fraction by 1 in the form g/g. 84/126 and 2/3 are the same point on the number line, 0.6667; simplifying only changes how the fraction is written.
๐ Sources & method
- Reduction to lowest terms by division by the greatest common divisor, a standard result of elementary number theory (a/b = (a ÷ g)/(b ÷ g) for g = gcd(a, b)).
- Greatest common divisor computed with the Euclidean algorithm, gcd(a, b) = gcd(b, a mod b), which terminates when the remainder reaches 0.
- Prime factorizations by trial division; the GCD equals the product of the shared prime factors.
- Pure arithmetic: no external data, rates or tables are used.
Related Calculators
Fraction Calculator
Add, subtract, multiply and divide fractions
Decimal to Fraction Calculator
Convert a decimal to a simplified fraction
Mixed Number Calculator
Add, subtract, multiply and divide mixed numbers with steps
GCF Calculator
Find the greatest common factor of numbers
LCM Calculator
Find the least common multiple of numbers
Ratio Calculator
Simplify, scale and solve ratios and proportions
Equivalent Fractions Calculator
Find fractions equivalent to any fraction
Common Denominator Calculator
Least common denominator of two or more fractions