Post Reply 
HP Prime - problem with Solve App
05-25-2016, 12:59 PM (This post was last modified: 05-25-2016 01:21 PM by DrD.)
Post: #9
RE: HP Prime - problem with Solve App
Interesting approach, road. This worked also:

E1:="A+B=12/C";
E2:="A/B=-3";
E3:="C=A*B";
L0:={E1,E2,E3};

[HOME]
fsolve("eval(L0),lname(eval(L0))"); ==> [−3.77976314968,1.25992104989,−4.7622031559]

[CAS]
fsolve(eval(L0),lname(eval(L0))); ==> [−3.77976314968,1.25992104989,−4.7622031559]

Even simpler:

L1:={'A+B=(12/C)','(A/B)=-3','C=A*B'};

[Home]
fsolve("L1,lname(L1)"); ==> [−3.77976314968,1.25992104989,−4.7622031559]

[CAS]
fsolve(L1,lname(L1)); ==> [−3.77976314968,1.25992104989,−4.7622031559]



-Dale-
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
HP Prime - problem with Solve App - MarkF - 05-19-2016, 04:57 PM
RE: HP Prime - problem with Solve App - DrD - 05-25-2016 12:59 PM



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