I have a problem with an analytic integration

Dear all,

I'm a beginner user of Mapple. I'm seeking an analytic solution of:

integral{ 1/(ax^3 + bx + c) dx}

Would you like to help me...

thanks.

regards,
agus

Comments

gkokovidis's picture

I have a problem with an analytic integration

>restart:
>int(1/(a*x^3+b*x+c),x);
>allvalues(%);

Look at the help files for the int command and for the allvalues command to get more details. At the prompt, type the following commands below. If you have values for a,b,c and a range, you would be better with a numerical answer. The output of the above commands is rather large and difficult to manipulate.

>?int
>?allvalues

Regards,
Georgios Kokovidis
Dräger Medical

edgar's picture

How would you do it by hand?

First factor the denominator, then proceed in various cases, depending on whether the roots are real or complex... for example, suppose the factorization is a*(x-r1)*(x-r2)*(x-r3), where r1 < r2 < r3 . Then...

p := a*(x-r1)*(x-r2)*(x-r3);

Maple Equation

int(1/p,x);

Maple Equation

This post was generated using the MaplePrimes File Manager

View 85_apr25.mw on MapleNet or Download 85_apr25.mw
View file details

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
}