Solve gives wrong output. #250
Answered
by
axkr
xwaeaewcrhomesysplug
asked this question in
Q&A
-
It gives the wrong ans working prove for math, correct,3 To Reproduce Example input Symja input expression: >> Solve(k+3/(4)==(k)/2,{k}) Error result:-3
Expected behavior Expected (correct) result expression:3
== Java
|
Beta Was this translation helpful? Give feedback.
Answered by
axkr
Aug 4, 2021
Replies: 2 comments
-
If you set the paranthesis you get the expected result: >> Solve((k+3)/(4)==(k)/2,{k})
{{k->3}}
>> Solve(k+3/(4)==(k)/2,{k})
{{k->-3/2}} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
axkr
-
ahhh sorry you are right.will note this down. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you set the paranthesis you get the expected result: