Least Common Denominator
The least common denominator (LCD) is the smallest number that is a multiple of two or more denominators, used to add or compare fractions efficiently.
Formula
\text{LCD}(b, d) = \text{LCM}(b, d) = \frac{bd}{\gcd(b, d)}
Definition
The least common denominator (LCD) is the smallest number that can be used as the bottom number for two or more fractions at the same time, the smallest common denominator you can use. Formally, the LCD of fractions $a/b$ and $c/d$ is $\text{LCM}(b, d)$, computed as $bd/\gcd(b, d)$; for three or more fractions, take the LCM of all the denominators, which can be found via prime factorization as the product of each prime raised to its maximum exponent across all denominators. This is an instance of the lattice join in the divisibility poset of positive integers: $\text{LCM}(a, b)$ is the join (least upper bound) of $a$ and $b$, while $\gcd(a, b)$ is their meet (greatest lower bound).
Example
For $1/4$ and $1/6$, listing multiples ($4, 8, 12, 16, \ldots$ and $6, 12, 18, \ldots$) shows the first shared value is $12$, so the LCD is $12$: $1/4 = 3/12$ and $1/6 = 2/12$. For $5/12$ and $7/18$: $\gcd(12, 18) = 6$, so $\text{LCM} = 12 \times 18/6 = 36$, giving $5/12 = 15/36$ and $7/18 = 14/36$. For three fractions $1/12$, $1/18$, $1/20$: since $12 = 2^2 \times 3$, $18 = 2 \times 3^2$, and $20 = 2^2 \times 5$, the LCM is $2^2 \times 3^2 \times 5 = 180$, so each converts as $1/12 = 15/180$, $1/18 = 10/180$, $1/20 = 9/180$.
Key Insight
Using the LCD (instead of just any common denominator) keeps your numbers as small and simple as possible, less work and fewer chances for mistakes. The LCD is not just for addition and subtraction, it also appears when comparing fractions: rewriting fractions over their LCD makes size comparisons trivial, since the fraction with the larger numerator is larger once the denominators match.