Post Reply 
POLYROOT does not always work inside a program [SOLVED]
01-06-2016, 08:45 PM (This post was last modified: 10-23-2016 09:08 AM by JMB.)
Post: #1
POLYROOT does not always work inside a program [SOLVED]
I have found a strange behavior (a bug?) while using the function POLYROOT inside a program. My firmware version is 2015 6 17 (8151).

The calculator's built-in help states that the argument of this function can be either a symbolic expression or a vector of coefficients, but I have found that a list of coefficients also works as the function's argument. So both POLYROOT([1 -3 2]) and POLYROOT({1, -3, 2}) return the same answer: {1, 2}, in Home and in CAS.

The problem arises when I use this function inside a program, for example:
EXPORT Test()
BEGIN
POLYROOT([1, -3, 2]);
END;

The first thing worth noting in that commas are needed inside [ ], otherwise you get a syntax error when you tap the Check button. Then when you run the program you get the following error message:

Test
"POLYROOT(ListToMat(EVAL
LIST({0,1,3,1-3,2})))
Error: Bad Argument
Value)"

After trying different numeric values, I have found that this error only happens inside a program, when using [ ] and at least one value is negative. So we have, for example:

POLYROOT({1, 3, 2}): correct answer {-2, -1}
POLYROOT([1, 3, 2]): correct answer {-2, -1}
POLYROOT({1, -3, 2}): correct answer {1, 2}
POLYROOT([1, -3, 2]): error, as stated before
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
POLYROOT does not always work inside a program [SOLVED] - JMB - 01-06-2016 08:45 PM



User(s) browsing this thread: 1 Guest(s)