Definition and Purpose

Concept

Partial fraction decomposition expresses a rational function as a sum of simpler fractions. Purpose: simplifies integration and algebraic manipulation of complex rational expressions.

Historical Context

Originated in 17th-century algebra. Used extensively in calculus for integrating rational functions. Essential in Laplace transforms and differential equations.

Mathematical Significance

Enables breaking down complex rational expressions into elementary components. Facilitates analytic solutions and problem-solving in calculus and beyond.

"Partial fraction decomposition transforms complexity into simplicity, allowing integration and analysis of rational functions." -- G.H. Hardy

Rational Functions

Definition

Function expressed as ratio of two polynomials: R(x) = P(x)/Q(x), where P and Q are polynomials, Q(x) ≠ 0.

Degree Considerations

Degree(P) = highest power in numerator polynomial. Degree(Q) = highest power in denominator polynomial. Determines decomposition approach.

Examples

Examples: (x^2+3x+2)/(x^3-x), (2x+1)/(x^2+1), (x^3+5)/(x^2-4).

Proper vs. Improper Fractions

Proper Fractions

Definition: Degree(P) < Degree(Q). Directly decomposable into partial fractions without division.

Improper Fractions

Definition: Degree(P) ≥ Degree(Q). Must perform polynomial division first to reduce to proper fraction plus polynomial.

Example

Improper: (x^3 + 2x + 1)/(x^2 + 1) → divide to get quotient and remainder for decomposition.

Polynomial Division

Purpose

Reduce improper rational function to proper fraction. Essential preliminary step in partial fraction decomposition.

Long Division Algorithm

Divide numerator by denominator polynomial, obtain quotient Q(x) and remainder R(x). Then R(x)/Q(x) is proper fraction.

Example

Given: (x^3 + 2x + 1) / (x^2 + 1)Divide x^3 by x^2 → xMultiply: x(x^2 + 1) = x^3 + xSubtract: (x^3 + 2x + 1) - (x^3 + x) = (x + 1)Result: Quotient = x, Remainder = x + 1

Factorization of Denominators

Importance

Denominator factorization into irreducible polynomials guides decomposition form. Linear and quadratic factors treated differently.

Types of Factors

Linear (ax + b), repeated linear (ax + b)^n, irreducible quadratic (ax^2 + bx + c, discriminant < 0), repeated quadratic factors.

Techniques

Factor by trial, synthetic division, quadratic formula, or polynomial factorization algorithms.

Forms of Partial Fraction Decomposition

Distinct Linear Factors

Decompose into sum of fractions with denominators as linear factors. Form: A/(ax + b) + ...

Repeated Linear Factors

Include terms for each power up to repetition: A1/(ax + b) + A2/(ax + b)^2 + ...

Irreducible Quadratic Factors

Numerator is linear: (Ax + B)/(quadratic factor). For repeated quadratics, terms for each power included.

General form examples:Distinct linear:P(x)/[(x - r1)(x - r2)] = A/(x - r1) + B/(x - r2)Repeated linear:P(x)/[(x - r)^n] = A1/(x - r) + A2/(x - r)^2 + ... + An/(x - r)^nIrreducible quadratic:P(x)/[(x^2 + px + q)] = (Ax + B)/(x^2 + px + q) 

Finding Coefficients

Method 1: Equating Coefficients

Multiply both sides by denominator, expand, equate coefficients of corresponding powers of x, solve linear system for unknowns.

Method 2: Substitution of Convenient x-values

Choose x-values that zero factors to isolate coefficients directly, especially for linear factors.

Method 3: Heaviside Cover-Up

Quick for distinct linear factors: cover denominator factor, substitute root to find coefficient.

MethodUse CaseAdvantages
Equating CoefficientsAll casesSystematic, universal
SubstitutionSimple rootsSimple, reduces equations
Heaviside Cover-UpDistinct linearFast, minimal algebra

Applications in Integration

General Approach

Decompose integrand into partial fractions, integrate term-by-term using standard integral formulas.

Types of Integral Results

Logarithmic integrals for linear denominators: ∫(1/(x - a)) dx = ln|x - a| + C. Arctangent integrals for irreducible quadratics.

Improper Fractions

