Partial Fraction Revision Notes BTER Polytechnic Classes

 

Partial Fractions: Detailed Notes

Partial fraction decomposition is an essential technique in algebra, especially in integral calculus, differential equations, and control systems. It simplifies complex rational expressions into simpler fractions, which are easier to work with, particularly when integrating or differentiating.


4.1 Definition of Polynomial Fraction, Proper & Improper Fractions

A polynomial fraction is a rational expression of the form:

P(x)Q(x)\frac{P(x)}{Q(x)}

Where P(x)P(x) and Q(x)Q(x) are polynomials.

Proper Fraction:

A proper fraction is a fraction where the degree of the numerator polynomial P(x)P(x) is less than the degree of the denominator polynomial Q(x)Q(x). Mathematically, this means:

Degree of P(x)<Degree of Q(x)\text{Degree of } P(x) < \text{Degree of } Q(x)

Example:

x+2x2+1(Degree of numerator is 1, and degree of denominator is 2)\frac{x+2}{x^2 + 1} \quad (\text{Degree of numerator is 1, and degree of denominator is 2})

Improper Fraction:

An improper fraction is a fraction where the degree of the numerator polynomial P(x)P(x) is greater than or equal to the degree of the denominator polynomial Q(x)Q(x). Mathematically, this means:

Degree of P(x)Degree of Q(x)\text{Degree of } P(x) \geq \text{Degree of } Q(x)

Example:

x2+1x+1(Degree of numerator is 2, and degree of denominator is 1)\frac{x^2 + 1}{x + 1} \quad (\text{Degree of numerator is 2, and degree of denominator is 1})

To handle improper fractions, we first perform polynomial division to express the improper fraction as a sum of a polynomial and a proper fraction. The proper fraction can then be decomposed into partial fractions.


4.2 Definition of Partial Fractions

Partial fractions are a way of breaking down a rational function (fraction of polynomials) into a sum of simpler fractions. The goal is to decompose a rational function into a sum of fractions where the denominators are simpler polynomials, typically linear or quadratic factors.

For example, the fraction P(x)Q(x)\frac{P(x)}{Q(x)} is broken into several simpler fractions that have linear or quadratic denominators, making it easier to integrate or differentiate.


4.3 To Resolve Proper Fraction into Partial Fraction with Denominator Containing Non-Repeated Linear Factors

When the denominator contains distinct linear factors, the proper fraction can be expressed as a sum of simpler fractions where each fraction has a denominator corresponding to one of the linear factors.

Steps for Decomposition:

  1. Factor the denominator: Write the denominator Q(x)Q(x) as a product of distinct linear factors. For example, if Q(x)=(xa)(xb)Q(x) = (x - a)(x - b), the denominator is a product of two distinct linear factors.

  2. Set up the partial fraction decomposition: For each distinct linear factor (xa)(x - a), assign a constant Axa\frac{A}{x - a}. Do the same for each distinct factor in the denominator. For example:

    P(x)(xa)(xb)=Axa+Bxb\frac{P(x)}{(x - a)(x - b)} = \frac{A}{x - a} + \frac{B}{x - b}
  3. Solve for the constants AA and BB by multiplying both sides of the equation by the common denominator (xa)(xb)(x - a)(x - b), then equating the coefficients of like powers of xx.

Example:

Decompose 3x+5(x1)(x+2)\frac{3x + 5}{(x - 1)(x + 2)}:

Step 1: Set up the decomposition:

3x+5(x1)(x+2)=Ax1+Bx+2\frac{3x + 5}{(x - 1)(x + 2)} = \frac{A}{x - 1} + \frac{B}{x + 2}

Step 2: Multiply through by (x1)(x+2)(x - 1)(x + 2) to eliminate the denominators:

3x+5=A(x+2)+B(x1)3x + 5 = A(x + 2) + B(x - 1)

Step 3: Expand both sides:

3x+5=A(x)+2A+B(x)B3x + 5 = A(x) + 2A + B(x) - B 3x+5=(A+B)x+(2AB)3x + 5 = (A + B)x + (2A - B)

