Report problems with Grapher, CAS and User Interface
|
04-02-2024, 01:46 PM
(This post was last modified: 07-10-2024 07:53 PM by compsystems.)
Post: #1
|
|||
|
|||
Report problems with Grapher, CAS and User Interface
Hello, In this thread I will report problem situations with CAS, as well as with the Grapher and the User Interface.
I hope that there might be a working team that can solve these problems Sorry, my language is Spanish, this is an AI translation. ========================= P1_CAS: In the History view the hp-prime CAS operation is not synchronized with the system UI. Entering the following algebraic expression works logically correctly, but when retrieving the input expression from the history to the input expression line, some arguments are not printed legibly because there is a vertical shift up of the arguments. a*x^2+b*x+c | a = -6,b = -4,c = 2; [ENTER] returns -6*x^2-4*x+2 By math rule everything to the left of the symbolic operator | is considered the expression to be evaluated and everything to the right are the values of the substitution. even if you use parentheses to say what the arguments are also fails. a*x^2+b*x+c | (a = -6,b = -4,c = 2); [ENTER] returns -6*x^2-4*x+2 does not fail if rectangular brackets [] or {} are used, but it should work only with () curved brackets. In addition, the semicolon (; ) infers the end of the argument, symbol that is also vertically defaced a*x^2+b*x+c | [a = -6,b = -4,c = 2]; [ENTER] returns -6*x^2-4*x+2 |
|||
04-07-2024, 03:51 AM
(This post was last modified: 07-10-2024 07:55 PM by compsystems.)
Post: #2
|
|||
|
|||
RE: Report problems with CAS and its interface.
P1_UI: The (-) sign when placed in the history it is not centered with respect to the horizontal bar of the division, it is always above it, by law of signs the print must be aligned with the horizontal bar of the division.
|
|||
04-08-2024, 01:27 PM
Post: #3
|
|||
|
|||
RE: Report problems with CAS and its interface.
Try the other operator. The prime has *2* negation operators. The "minus" and unary minus as selected by the +/- key.
The size and vertical justification are used to tell them apart. |
|||
04-08-2024, 08:15 PM
(This post was last modified: 07-10-2024 07:55 PM by compsystems.)
Post: #4
|
|||
|
|||
RE: Report problems with CAS and its interface.
P2_UI: The following situation happens very rarely
When executing the following algebraic expression, the exact coefficient numbers are changed to decimal numbers, i.e. the UI adds a dot. subst(a*x^2+b*x+c, [a = -6,b = -4,c = 2]); [ENTER] returns -6*x^2-4*x+2 subst(a*x^2+b*x+c, {a = -6,b = -4,c = 2}); [ENTER] returns -6*x^2-4*x+2 Run it a few times and you will most likely see the following: -6. *x^2 -4. *x + 2.0 |
|||
04-08-2024, 08:25 PM
(This post was last modified: 07-10-2024 08:05 PM by compsystems.)
Post: #5
|
|||
|
|||
RE: Report problems with CAS and its interface.
P3_UI: When you copy symbols to the character input line, the bottom part is hidden. Configure with minifont
Another improvement would be to store the last position of the scanned character when the character table is reopened. |
|||
04-08-2024, 09:39 PM
Post: #6
|
|||
|
|||
RE: Report problems with CAS and its interface.
(04-02-2024 01:46 PM)compsystems Wrote: 1: When entering the following algebraic expression it works fine, but when retrieving the input expression in the input expressions line, certain arguments are not printed legibly because there is a vertical offset in the arguments. The Where function requires a list for multiple variables. Use this: a*x^2+b*x+c|({a = -6,b = -4,c = 2} instead of this: (a*x^2+b*x+c) | (a = -6,b = -4,c = 2) and that behavior is not observed. -road |
|||
04-08-2024, 11:33 PM
Post: #7
|
|||
|
|||
RE: Report problems with CAS and its interface.
The following input statement is interpreted as everything to the left of the operator | is the input expression and everything to the right is the substitutions
a*x^2+b*x+c | a=-6,b=-4,c=2 [Enter] -6*x^2-4*x+2 ok with curved parentheses should be enough a*x^2+b*x+c | (a=-6,b=-4,c=2) [Enter] -6*x^2-4*x+2 ok or (a*x^2+b*x+c) | (a=-6,b=-4,c=2) [Enter] -6*x^2-4*x+2 ok |
|||
04-18-2024, 01:02 AM
Post: #8
|
|||
|
|||
RE: Report problems with CAS and its interface.
(04-02-2024 01:46 PM)compsystems Wrote: Hello, CAS operation on hp-prime is not synchronized with the system GUI. I will report these problematic situations in this thread. Thanks! I thought I'd try to add some comments from this thread to the bug tracker I've set up. Quote:⋮ I've tried to recreate this on both HP Prime Virtual Calculators and on a physical HP Prime, with a variety of different settings for Entry mode and Simplification, but could not reproduce it. While writing this post (after writing the sentence just before this one), I did try the above subst, but with an "a" variable set to "-6.", and then (repeatedly) got the -6. in the output. Some more information might help. Are you seeing this with behaviour with the latest public release (2.1.14732 (2023 04 21))? (Does it occur even with a completely fresh / blank calculator?) |
|||
04-18-2024, 07:51 AM
Post: #9
|
|||
|
|||
RE: Report problems with CAS and its interface. | |||
04-18-2024, 08:04 AM
(This post was last modified: 04-18-2024 08:05 AM by parisse.)
Post: #10
|
|||
|
|||
RE: Report problems with CAS and its interface.
subst does not quote it's arguments, therefore if a is assigned say to 2
subst(a*x^2+b*x+c,[a = -6,b = -4,c = 2]) will eval a*x^2+b*x+c to 2*x^2+b*x+c, as well as a=-6 to 2=-6, and a will not be replaced by -6. A warning is displayed in the terminal. |
|||
04-19-2024, 12:51 AM
(This post was last modified: 07-10-2024 08:06 PM by compsystems.)
Post: #11
|
|||
|
|||
RE: Report problems with CAS and its interface.
P4_UI: Another problem is that when there is an expression in the input line, and if you later go to the [help] menu and search for something, when you return the expression in the input line is cut off.
|
|||
04-20-2024, 06:29 AM
(This post was last modified: 04-21-2024 08:33 AM by komame.)
Post: #12
|
|||
|
|||
RE: Report problems with CAS and its interface.
(04-08-2024 08:25 PM)compsystems Wrote: When you copy symbols to the character input line, the bottom part is hidden. I managed to reproduce this issue. It's related to the font size settings in Home Settings on page 2. This issue affects every edit field (anywhere, in any view/application where edit fields are present) when the font is set to "Small Font". For the other font sizes, the problem does not occur. (04-19-2024 12:51 AM)compsystems Wrote: In HP-Prime, sometimes the outputs, integers, have a dot added. I managed to reproduce this bug as well. I've filed a ticket for this issue in the bug tracker. Piotr Kowalewski |
|||
04-26-2024, 03:28 PM
Post: #13
|
|||
|
|||
RE: Report problems with CAS and its interface.
(04-20-2024 06:29 AM)komame Wrote: [...] I've filed a ticket for this issue in the bug tracker. ..and the bug got fixed! Thank you, Jeff. Piotr Kowalewski |
|||
05-02-2024, 11:51 AM
(This post was last modified: 07-10-2024 08:06 PM by compsystems.)
Post: #14
|
|||
|
|||
RE: Report problems with CAS and its interface.
P5_UI: When typing '(x^m)^n^p' and executing the input, and then retrieving it on the input line of the expression, when trying to step down from the exponent 'n' to include a parenthesis, the cursor location jumps to the end of the expression, it must be located before the variable 'p' not after
'(x^m)^n|^p' => '(x^m)^n^p|' |
|||
05-02-2024, 11:57 AM
(This post was last modified: 07-10-2024 08:08 PM by compsystems.)
Post: #15
|
|||
|
|||
RE: Report problems with CAS and its interface.
P6_UI:
Typing (x^m)^n:; and executing the input, then retrieving it on the input line of the expression and executing it again does not interpret the nodisp() function The nodisp() function is synonymous with ( :; ), that is, it does not display the result of the input. |
|||
05-02-2024, 02:14 PM
Post: #16
|
|||
|
|||
RE: Report problems with CAS and its interface. | |||
05-02-2024, 05:34 PM
Post: #17
|
|||
|
|||
RE: Report problems with CAS and its interface.
This is not the only function that is not well interpreted, there are several similar ones.
|
|||
05-12-2024, 02:52 AM
Post: #18
|
|||
|
|||
RE: Report problems with CAS and its interface.
(05-02-2024 11:51 AM)compsystems Wrote: Hello A similar sort of issue arises if one enters 1^2^3 and then tries to select the 1^2 portion. It is fairly typical for equation editors to apply / enforce / create / assume some structure to the input that is not visibly shown (e.g., with 1^2^3 there could be a tree structure in memory; the top node being "^" with a left child node of "1" and a right child node of "2^3"). I’m glad the the HP Prime editor does less of this than some editors I’ve experienced. If one instead enters (1^2)^3 and then removes the parentheses, one can then reinsert them around the 1^2 (the top "^" node has "1^2" as the left child and "3" as the right child). (With this structure, selecting and copying the visible 2^3 ends up copying "^2^3".) Note that this equation editor structure does not override evaluation rules (one can try 3^3^3 with both editing structure — direct entry and by entering (3^3)^3 and then removing the parentheses). Playing around with this just now, I do see something I’ll add to the bug tracker. (Enter "(1^2)" and then delete just the "1".) |
|||
05-25-2024, 03:18 PM
Post: #19
|
|||
|
|||
RE: Report problems with CAS and its interface.
Sometimes the TRUE/FALSE logic output is set to a numeric value, creating confusion.
|
|||
05-29-2024, 08:54 PM
(This post was last modified: 07-10-2024 08:09 PM by compsystems.)
Post: #20
|
|||
|
|||
RE: Report problems with CAS and its interface.
Graph_01: An improvement in the graphic engine:
The cursor symbol (+) should change color not only in the intersection, but also in all its shape, because it is not well displayed (it is almost hidden). |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)