Integration using partial fractions

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 2K views
JOhnJDC
Messages
35
Reaction score
0

Homework Statement



[tex]\int[/tex](3x3-4x2-3x+2)/(x4-x2)

Homework Equations



P(x)/Q(x)=A1/(x-r1)+A2/(x-r2)+...

if x-r occurs with multiplicity m, then A/(x-r) must be replaced by a sum of the form:
B1/(x-r)+B2/(x-r)2+...

I think this second equation is the source of my confusion.

The Attempt at a Solution



I began by factoring the denominator:
x4-x2 = x2(x+1)(x-1)

So, according to my book, we have the following constants:
A/x + B/x2 + C/(x+1) + D/(x-1)

First question: where did the x come from in the constant A/x? Does this follow from the rule above? That is, because x2 has multiplicity 2, I get A/x and B/x2?

Next, according to my book, when you clear the fractions, you should get:
Ax(x+1)(x-1) + B(x+1)(x-1) + Cx2(x-1) + Dx2(x+1)

I don't understand this. Why isn't it Ax2(x+1)(x-1) + Bx(x+1)(x-1) + Cx3(x-1) + Dx3(x+1)?

Can someone explain? Many thanks.
 
on Phys.org
you multiply everything by the original denominator to get the original fraction

try multiplying out below and it should all become clear ;)
[tex]\frac{(\frac{A}{x} + \frac{B}{x^2} + \frac{C}{x+1} + \frac{D}{x-1})(x^2(x+1)(x-1))<br /> }{x^(x+1)(x-1)<br /> }[/tex]
 
Last edited:
JOhnJDC said:

Homework Statement



[tex]\int[/tex](3x3-4x2-3x+2)/(x4-x2)

Homework Equations



P(x)/Q(x)=A1/(x-r1)+A2/(x-r2)+...

if x-r occurs with multiplicity m, then A/(x-r) must be replaced by a sum of the form:
B1/(x-r)+B2/(x-r)2+...

I think this second equation is the source of my confusion.

The Attempt at a Solution



I began by factoring the denominator:
x4-x2 = x2(x+1)(x-1)

So, according to my book, we have the following constants:
A/x + B/x2 + C/(x+1) + D/(x-1)
A, B, C, and D are constants, but the expressions above aren't constant.
JOhnJDC said:
First question: where did the x come from in the constant A/x? Does this follow from the rule above? That is, because x2 has multiplicity 2, I get A/x and B/x2?
Yes. The denominator in factored form has an x2 factor, so the multiplicity of this factor is 2. This means that you'll need to have terms A/x and B/x2.
JOhnJDC said:
Next, according to my book, when you clear the fractions, you should get:
Ax(x+1)(x-1) + B(x+1)(x-1) + Cx2(x-1) + Dx2(x+1)

I don't understand this. Why isn't it Ax2(x+1)(x-1) + Bx(x+1)(x-1) + Cx3(x-1) + Dx3(x+1)?

Can someone explain? Many thanks.

You have this equation, which has to be identically true (true for all values of x other than those that make any denominator 0).

[tex]\frac{3x^3 - 4x^2 - 3x + 2}{x^2(x^2 - 1)} = \frac{A}{x} + \frac{B}{x^2} + \frac{C}{x + 1} + \frac{D}{x - 1}[/tex]

You can clear the fractions by multiplying both sides of this equation by x2(x2 - 1). When you multiply the terms on the right hand side above, there will be some cancellation.
 
That clears it up. Thanks, guys.