![]() |
BUG with AUTOSIMPLIFY() flag - 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: BUG with AUTOSIMPLIFY() flag (/thread-11141.html) |
BUG with AUTOSIMPLIFY() flag - compsystems - 07-29-2018 06:56 PM Hello, the following program with simplify: Maximum must print (x^2-2*x-3) = 0 and not (-2*x-3+x^2) = (2*x+3-2*x-3). The xcas programs are assuming simplify: none. I think the AUTOSIMPLIFY() xcas command must be incorporated to control the output of the print Thanks place manually [shift][cas] simplify: Maximum PHP Code: #cas test_simplify_flag(); print (-2*x-3+x^2) = (2*x+3-2*x-3) and not x^2-2*x-3= 0 |