HP Forums
suggestions and request to improve HP-PRIME CAS - 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: suggestions and request to improve HP-PRIME CAS (/thread-6367.html)



suggestions and request to improve HP-PRIME CAS - compsystems - 06-07-2016 12:49 AM

sorry for my bad English

1: NEG operator in large font is not well displayed, please separate it.

see screencapture


RE: suggestions and request to improve HPPRIMECAS - compsystems - 06-07-2016 01:11 AM

2: the result of the Boolean operations, must be symbolic and not their numeric equivalents.

in some occasions it shows symbolically sometimes not, the system must be consistent, or all numeric (1 or 0) or all (true, false) I prefer the standard true / false is also more didactic, I always think of my students

NOT (x==(-x)) returns true OK =)
x==(-x) returns 0 =(

(true)? true:false; returns true OK =)
(false)? true:false; returns false OK =)

when(true,true,false); returns true OK =)
when(false,true,false); returns false OK =)

IFTE(true,true,false); returns 1 =(