La recherche a retourné 574 résultats

par compsystems
mar. avr. 18, 2017 12:28 pm
Forum : Xcas - English
Sujet : Answer cmd
Réponses : 7
Vues : 7823

Re: Answer cmd

But on line#4 left(ans(-1)) [enter] [enter] should call to the line previous line#3 (x-3)*(x+1)=0 and not on your own answer, because the input must be recalculated when modified, for example the expression is badly written or you want to change it
par compsystems
mar. avr. 18, 2017 2:28 am
Forum : Xcas - English
Sujet : Answer cmd
Réponses : 7
Vues : 7823

Re: Answer cmd

ok ^ The next 4 steps work perfectly ans(-1) = ans(previous) entry#1: x^2 = 2*x + 3 [enter] answer#1 x^2=(2*x+3) entry#2: ans(-1) - (2*x + 3) [enter] answer#2 x^2-2*x-3=0 entry#3: factor(ans(-1)) [enter] answer#3 (x-3)*(x+1)=0 entry#4: left(ans(-1)) [enter] answer#4 (x+1)*(x-3) entry#5: But if I giv...
par compsystems
lun. avr. 17, 2017 3:24 am
Forum : Xcas - English
Sujet : Answer cmd
Réponses : 7
Vues : 7823

Re: Answer cmd

Hi, if I have the following entry

#1: a
a

#2:b
b

#3:c
c

#4:d
d

#5:

Please someone please explain me how to call for example the entry line# 2 and output line# 3 from line #5 with ANS() y ENTRY() CMDS

thanks
par compsystems
mer. févr. 15, 2017 2:56 am
Forum : Xcas - English
Sujet : Answer cmd
Réponses : 7
Vues : 7823

Answer cmd

Hello, Mr. Bernard, The following sequence sentences in the hp-prime ENTRY (2*x^2-3*x+4) > (3*x^2-2*x-2); Ans + -2*x^2; simplify(Ans); Ans + 3*x; simplify(Ans); Ans + -4; simplify(Ans); returns (2*x^2-3*x+4) > (3*x^2-2*x-2) (2*x^2-3*x+4-2*x^2) > (3*x^2-2*x-2-2*x^2) (-3*x+4) > (x^2-2*x-2) (-3*x+4+3*x...