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.
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);
int(1/p,x);
This post was generated using the MaplePrimes File Manager
Comments
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
How would you do it by hand?
p := a*(x-r1)*(x-r2)*(x-r3);
int(1/p,x);
This post was generated using the MaplePrimes File Manager
View 85_apr25.mw on MapleNet or Download 85_apr25.mw
View file details