i'm having problem with my equation-system in this task.
$\int \frac {1-7x}{(x^2 + 1)(x-3)} \text{d}x$
Done this:
$\int \frac {Ax + B}{(x^2 +1)} + \frac {C}{(x-3)} \text{d}x $
And got this system: 1-7x = (A+C)x^2 - (3A + B)x - (3B + C)
A+C = 0
3A + B = -7
3B + C = 1
My problem is that i cant find a value from my system. Have i done something wrong?
Thanks
As has been stated: \begin{align} \frac{1-7x}{(x^{2}+1)(x-3)} = \frac{ax+b}{x^{2}+1} + \frac{c}{x-3} \end{align} which leads to $1 - 7x = (a+c)x^{2} + (b-3a)x + (c-3b)$ for which $a+c=0$, $b-3a = -7$, and $c-3b=1$. This leads to $a=-c$, and $b+3c=-7, c-3b=1$. Now $c=1+3b$ for which $-7 = b+3(1+3b) = 3 + 10b$ or $b=-1$, $c=-2$, and $a=2$. The fraction then becomes \begin{align} \frac{1-7x}{(x^{2}+1)(x-3)} = \frac{2x-1}{x^{2}+1} - \frac{2}{x-3}. \end{align} With the fractions being decomposed the integral in question then becomes \begin{align} I &= \int \frac{1-7x}{(x^{2}+1)(x-3)} \, dx = \int \left(\frac{2x-1}{x^{2}+1} - \frac{2}{x-3}\right) \, dx \\ &= \ln(x^{2} + 1) - \int \frac{dx}{x^{2}+1} - 2 \ln(x-3) \\ &= \ln(x^{2} + 1) - \tan^{-1}(x) - 2 \ln(x-3) + c_{0} \end{align}