Sunday, December 25, 2016

calculus - How to solve certain types of integrals


I'm asking for a walk through of integrals in the form: a(x)b(x)dx where both a(x) and b(x) are polynomials in their lowest terms. For instance x3+2xx2+1dx


Is there a trick to doing these? or will I have to integrate by a clever substitution?


Answer



The first step is generally to divide out the integrand so as to get a polynomial plus a rational function whose numerator has lower degree than its denominator. Here you get


x3+2x1+x2=x+xx2+1.


Integrating the x term (and, more generally, the polynomial quotient) is easy, so we’ve reduced the problem to integrating something of the form p(x)q(x), where p(x) and q(x) are polynomials, and the degree of p(x) is less than the degree of q(x). The general solution for such problems is partial fractions; here, however, we’re more fortunate, because the numerator x is a constant multiple of the derivative of the denominator. If you substitute u=x2+1, you find that du=2xdx, so that xdx=12du, and



xx2+1dx=12duu,


which is a standard, basic integral. I would not call this a clever substitution: recognizing that the numerator of a fraction is a constant multiple of the derivative of the denominator is a standard technique.


Suppose that the original numerator had been x3+x+2. Again we do the division to get a polynomial plus a ‘proper’ rational function:


x3+x+2x2+1=x+2x2+1.


This time you should recognize that 2x2+1 is just twice the derivative of tan1x, again a standard integration.


Finally, suppose that the original fraction had been


x3+x+1x2+2x=x+1xx2+2x.


This time you might as well simply reduce the remaining fraction to partial fractions:


1xx(x+2)=Ax+Bx+2,


so A(x+2)+Bx=1x, (A+B)x+2A=1x, A+B=1, and 2A=1, so A=12, and B=32. Thus,



1xx2+2x=12(1x3x+2),


leaving you with two easy integrations.


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...