Step 4: Equate the coefficients of like powers of xx:

  • For xx: A+B=3A + B = 3
  • For constant term: 2AB=52A - B = 5

Step 5: Solve the system of equations:

A+B=3A + B = 3 2AB=52A - B = 5

Solving this system, we get:

A=2,B=1A = 2, \quad B = 1

Thus, the partial fraction decomposition is:

3x+5(x1)(x+2)=2x1+1x+2\frac{3x + 5}{(x - 1)(x + 2)} = \frac{2}{x - 1} + \frac{1}{x + 2}

4.4 To Resolve Proper Fraction into Partial Fraction with Denominator Containing Repeated Linear Factors

When the denominator contains repeated linear factors, we set up a slightly different form for the partial fraction decomposition.

Steps for Decomposition:

  1. Factor the denominator: Write the denominator Q(x)Q(x) as a product of repeated linear factors. For example, if Q(x)=(xa)2(xb)Q(x) = (x - a)^2(x - b), the denominator has a repeated linear factor (xa)2(x - a)^2.

  2. Set up the partial fraction decomposition: For each repeated linear factor (xa)n(x - a)^n, assign a constant for each power of (xa)(x - a). The general form is:

    P(x)(xa)n=A1xa+A2(xa)2++An(xa)n\frac{P(x)}{(x - a)^n} = \frac{A_1}{x - a} + \frac{A_2}{(x - a)^2} + \cdots + \frac{A_n}{(x - a)^n}

    For example, if Q(x)=(x1)2(x+2)Q(x) = (x - 1)^2(x + 2), then:

    P(x)(x1)2(x+2)=Ax1+B(x1)2+Cx+2\frac{P(x)}{(x - 1)^2(x + 2)} = \frac{A}{x - 1} + \frac{B}{(x - 1)^2} + \frac{C}{x + 2}
  3. Solve for the constants A,B,C,A, B, C, \dots by multiplying both sides by the common denominator (x1)2(x+2)(x - 1)^2(x + 2) and then equating the coefficients of like powers of xx.

Example:

Decompose x+1(x1)2(x+2)\frac{x + 1}{(x - 1)^2(x + 2)}:

Step 1: Set up the decomposition:

x+1(x1)2(x+2)=Ax1+B(x1)2+Cx+2\frac{x + 1}{(x - 1)^2(x + 2)} = \frac{A}{x - 1} + \frac{B}{(x - 1)^2} + \frac{C}{x + 2}

Step 2: Multiply through by (x1)2(x+2)(x - 1)^2(x + 2):

x+1=A(x1)(x+2)+B(x+2)+C(x1)2x + 1 = A(x - 1)(x + 2) + B(x + 2) + C(x - 1)^2

Step 3: Expand both sides:

x+1=A(x2+x2)+B(x+2)+C(x22x+1)x + 1 = A(x^2 + x - 2) + B(x + 2) + C(x^2 - 2x + 1) x+1=A(x2+x2)+B(x+2)+C(x22x+1)x + 1 = A(x^2 + x - 2) + B(x + 2) + C(x^2 - 2x + 1)

Step 4: Combine like terms, and solve for AA, BB, and CC.


Summary of Key Points:

  1. Proper Fraction: Degree of numerator < Degree of denominator.
  2. Improper Fraction: Degree of numerator ≥ Degree of denominator.
  3. Partial Fraction Decomposition:
    • If the denominator has distinct linear factors: Axa+Bxb\frac{A}{x - a} + \frac{B}{x - b}
    • If the denominator has repeated linear factors: Axa+B(xa)2+\frac{A}{x - a} + \frac{B}{(x - a)^2} + \cdots
  4. Steps:
    • Factor the denominator.
    • Set up partial fractions with undetermined constants.
    • Multiply by the common denominator and equate the coefficients of like powers of xx.
    • Solve for the constants.

These methods of decomposition are essential in solving complex rational expressions, particularly when integrating or simplifying expressions in calculus and differential equations.

Post a Comment

0 Comments