How this instrument works
Adding two fractions with different denominators requires rewriting both over a shared denominator first, and the least common denominator, or LCD, is specifically the smallest whole number both original denominators divide into evenly. It comes from a short identity: LCD = (d₁ × d₂) ⁄ gcd(d₁, d₂), the product of the two denominators divided by their greatest common divisor. That division step keeps the answer as small as possible — skip it and the plain product of the two denominators still works as a shared base, but the resulting sum usually needs simplifying afterward.
This sheet is deliberately narrower than the site's general LCM tool, which hunts for the smallest shared multiple of any two arbitrary whole numbers with no particular use case attached. Here the two inputs are always read as the bottom numbers of two fractions waiting to be combined, and the output is framed as the setup step that happens before the addition or subtraction itself: rewrite each fraction over the returned value, then combine the top numbers directly. The arithmetic underneath is identical, but the framing points at one specific job rather than at numbers in the abstract.
Two edge cases are worth knowing. When one denominator already divides the other evenly — 4 and 8, say — the LCD is simply the larger of the two, since the smaller one contributes nothing new. When the pair shares no common factor at all beyond 1, their greatest common divisor is 1, and the identity above collapses to a plain product: bases of 3 and 5 need a shared value of 15, and nothing smaller will do.
- Enter the bottom number of your first fraction into Fraction 1: denominator.
- Enter the bottom number of your second fraction into Fraction 2: denominator.
- Read Least common denominator — the shared base both fractions can be rewritten over.
- Rewrite each fraction with that value as its new bottom number, scaling the top to match, then add or subtract as usual.
Worked example — adding 1⁄4 and 1⁄6
Take the fractions 1⁄4 and 1⁄6, with denominators 4 and 6. Their greatest common divisor is 2, so the least common denominator is LCD = (4 × 6) ⁄ 2 = 24 ⁄ 2 = 12 — the smallest whole number both 4 and 6 divide into evenly, confirmed by 12 ⁄ 4 = 3 and 12 ⁄ 6 = 2.
Rewriting both fractions over twelfths turns 1⁄4 into 3⁄12 and 1⁄6 into 2⁄12, since 3 × 4 = 12 and 2 × 6 = 12. Combining them is now a matter of the top numbers alone: 3⁄12 + 2⁄12 = 5⁄12, already in lowest terms because 5 and 12 share no common factor beyond 1.
Questions
What is the least common denominator?
The smallest whole number that two fraction denominators both divide into evenly. It's the shared base needed to rewrite two fractions with matching bottoms before their top numbers can be added or subtracted directly, and it comes from LCD = (d₁ × d₂) ⁄ gcd(d₁, d₂).
How is the LCD different from the LCM?
For two fraction denominators, they land on the same number found through the same identity — the LCD is the LCM viewed specifically as the shared base for combining fractions, rather than as an abstract shared multiple of two arbitrary numbers. This sheet treats the two inputs as denominators and frames the result as a setup step for addition, while the site's general LCM tool makes no assumption about what the numbers represent.
Why not just multiply the two denominators together?
Because that plain product is only sometimes the smallest shared base. Multiplying 4 and 6 gives 24, a valid common denominator, but the resulting fraction sum would need reducing afterward since 24 is twice the actual LCD of 12. Dividing the product by the greatest common divisor removes exactly that redundant factor.
What happens when the two denominators share no common factor?
The LCD becomes their plain product, since their greatest common divisor is 1. Bases of 3 and 5, for instance, need a shared value of 15 — nothing smaller is divisible by both, because coprime numbers have no smaller shared multiple to fall back on.
Does the order of the two denominators matter?
No — the formula is symmetric, so entering 6 as Fraction 1's denominator and 4 as Fraction 2's returns the same 12 as the reverse order. Multiplication and the greatest common divisor both ignore which number is listed first, so the result never depends on the order you type them in.