1

Decompose $\frac{(x^3+x+1)}{(x^2+1)^2}$


Based on my understanding so far: The partials of the denominator are $(x^2+1)$ and $(x^2+1)^2$

$\frac{(x^3+x+1)}{(x^2+1)^2}$ can be decomposed into partial fractions as below:

$\frac{(x^3+x+1)}{(x^2+1)^2} = \frac{A}{x^2+1} +\frac{B}{(x^2+1)^2}$

multiply both sides by LCD which is $(x^2+1)^2$ we get:

$$x^3+x+1=A(x^2+1)+B$$ removing brackets

$$x^3+x+1=Ax^2+A+B$$

simplify

$$x(x^2+1)+1=A(x^2+1)+B$$

$\therefore$ looking at coefficients, $B=1$ and $A=x$.

Looking at the above, I don't seem to have a solution. Where am I going wrong? Am I on right path?

Trevor Wilson
  • 16,989
Sylvester
  • 752

1 Answers1

1

By inspection, the partial fractions decomposition is $\dfrac{x}{x^2+1}+\dfrac{1}{(x^2+1)^2}$. This is because $x^3+x=x(x^2+1)$.

Remark: If the top were less simple, we would look for constants $A, B, C, D$ such that our expression is identically equal to $\frac{Ax+B}{x^2+1}+\frac{Cx+D}{(x^2+1)^2}$.

André Nicolas
  • 507,029
  • I thought the numerator must always be some number? – Sylvester Oct 01 '13 at 04:59
  • When the denominator is a power of an irreducible quadratic, the numerator has shape $Px+Q$. Sometimes $P$ turns out to be $0$, but in general it does not. In your case, there do not exist $A$ and $B$ such that your expression is equal to $\frac{A}{x^2+1}+\frac{B}{(x^2+10^2}$. – André Nicolas Oct 01 '13 at 05:01
  • are you saying my workings are correct and that the values fors A and B are also correct and can be used in the decomposed partial fractions? I am not clear from your answer. – Sylvester Oct 01 '13 at 05:04
  • There are no constant values of $A$ and $B$ that work. You got lucky and doing it the wrong way happened to get the right answer. – André Nicolas Oct 01 '13 at 05:05
  • 1
    You can do it the long way, starting with $A,B,C,D$. In this case, there is an easier way, breaking up as $\frac{x^3+x}{(x^2+1)^2}+\frac{1}{(x^2+1)^2}$, and observing the cancellation in the first term, since $x^3+x=x(x^2+1)$. – André Nicolas Oct 01 '13 at 07:34
  • I am fresh in partial fraction and precalculus: I want to conclude that the solution is $\frac{x}{x^2+1}+\frac{1}{(x^2+1)^2}$ But.. when I test the solution by simplifying $\frac{x}{x^2+1}+\frac{1}{(x^2+1)^2}$ I get $$x(x^2+1)+x^2+1$$

    $$==> x^3+x+x^2+1 ==> x^3+x^2+x+1 $$

    – Sylvester Oct 01 '13 at 07:42
  • The testing has an error. When you bring to the common denominator $(x^2+1)^2$, the $1$ on top of the second term should not change, because the denominator doesn't change. You changed it to $x^2+1$. – André Nicolas Oct 01 '13 at 07:50