Math graphic
📐 Concept diagram

05-07 - Partial Fractions Integration

Phase: 5 | Subject: 05-07 Prerequisites: 05-04-integration-by-substitution.md, 03-04-rational-functions.md Next subject: 05-08-improper-integrals.md


Learning Objectives

By the end of this subject, you will be able to:

  1. Decompose proper rational functions into partial fractions
  2. Handle linear factors (distinct and repeated)
  3. Handle irreducible quadratic factors
  4. Integrate rational functions using partial fractions

Core Content

Why Partial Fractions?

Many rational functions don't have elementary antiderivatives in their original form, but AFTER decomposition, each term does.

Example: ∫1/(x² - 1)dx = ∫[1/(2(x-1)) - 1/(2(x+1))]dx = (1/2)ln|x - 1| - (1/2)ln|x + 1| + C = (1/2)ln|(x - 1)/(x + 1)| + C

Decomposition Rules

Linear Factors (Distinct)

For each factor (x - a): term is A/(x - a)

Example: 1/((x - 1)(x + 2)) = A/(x - 1) + B/(x + 2)

Repeated Linear Factors

For (x - a)ⁿ: terms are A₁/(x - a) + A₂/(x - a)² + ... + Aₙ/(x - a)ⁿ

Example: 1/((x - 1)²(x + 2)) = A/(x - 1) + B/(x - 1)² + C/(x + 2)

Irreducible Quadratic Factors

For (ax² + bx + c) where b² - 4ac < 0: term is (Ax + B)/(ax² + bx + c)

Example: 1/((x - 1)(x² + 1)) = A/(x - 1) + (Bx + C)/(x² + 1)

Finding Coefficients

Multiply through by the denominator, then: - Plug in roots of the denominator (for linear factors) - Equate coefficients (for remaining unknowns)



Key Terms

Worked Examples

Example 1: Distinct linear factors

Decompose 1/((x - 1)(x + 3))

1 = A(x + 3) + B(x - 1) x = 1: 1 = 4A, A = 1/4 x = -3: 1 = -4B, B = -1/4

Result: 1/(4(x - 1)) - 1/(4(x + 3))

Integral: (1/4)ln|x - 1| - (1/4)ln|x + 3| + C

Example 2: Repeated factors

Decompose 1/((x - 2)²(x + 1))

1 = A(x - 2)(x + 1) + B(x + 1) + C(x - 2)² x = 2: 1 = 3B, B = 1/3 x = -1: 1 = 9C, C = 1/9

Expand and compare coefficients for A: 1 = A(x² - x - 2) + (1/3)(x + 1) + (1/9)(x² - 4x + 4) Collect x²: 0 = A + 1/9, so A = -1/9

Example 3: Quadratic factor

Decompose 1/((x + 1)(x² + 1))

1 = A(x² + 1) + (Bx + C)(x + 1) x = -1: 1 = 2A, A = 1/2 Compare x²: 0 = A + B, so B = -1/2 Compare constants: 1 = A + C, so C = 1/2

Result: 1/(2(x + 1)) + (-x/2 + 1/2)/(x² + 1)


Practice Problems

Problem 1: Decompose 1/(x(x + 2))

Answer A/x + B/(x+2). 1 = A(x+2) + Bx. x=0: A=1/2. x=-2: B=1/2. Result: 1/(2x) + 1/(2(x+2)).

Problem 2: ∫1/(x² - 9)dx

Answer Factor: (x-3)(x+3). Decompose: 1/(6(x-3)) - 1/(6(x+3)). Integral: (1/6)ln|(x-3)/(x+3)| + C.

Problem 3: ∫1/((x+1)²)dx

Answer -1/(x+1) + C.

Problem 4: ∫(2x+1)/(x²+x-6)dx

Answer Factor denominator: (x+3)(x−2). Decompose: 1/(x−2) + 1/(x+3). Integral: ln|x−2| + ln|x+3| + C = ln|(x−2)(x+3)| + C.

Problem 5: ∫(x³+1)/(x²−1)dx

Answer Perform polynomial division: (x³+1)/(x²−1) = x + (x+1)/(x²−1) = x + A/(x−1) + B/(x+1). Decompose: x + 1/(x−1). Integral: x²/2 + ln|x−1| + C.

Summary

Key takeaways:


Pitfalls


Quiz

Q1: The partial fraction decomposition of 1/((x-1)(x+2)) is:

A) 1/(x-1) + 1/(x+2) B) 1/(3(x-1)) - 1/(3(x+2)) C) 1/(x-1) - 1/(x+2) D) 1/(3(x-1)) + 1/(3(x+2))

Answer and Explanations **Correct: B)** - If you chose B: 1 = A(x+2) + B(x-1). x=1: A=1/3. x=-2: B=-1/3. Correct! - If you chose A: Check: 1/(x-1) + 1/(x+2) = (2x+1)/((x-1)(x+2)) ≠ 1/((x-1)(x+2)). - If you chose C: Check: 1/(x-1) - 1/(x+2) = 3/((x-1)(x+2)). Off by factor of 3. - If you chose D: B has the wrong sign.

Q2: For 1/((x-1)²), the decomposition is:

A) 1/(x-1) B) 1/(x-1)² C) A/(x-1) + B/(x-1)² D) A/(x-1)² + B/(x-1)

Answer and Explanations **Correct: C)** - If you chose C: Repeated factor (x-1)² needs TWO terms: A/(x-1) + B/(x-1)². Correct! - If you chose A: That's only one term. Repeated factors need multiple terms. - If you chose B: This is the original form, not a decomposition. - If you chose D: Same as C, just reordered. Both are correct in principle, but C is the standard order.

Q3: ∫1/(x² + 1)dx equals:

A) ln|x² + 1| + C B) arctan(x) + C C) (1/2)ln|x² + 1| + C D) 1/x + C

Answer and Explanations **Correct: B)** - If you chose B: 1/(x²+1) is the derivative of arctan(x). Correct! - If you chose A: Derivative of ln|x²+1| = 2x/(x²+1). Missing the x in numerator. - If you chose C: Same issue as A — missing x factor. - If you chose D: That's the derivative of ln|x|, not arctan(x).

Q4: ∫1/(x² - 4)dx equals:

A) ln|x² - 4| + C B) (1/4)ln|(x-2)/(x+2)| + C C) (1/2)ln|(x-2)/(x+2)| + C D) arctan(x/2) + C

Answer and Explanations **Correct: B)** - If you chose B: 1/((x-2)(x+2)) = 1/(4(x-2)) - 1/(4(x+2)). Integral = (1/4)ln|x-2| - (1/4)ln|x+2| + C = (1/4)ln|(x-2)/(x+2)| + C. Correct! - If you chose A: Missing the decomposition and the factor 1/4. - If you chose C: You used 1/2 instead of 1/4. Check: A = 1/4, B = -1/4. - If you chose D: arctan arises from 1/(x²+a²), not 1/(x²-a²).

Q5: When the denominator has an irreducible quadratic factor x² + 1, the partial fraction term is:

A) A/(x² + 1) B) A/(x² + 1)² C) (Ax + B)/(x² + 1) D) A·x + B

Answer and Explanations **Correct: C)** - If you chose C: For irreducible quadratics, the numerator must be LINEAR: (Ax + B)/(x² + 1). Correct! - If you chose A: A constant numerator is insufficient for irreducible quadratics. - If you chose B: That would be for a repeated quadratic factor (x²+1)². - If you chose D: That's just a polynomial, not a partial fraction.

Next Steps

Next up: 05-08-improper-integrals.md