Exact 3rd degree poly root - 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: Exact 3rd degree poly root (/thread-5769.html) |
Exact 3rd degree poly root - lrdheat - 02-26-2016 05:40 AM Is there a way to get an exact instead of decimal root to a 3rd degree polynomial such as X^3 - (21\4)*x^2 + 9*x - 4 ? My Classpad 400 can accomplish this. How do I do so on the Prime? RE: Exact 3rd degree poly root - parisse - 02-26-2016 10:00 AM You must make a program if you want a solution expressed in terms of radicals. You can inspire yourself from the following Xcas program: Code:
RE: Exact 3rd degree poly root - rhab - 02-26-2016 03:38 PM Maxima can do that by default: solve(x^3 - (21/4)*x^2 + 9*x - 4=0, x); You can try it on-line with http://maxima-online.org/#?in=solve(x%5E3%20-%20(21%2F4)*x%5E2%20%2B%209*x%20-%204%3D0%2C%20x)%3B%0A%20%09 BTW, you can install maxima on your phone! RE: Exact 3rd degree poly root - parisse - 02-26-2016 07:45 PM Yes, but I think you did not understand what I wrote. It's nice to impress your friends with the root expressions with nested radicals, but after that you won't be able to simplify expressions easily. For example, it will probably be costly to find the value of the product of the three roots. And by the way, there is an experimental version of Xcas that runs on your phone or tablet or any browser (Firefox recommended) Xcas online offline. Once downloaded, all computations are done on your phone, tablet or PC, you don't need an Internet connection anymore. |