Divide first, integrate polynomial and then partial fractions of remainder.

Example Formula

∫ (P(x)/Q(x)) dx = ∫ Q(x)*quotient/Q(x) dx + ∫ (remainder)/Q(x) dx= ∫ quotient dx + ∑ ∫ partial fractions dx 

Worked Examples

Example 1: Distinct Linear Factors

Integrate ∫ (3x + 5)/[(x - 1)(x + 2)] dx.

Decompose:

(3x + 5)/[(x - 1)(x + 2)] = A/(x - 1) + B/(x + 2)Multiply both sides by denominator:3x + 5 = A(x + 2) + B(x - 1)Set x = 1:3(1) + 5 = A(3) + B(0) → 8 = 3A → A = 8/3Set x = -2:3(-2) + 5 = A(0) + B(-3) → -6 + 5 = -3B → -1 = -3B → B = 1/3 

Integrate:

∫ (3x + 5)/[(x - 1)(x + 2)] dx = ∫ (8/3)/(x - 1) dx + ∫ (1/3)/(x + 2) dx= (8/3) ln|x - 1| + (1/3) ln|x + 2| + C 

Example 2: Repeated Linear Factor

Decompose (2x + 3)/(x - 1)^2.

(2x + 3)/(x - 1)^2 = A/(x - 1) + B/(x - 1)^2Multiply:2x + 3 = A(x - 1) + BSet x = 1:2(1) + 3 = A(0) + B → 5 = BDifferentiate both sides w.r.t x or substitute another x:Choose x = 0:2(0) + 3 = A(-1) + 5 → 3 = -A + 5 → A = 2 

Example 3: Irreducible Quadratic Factor

Decompose (x^2 + 3)/(x(x^2 + 1)).

(x^2 + 3)/[x(x^2 + 1)] = A/x + (Bx + C)/(x^2 + 1)Multiply:x^2 + 3 = A(x^2 + 1) + (Bx + C)(x)Expand right:= A x^2 + A + B x^2 + C xGroup terms:x^2 + 3 = (A + B) x^2 + C x + AEquate coefficients:x^2: 1 = A + Bx: 0 = Cconstant: 3 = ASolve:A = 3C = 0B = 1 - A = 1 - 3 = -2 

Limitations and Extensions

Non-Rational Functions

Partial fractions apply only to rational functions. Non-rational integrals require other methods.

High-Degree Polynomials

Decomposition becomes algebraically intensive. Computational tools recommended for complex cases.

Multivariate Extensions

Partial fraction decomposition can extend to multivariate rational functions but requires advanced algebraic geometry.

Summary Tables

Denominator Factor TypePartial Fraction FormNumerator Degree
Distinct Linear (ax + b)A/(ax + b)0 (constant)
Repeated Linear (ax + b)^nΣ (A_k)/(ax + b)^k, k=1..n0 (constant)
Irreducible Quadratic (ax^2 + bx + c)(Ax + B)/(ax^2 + bx + c)1 (linear)
Repeated Quadratic (ax^2 + bx + c)^mΣ (A_k x + B_k)/(ax^2 + bx + c)^k, k=1..m1 (linear)
Integral TypeGeneral ResultComments
∫ 1/(x - a) dxln|x - a| + CLogarithmic integral
∫ 1/(x - a)^n dx, n ≠ 1-(x - a)^(1-n)/(n-1) + CPower rule application
∫ (Ax + B)/(x^2 + px + q) dxCombination of ln and arctan formsDepends on discriminant
∫ 1/(x^2 + a^2) dx(1/a) arctan(x/a) + CInverse tangent integral

References

  • Stewart, J. "Calculus: Early Transcendentals." Thomson Brooks/Cole, 8th ed., 2015, pp. 555-580.
  • Apostol, T.M. "Calculus, Vol. 1." Wiley, 2nd ed., 1967, pp. 210-230.
  • Spivak, M. "Calculus." Publish or Perish, 3rd ed., 1994, pp. 320-345.
  • Thomas, G.B., Weir, M.D. "Thomas’ Calculus." Pearson, 13th ed., 2016, pp. 621-645.
  • Larson, R., Edwards, B.H. "Calculus." Cengage Learning, 10th ed., 2013, pp. 470-495.