Formula
To add fractions: find the LCD of the denominators, convert both fractions to that denominator, then add the numerators and simplify. When denominators are already equal, add numerators directly.
- When denominators are the same, add numerators directly - the denominator never changes.
- When denominators differ, find the LCD first, convert both fractions to that denominator, then add the numerators.
- Never add the denominators - the denominator is a label for part size, not a count. 1/4 + 1/4 = 2/4, not 2/8.
- Always simplify by dividing numerator and denominator by their GCD. An unsimplified answer is incomplete.
- For mixed numbers, convert to improper fractions first, apply the LCD method, then convert back. This avoids carry errors when the fractional parts sum above 1.
- When denominators share no common factor (e.g. 5 and 7), their LCD equals their product - skip the GCD step and multiply directly.
How to use our fraction addition calculator
Enter the numerator and denominator of each fraction. The calculator adds them instantly, showing the result as a simplified fraction, mixed number (where applicable), decimal, and percentage - along with a three-step breakdown using the LCD method.
Adding fractions explained to a beginner
Picture fractions as pizza slices. 1/4 means one slice from a pizza cut into 4 equal pieces. Add 1/4 + 2/4 and you have 3 slices from the same pizza - straightforward, because the slice size is identical. Only the count (numerator) changes; the size of each piece (denominator) stays the same.
The harder case: 1/4 of one pizza plus 1/3 of another. The slices are different sizes, so you can't count them together yet. The LCD method finds the smallest equal slice size that works for both. For fourths and thirds, that's twelfths: 1/4 = 3/12 and 1/3 = 4/12. Now both slices are the same size and 3/12 + 4/12 = 7/12. The whole method is: find a uniform slice size, recount both fractions in that size, then add.
This also makes the most common error obvious. 1/4 + 1/3 does not equal 2/7 - you never cut either pizza into 7 pieces, so "two sevenths" doesn't describe anything real here. The denominator is a label for part size, not a number to operate on.
LCD, LCM, and GCD explained
Three terms come up repeatedly in fraction addition. Understanding what each one does - and how they relate - makes the whole method click into place rather than feeling like a list of steps to memorize.
GCD (Greatest Common Divisor)
The GCD of two numbers is the largest integer that divides both of them evenly. GCD(12, 8) = 4, because 4 is the biggest number that goes into both without a remainder. In fraction addition, GCD shows up at the end: after adding, divide numerator and denominator by their GCD to reduce the result to its simplest form.
LCM (Lowest Common Multiple)
The LCM of two numbers is the smallest positive integer that both numbers divide into evenly. LCM(4, 6) = 12, because 12 is the smallest number divisible by both 4 and 6. You can find the LCM from the GCD using the formula LCM(a, b) = (a × b) ÷ GCD(a, b). For coprime numbers (GCD = 1), the LCM is simply their product.
LCD (Lowest Common Denominator)
The LCD of two fractions is the LCM of their denominators - nothing more. For 3/4 + 1/6, LCD(4, 6) = LCM(4, 6) = 12. Converting both fractions to twelfths lets you add numerators directly. The LCD keeps numbers as small as possible, which reduces simplification work compared to using the product of the denominators.
| Term | What it finds | Used for | Example |
|---|---|---|---|
| GCD | Largest shared factor | Simplifying fractions after adding | GCD(12, 8) = 4 |
| LCM | Smallest shared multiple | Computing the LCD | LCM(4, 6) = 12 |
| LCD | LCM of the denominators | Converting fractions before adding | LCD of 3/4 and 1/6 = 12 |
Adding fractions formula
The general formula for adding two fractions multiplies each numerator by the other fraction's denominator:
$$\frac{a}{b} + \frac{c}{d} = \frac{a \times d + c \times b}{b \times d}$$
This always works, but often produces larger numbers than necessary. The preferred approach uses the LCD (Lowest Common Denominator), which keeps numbers smaller and simplification easier:
$$\frac{a}{b} + \frac{c}{d} = \frac{a \times \frac{\text{LCD}}{b} + c \times \frac{\text{LCD}}{d}}{\text{LCD}}, \quad \text{LCD} = \text{LCM}(b, d)$$
Both methods give the same final answer after simplification.
Same denominator: the simple case
When both fractions share the same denominator, no conversion is needed. Add the numerators directly and keep the denominator unchanged:
$$\frac{1}{4} + \frac{2}{4} = \frac{1 + 2}{4} = \frac{3}{4}$$
This works because the denominator defines the size of each part. If two fractions already use the same part size, you can count them together directly.
Different denominators: the LCD method
When denominators differ, you must first convert both fractions to a common denominator before the numerators can be added. The steps are:
- Find the LCD. The LCD is the LCM (Lowest Common Multiple) of the two denominators. Use prime factorisation or the formula LCM(a, b) = (a × b) ÷ GCD(a, b).
- Convert both fractions. Multiply each fraction's numerator and denominator by (LCD ÷ its denominator) so both share the LCD.
- Add numerators. The denominator stays as the LCD.
- Simplify. Divide numerator and denominator by their GCD.
Worked examples for adding fractions
Example 1: one denominator is a multiple of the other
Add 2/5 and 3/10. Since 10 is a multiple of 5, the LCD is simply 10:
$$\frac{2}{5} + \frac{3}{10}: \quad \text{LCD}(5, 10) = 10 \implies \frac{4}{10} + \frac{3}{10} = \frac{7}{10}$$
2/5 becomes 4/10, then 4/10 + 3/10 = 7/10. No simplification needed.
Example 2: unrelated denominators
Add 3/4 and 1/6. The denominators share no obvious relationship, so find LCM(4, 6):
$$\frac{3}{4} + \frac{1}{6}: \quad \text{LCD}(4, 6) = 12 \implies \frac{9}{12} + \frac{2}{12} = \frac{11}{12}$$
GCD(4, 6) = 2, so LCM = (4 × 6) ÷ 2 = 12. Convert: 3/4 → 9/12 and 1/6 → 2/12. Sum: 11/12, which is already in simplest form.
Example 3: result greater than 1
Add 3/4 and 3/4. Same denominator, so add directly: 3/4 + 3/4 = 6/4. Simplify with GCD(6, 4) = 2: 6/4 = 3/2. As a mixed number: 1½.
| Problem | LCD | After converting | Result |
|---|---|---|---|
| 1/2 + 1/3 | 6 | 3/6 + 2/6 | 5/6 |
| 1/4 + 1/4 | 4 | 1/4 + 1/4 | 2/4 = 1/2 |
| 2/3 + 1/6 | 6 | 4/6 + 1/6 | 5/6 |
| 3/5 + 2/5 | 5 | 3/5 + 2/5 | 5/5 = 1 |
| 5/6 + 3/4 | 12 | 10/12 + 9/12 | 19/12 = 1 7/12 |
| 7/8 + 5/12 | 24 | 21/24 + 10/24 | 31/24 = 1 7/24 |
The most reliable signal that someone truly understands fraction addition - rather than having memorized the steps - is whether they can explain why you cannot add the denominators.
People who know the procedure but not the concept almost always make that error under time pressure or when the format changes slightly.
The denominator isn't a number you operate on; it's a label for part size. Internalizing that distinction makes the LCD requirement feel obvious rather than arbitrary.
Adding negative fractions
A negative fraction has its numerator treated as negative. The LCD method applies identically - the sign is carried through the numerator arithmetic:
$$\frac{-1}{3} + \frac{2}{3} = \frac{-1 + 2}{3} = \frac{1}{3}$$
If both fractions are negative, the sum is negative: −1/3 + (−1/3) = −2/3. If the signs differ, the result depends on the magnitudes - exactly like integer addition.
Adding mixed numbers
A mixed number (e.g. 2⅓) combines a whole number and a proper fraction. Convert to an improper fraction before adding:
$$2\frac{1}{3} + 1\frac{3}{4} = \frac{7}{3} + \frac{7}{4} = \frac{28}{12} + \frac{21}{12} = \frac{49}{12} = 4\frac{1}{12}$$
Steps: 2⅓ = 7/3, 1¾ = 7/4. LCD(3, 4) = 12. Convert: 28/12 + 21/12 = 49/12. As a mixed number: 4 1/12.
Alternatively, add the whole-number parts separately and add the fractional parts separately, then combine - though converting to improper fractions first is generally safer and avoids carrying errors.
Common mistakes when adding fractions
Adding the denominators
The most frequent error: 1/4 + 1/4 ≠ 2/8. The denominator defines part size and does not change when parts of the same size are counted together. Only the numerators are added.
Using the product instead of the LCD
Using b × d as the common denominator always works but produces unnecessarily large numbers. For 3/4 + 1/6, using 24 instead of 12 gives 18/24 + 4/24 = 22/24, which then needs simplifying to 11/12. Starting with the LCD skips this extra step.
Forgetting to simplify
The answer is not complete until the fraction is in its simplest form (numerator and denominator share no common factor other than 1). Always divide by the GCD after adding.
Not converting mixed numbers first
Adding 1½ + 2⅔ by adding the whole parts (3) and fraction parts (1/2 + 2/3 = 7/6) separately works, but when the fraction sum exceeds 1, an extra carry step is required. Converting to improper fractions first (3/2 + 8/3 = 25/6 = 4⅙) is more reliable.
For anyone doing fraction addition by hand: when two denominators share no common factor - for example, 5 and 7, or 4 and 9 - their LCM equals their product, so there is no benefit to computing the GCD first. Just multiply and proceed.
Save the GCD step for pairs like 6 and 9 (LCM = 18, not 54) or 4 and 6 (LCM = 12, not 24), where spotting the common factor first keeps the numbers small. Recognizing coprime pairs quickly is the single biggest time-saver when adding fractions without a calculator.
FAQs about add fractions calculation
How do you add fractions with different denominators?
Find the LCD of both denominators, convert each fraction to that denominator, add the numerators, and simplify the result by dividing by the GCD.
Can you add fractions with the same denominator directly?
Yes - add the numerators and keep the denominator unchanged. 1/4 + 2/4 = 3/4. No LCD step is needed when denominators are equal.
Why can't you just add the denominators?
The denominator specifies the size of each part. Adding denominators changes the part size, producing a wrong answer. Only numerators - the count of parts - change when fractions are added.
How do you add mixed numbers?
Convert each mixed number to an improper fraction (whole × denominator + numerator, over the denominator), then add using the standard LCD method.
What is the LCD and why is it used?
The LCD (Lowest Common Denominator) is the smallest integer that both denominators divide evenly. Using it keeps numbers smaller than the product method, which reduces simplification work.
Does adding two fractions always give a result less than 1?
No. The result can be any value. 3/4 + 3/4 = 6/4 = 3/2 = 1½, which is greater than 1. The result depends entirely on the values being added.
Quiz: how well do you know adding fractions?
1. When adding 3/4 + 1/6, the LCD is 12. Which calculation produces this result?
2. What does GCD(12, 8) = 4 mean?
3. What is 2⅓ + 1¾?
4. Two denominators share no common factor - for example, 5 and 7. What is their LCD?
5. A student adds 1/4 + 1/4 and writes the answer as 2/8. What mistake did they make?