How do you integrate int (x^2 - 8x + 44) / ((x + 2) (x - 2)^2)x28x+44(x+2)(x2)2 using partial fractions?

1 Answer
Jul 11, 2017

I decomposed integrand into basic fractions,

(x^2-8x+44)/((x+2)*(x-2)^2)=A/(x+2)+B/(x-2)+C/(x-2)^2x28x+44(x+2)(x2)2=Ax+2+Bx2+C(x2)2

(x^2-8x+44)=A*(x-2)^2+B*(x^2-4)+C*(x+2)(x28x+44)=A(x2)2+B(x24)+C(x+2)

(x^2-8x+44)=A*(x^2-4x+4)+B*(x^2-4)+C*(x+2)(x28x+44)=A(x24x+4)+B(x24)+C(x+2)

(x^2-8x+44)=(A+B)*x^2+(-4A+C)*x+(4A-4B+2C)(x28x+44)=(A+B)x2+(4A+C)x+(4A4B+2C)

After equating coefficients, I found A+B=1A+B=1, -4A+C=-84A+C=8 and 4A-4B+2C=444A4B+2C=44 equations,

After solving system of them simultaneously, I found;

A=4, B=-3A=4,B=3 and C=8C=8.

Thus,

int(x^2-8x+44)/((x+2)*(x-2)^2)dxx28x+44(x+2)(x2)2dx

=int4(dx)/(x+2)-int3(dx)/(x-2)+int8(dx)/(x-2)^24dxx+23dxx2+8dx(x2)2

=4Ln(|x+2|)-3Ln(|x-2|)-8/(x-2)+C4ln(|x+2|)3ln(|x2|)8x2+C

Explanation:

I decomposed integrand into basic fractions.