Rational functions Polynomial expansion.....[partfrac or cpartfrac]: - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html) +--- Forum: HP Prime (/forum-5.html) +--- Thread: Rational functions Polynomial expansion.....[partfrac or cpartfrac]: (/thread-4544.html) |
Rational functions Polynomial expansion.....[partfrac or cpartfrac]: - toshk - 08-20-2015 09:57 AM [attachment=2447] coded to Solve! [attachment=2448] Prime Solve! Don't have Hp prime to test it......but works on virtual fine. PHP Code: #pragma mode( separator(.,;) integer(h32) ) RE: Rational functions.....partfac( ): - roadrunner - 08-20-2015 11:33 AM Shouldn't it be partfrac()? partfrac(((x^4+x^3-2*x^2+x+1)/(x^5+2*x^2+7*x+1/2))) --> (2*x^4+2*x^3-4*x^2+2*x+2)/(2*x^5+4*x^2+14*x+1) RE: Rational functions.....partfac( ): - Aries - 08-20-2015 03:30 PM Try using partfrac() or cpartfrac() (the last for the complex field) ;-) RE: Rational functions Polynomial expansion.....[partfrac or cpartfrac]: - Tim Wessman - 08-20-2015 05:52 PM Works here for me. There was an issue with c/partfrac in the current release bernard fixed a while back as a result of another thread where having an approximate value wasn't happy in c/partfrac. Apparently it was not keeping the approximate values grouped nicely. Basically, for the moment keep floats out and everything is happy. RE: Rational functions Polynomial expansion.....[partfrac or cpartfrac]: - toshk - 08-21-2015 05:35 AM [attachment=2454] [attachment=2453] RE: Rational functions Polynomial expansion.....[partfrac or cpartfrac]: ilaplace() - toshk - 08-24-2015 01:56 AM Use this in conjunction with ilaplace() which Prime finds difficult to solve: PHP Code: #pragma mode( separator(.,;) integer(h32) ) |