What it means for a fraction to be in lowest terms
A fraction is in lowest terms when the only whole number that divides both the top and the bottom is 1. The fraction 84/126 is not: both numbers are even, both are divisible by 3, and both are divisible by 7. The fraction 2/3 is, and it names exactly the same quantity.
The reason you are allowed to cancel is that multiplying or dividing both parts of a fraction by the same non-zero number is the same as multiplying by 1. Going from 84/126 to 2/3 divides both by 42, which is dividing by 42/42 — and 42/42 is 1. Nothing about the value changes; only the way you have written it does.
Lowest terms matter for three practical reasons. Reduced fractions are far easier to compare: you can see at a glance that 2/3 is bigger than 3/5, but 84/126 against 3/5 takes work. They keep later arithmetic small, so adding fractions with the adding and subtracting fractions calculator produces manageable denominators instead of six-digit ones. And almost every marking scheme in school mathematics expects the simplest form, so an unreduced answer loses marks even when the value is right.
The greatest common divisor and Euclid's algorithm
To reduce a fraction in one move you need the greatest common divisor of the numerator and denominator — the largest whole number that divides both exactly. Divide by anything smaller and you will have to reduce again; divide by the greatest one and you are finished.
You can find it by listing prime factors: 84 = 2 × 2 × 3 × 7 and 126 = 2 × 3 × 3 × 7, so the shared factors are 2, 3 and 7, and their product 42 is the GCD. That works, but factoring gets slow for large numbers, and it is not what a computer does.
The efficient method is 2,300 years old. Euclid's Elements, Book VII, Propositions 1 and 2, gives the algorithm: divide the larger number by the smaller, keep the remainder, then repeat with the smaller number and that remainder. When the remainder reaches zero, the last non-zero remainder is the GCD. It works because any number dividing both x and y also divides x − qy, so every step preserves the full set of common divisors while shrinking the numbers fast.
For 84 and 126: 126 = 1 × 84 + 42, then 84 = 2 × 42 + 0. The remainder is zero, so the GCD is 42. Two lines, no factoring. The calculator prints these lines under the result, and the greatest common factor calculator runs the same algorithm on any pair of numbers on its own.
Worked example: reducing 1071/462 by hand
This pair is the example Euclid's algorithm is usually taught with, because prime-factoring both numbers is genuinely tedious and the algorithm finishes in three lines.
- Divide the larger by the smaller. 1071 ÷ 462 = 2 remainder 147, because 2 × 462 = 924 and 1071 − 924 = 147. Write it as 1071 = 2 × 462 + 147.
- Repeat with 462 and 147. 462 ÷ 147 = 3 remainder 21, because 3 × 147 = 441 and 462 − 441 = 21. So 462 = 3 × 147 + 21.
- Repeat with 147 and 21. 147 ÷ 21 = 7 remainder 0, because 7 × 21 = 147 exactly. So 147 = 7 × 21 + 0.
- Read off the GCD. The remainder has hit zero, so the last non-zero remainder, 21, is the greatest common divisor.
- Divide both terms. 1071 ÷ 21 = 51 and 462 ÷ 21 = 22, giving 51/22.
- Check it is finished. 22 = 2 × 11 and 51 = 3 × 17. No shared factor, so 51/22 is in lowest terms.
- Convert to a mixed number. 22 goes into 51 twice with 7 left over, so 51/22 = 2 7/22. As a decimal, 51 ÷ 22 = 2.318182 to six places.
Compare that with prime factorisation: you would need 1071 = 3 × 357 = 3 × 3 × 119 = 3 × 3 × 7 × 17 and 462 = 2 × 3 × 7 × 11, then intersect the lists to get 3 × 7 = 21. Same answer, considerably more work — and much more room for an arithmetic slip.
Reading the result: proper, improper and mixed forms
Once a fraction is reduced, its shape tells you where the value sits. If the numerator is smaller than the denominator the fraction is proper and the value is between 0 and 1. If the numerator is larger the fraction is improper and the value is more than 1, so the calculator also shows the mixed-number form. If the reduced denominator is 1, the fraction was a whole number all along: 45/9 reduces to 5.
Improper and mixed forms are equally correct, and which one you want depends on the task. Mixed numbers read better in everyday contexts — 2 7/22 of a tank is easier to picture than 51/22. Improper fractions are far easier to compute with, because you can multiply and divide them directly; converting a mixed number back before doing algebra is a standard first step, and the mixed number to improper fraction calculator does it in one move.
The sign is worth a note. −8/12, 8/−12 and −(8/12) are all the same number, and the conventional written form puts the single minus sign on the numerator or in front of the whole fraction. This calculator normalises to that form, so a negative denominator you type will come back with the sign moved up.
Whether the decimal terminates or repeats is decided entirely by the reduced denominator. A denominator whose only prime factors are 2 and 5 gives a terminating decimal; any other prime factor gives a repeating one. That is why 3/8 = 0.375 stops and 2/3 = 0.6666… does not — and why you must reduce before applying the test, since 6/16 looks like it has a factor of 2 too many until you cancel it. The fraction to decimal calculator shows the repeating block explicitly.
Common fractions in lowest terms, with decimal and percent
| As often written | GCD | Lowest terms | Decimal | Percent |
|---|---|---|---|---|
| 2/4 | 2 | 1/2 | 0.5 | 50% |
| 25/100 | 25 | 1/4 | 0.25 | 25% |
| 6/8 | 2 | 3/4 | 0.75 | 75% |
| 10/15 | 5 | 2/3 | 0.666667 | 66.6667% |
| 4/12 | 4 | 1/3 | 0.333333 | 33.3333% |
| 6/16 | 2 | 3/8 | 0.375 | 37.5% |
| 15/25 | 5 | 3/5 | 0.6 | 60% |
| 14/16 | 2 | 7/8 | 0.875 | 87.5% |
| 9/12 | 3 | 3/4 | 0.75 | 75% |
| 84/126 | 42 | 2/3 | 0.666667 | 66.6667% |
| 1071/462 | 21 | 51/22 | 2.318182 | 231.8182% |
Decimals are shown to six places. The denominators 2, 4, 8, 16, 5 and 25 terminate because their only prime factors are 2 and 5; those with a factor of 3, 11 or 22 repeat.
Where reducing goes wrong
- Stopping after one cancellation. Dividing 84/126 by 2 gives 42/63, which still cancels by 21. Divide by the greatest common divisor and you are finished in one step.
- Cancelling across an addition. In (4 + 6)/8 you may not cancel the 4 with the 8. Cancelling is only valid on factors of the whole numerator and denominator, so add first: 10/8 = 5/4.
- Cancelling a term inside a sum in algebra. (x + 3)/3 is not x + 1 and not x. Only a common factor of the entire top and bottom can go.
- Assuming a bigger denominator means a bigger fraction. 2/3 is larger than 3/5 even though 5 exceeds 3. Compare the reduced decimals, or cross-multiply: 2 × 5 = 10 against 3 × 3 = 9.
- Reducing a ratio the wrong way. A ratio 84 : 126 reduces to 2 : 3 by the same GCD, but a ratio is not a fraction of the whole — 2 : 3 means two parts in five. Use the simplify ratio calculator when the context is parts of a total.
- Leaving a negative sign on the denominator. Write −2/3, not 2/−3. Both are the same value but only one is standard form.
- Rounding the decimal and calling it the answer. 0.67 is not 2/3, and substituting it into further work introduces error that grows. Stay in fractions until the end.
Why the algorithm matters beyond homework
Reducing a fraction looks like a schoolroom chore, but the GCD sits underneath a surprising amount of working mathematics. Every exact-rational arithmetic library — the kind used in computer algebra systems and in financial code that cannot tolerate binary rounding — reduces after every operation, precisely so that numerators and denominators do not grow without bound. The Euclidean algorithm is what they call, because it runs in a number of steps proportional to the number of digits rather than to the size of the numbers.
The same algorithm, extended slightly, computes modular inverses and therefore underpins RSA key generation. Its running time was the subject of one of the first formal analyses of an algorithm, in Knuth's The Art of Computer Programming, Volume 2. Very little that is 2,300 years old is still the best available method.
Two neighbouring tools finish the picture. The prime factorization calculator gives the factor lists behind the GCD when you want to see why a particular divisor is the greatest. The least common multiple calculator gives the other half of fraction arithmetic: the GCD tells you how far a fraction reduces, while the LCM tells you what denominator two fractions must share before you can add them. They are linked exactly, by gcd(a, b) × lcm(a, b) = a × b.
Key terms
- Lowest terms
- A fraction whose numerator and denominator share no common factor except 1. Also called simplest form or reduced form.
- Greatest common divisor (GCD)
- The largest whole number that divides two integers exactly. Also called the greatest common factor or highest common factor.
- Equivalent fractions
- Different-looking fractions with the same value, obtained by multiplying or dividing the numerator and denominator by the same non-zero number.
- Proper fraction
- A fraction whose numerator is smaller than its denominator, so its value lies strictly between −1 and 1.
- Improper fraction
- A fraction whose numerator is at least as large as its denominator, so its magnitude is 1 or more. Perfectly valid, and easier to compute with than a mixed number.
- Mixed number
- A whole number written next to a proper fraction, such as 2 7/22, meaning the whole plus the fraction.
